:root {
  --bg: #f5f3ee;
  --surface: rgba(252, 250, 246, 0.9);
  --surface-strong: #fcfaf6;
  --surface-dark: #263028;
  --text: #20211d;
  --muted: #66695f;
  --line: rgba(32, 33, 29, 0.12);
  --accent: #7a8471;
  --accent-deep: #59624f;
  --shadow: 0 24px 60px rgba(20, 24, 28, 0.1);
  --bg-orb: rgba(141, 154, 145, 0.2);
  --bg-top: #f8f6f2;
  --bg-bottom: #efede8;
  --nav-bg: rgba(245, 243, 238, 0.74);
  --menu-bg: rgba(252, 250, 246, 0.96);
  --menu-border: rgba(32, 33, 29, 0.08);
  --button-text: #fff9f2;
  --glass-border: rgba(255, 255, 255, 0.52);
  --soft-surface: rgba(255, 255, 255, 0.46);
  --soft-surface-strong: rgba(255, 255, 255, 0.74);
  --soft-highlight: rgba(122, 132, 113, 0.12);
  --sidebar-bg: rgba(44, 56, 46, 0.96);
  --sidebar-text: #f3efe7;
  --sidebar-border: rgba(243, 239, 231, 0.16);
  --overlay-bg: rgba(32, 40, 34, 0.34);
  --hero-overlay-top: rgba(28, 34, 29, 0.08);
  --hero-overlay-bottom: rgba(28, 34, 29, 0.5);
  --contact-bg: linear-gradient(180deg, rgba(46, 56, 46, 0.96) 0%, rgba(72, 84, 69, 0.96) 100%);
  --contact-text: #fbf7f0;
  --contact-muted: rgba(251, 247, 240, 0.8);
  --contact-chip-bg: rgba(255, 255, 255, 0.09);
  --contact-chip-border: rgba(255, 255, 255, 0.12);
  --scroll-shadow: 0 18px 34px rgba(38, 48, 40, 0.24);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Poppins", sans-serif;
  background:
    radial-gradient(circle at top left, var(--bg-orb), transparent 28%),
    linear-gradient(180deg, var(--bg-top) 0%, var(--bg-bottom) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 80%);
  opacity: 0.24;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
h4,
th {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.02em;
}

p {
  color: var(--muted);
  line-height: 1.75;
}

.page-shell {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

nav {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  padding: 18px 0;
  backdrop-filter: blur(18px);
  background: var(--nav-bg);
  border-bottom: 1px solid var(--menu-border);
}

.nav-inner {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  margin: 0;
  font-size: clamp(1.75rem, 2.8vw, 2.4rem);
  font-weight: 600;
  letter-spacing: 0.18em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-item {
  position: relative;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.dropdown-toggle i {
  font-size: 0.8rem;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  min-width: 220px;
  padding: 12px;
  display: grid;
  gap: 6px;
  background: var(--menu-bg);
  border: 1px solid var(--menu-border);
  border-radius: 20px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.dropdown-menu a {
  padding: 10px 12px;
  border-radius: 14px;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background: var(--soft-highlight);
}

.nav-item:hover .dropdown-menu,
.nav-item:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-links a:hover,
aside a:hover {
  color: var(--accent-deep);
}

.nav-cta,
.button button,
.button1 a,
.hero-actions a,
.link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: var(--button-text);
  box-shadow: 0 14px 32px rgba(95, 107, 100, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.nav-cta:hover,
.button button:hover,
.button1 a:hover,
.hero-actions a:hover,
.link-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(95, 107, 100, 0.22);
}

.secondary-link {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: none;
}

.secondary-link:hover {
  background: var(--soft-surface);
}

.burger {
  position: fixed;
  z-index: 31;
  top: 18px;
  right: 16px;
  display: none;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid var(--menu-border);
  border-radius: 50%;
  color: var(--text);
  background: var(--surface-strong);
  box-shadow: var(--shadow);
  cursor: pointer;
}

.burger i:last-child {
  display: none;
}

body.open .burger i:first-child {
  display: none;
}

body.open .burger i:last-child {
  display: block;
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 28;
  background: var(--overlay-bg);
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease;
  backdrop-filter: blur(6px);
}

body.open .overlay {
  opacity: 1;
  visibility: visible;
}

aside {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 30;
  width: min(88vw, 340px);
  height: 100vh;
  padding: 112px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--sidebar-bg);
  color: var(--sidebar-text);
  box-shadow: -14px 0 40px rgba(33, 41, 34, 0.26);
  transform: translateX(100%);
  transition: transform 0.25s ease;
}

body.open aside {
  transform: translateX(0);
}

aside a {
  font-size: 1rem;
  color: var(--sidebar-text);
}

.icon {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.icon a,
.footer_btn {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--sidebar-border);
  color: inherit;
}

main,
section {
  position: relative;
  z-index: 1;
}

section {
  padding: 48px 0;
}

.hero {
  padding: 44px 0 32px;
}

.hero-wrap,
.page-hero,
.about-story,
.booking-layout,
.footer {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.hero-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: stretch;
}

.hero-copy,
.hero-media,
.page-hero,
.section-panel,
.about-story,
.booking-card,
.contact-card,
.footer {
  border: 1px solid var(--glass-border);
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-copy,
.page-hero,
.section-panel,
.about-story,
.booking-card,
.contact-card {
  border-radius: var(--radius-lg);
}

.hero-copy {
  padding: clamp(32px, 5vw, 64px);
}

.eyebrow,
.section-intro span,
.stat-label {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  color: var(--accent-deep);
}

.hero-copy h2,
.page-hero h2,
.section-intro h2,
.about-story h2,
.book-us h2,
.price h1 {
  margin: 12px 0 18px;
  font-size: clamp(2.7rem, 6vw, 5.2rem);
  line-height: 0.92;
  font-weight: 600;
}

.hero-copy p,
.page-hero p {
  max-width: 58ch;
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.stat {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--soft-surface);
}

.stat strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--text);
}

.hero-media {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  border-radius: var(--radius-lg);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--hero-overlay-top) 0%, var(--hero-overlay-bottom) 100%);
}

.hero-note {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  padding: 20px 22px;
  border-radius: 24px;
  background: rgba(252, 250, 246, 0.88);
  backdrop-filter: blur(16px);
}

.hero-note strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  color: var(--text);
}

.page-hero {
  padding: clamp(34px, 5vw, 56px);
  margin-top: 34px;
  display: grid;
  gap: 14px;
}

.section-intro {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto 24px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.section-intro h2 {
  margin-bottom: 0;
  font-size: clamp(2.3rem, 4vw, 3.5rem);
}

.section-intro p {
  max-width: 48ch;
  margin: 0;
}

.services-card {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.services-card > a {
  display: block;
}

.card {
  height: 100%;
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(252, 250, 246, 0.86);
  border: 1px solid var(--glass-border);
  box-shadow: 0 18px 40px rgba(41, 49, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 42px rgba(41, 49, 42, 0.12);
}

.card img,
.services-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 18px;
}

.card p {
  margin: 16px 0 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  line-height: 1.05;
  color: var(--text);
}

.card small {
  color: var(--muted);
}

.section-panel {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  padding: clamp(28px, 4vw, 44px);
}

.signature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.signature-item {
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--soft-surface);
  border: 1px solid var(--line);
}

.signature-item h3 {
  margin: 0 0 10px;
  font-size: 1.8rem;
}

.about-story {
  margin-top: 24px;
  padding: clamp(28px, 4vw, 44px);
  display: grid;
  gap: 28px;
  align-items: center;
}

.about-story:has(img) {
  grid-template-columns: 0.9fr 1.1fr;
}

.about-story img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 24px;
}

.about-story:not(:has(img)) .about-text {
  max-width: 920px;
  margin: 0 auto;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.about-points div {
  padding: 18px;
  border-radius: 18px;
  background: var(--soft-surface);
  border: 1px solid var(--line);
}

.about-points strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
}

.book-us {
  padding-bottom: 64px;
}

.booking-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 22px;
}

.contact-card,
.booking-card {
  padding: clamp(26px, 4vw, 40px);
}

.contact-card {
  background: var(--contact-bg);
  color: var(--contact-text);
}

.contact-card p,
.contact-card a {
  color: var(--contact-muted);
}

.contact-card h3 {
  margin: 24px 0 8px;
  font-size: 1.8rem;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.contact-list a,
.contact-list div {
  padding: 16px 18px;
  border-radius: 18px;
  background: var(--contact-chip-bg);
  border: 1px solid var(--contact-chip-border);
}

.contact-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--contact-text);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form {
  width: 100%;
}

.form p,
.about-text p {
  padding: 0;
}

.booking-form {
  display: grid;
  gap: 22px;
}

.booking-form h4 {
  margin: -8px 0 0;
  font-weight: 400;
  font-size: 1rem;
  color: var(--muted);
}

.details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.det {
  display: grid;
  gap: 8px;
}

.det-full {
  grid-column: 1 / -1;
}

.det label {
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.book-us input,
.book-us select,
.book-us textarea {
  width: 100%;
  min-height: 56px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--soft-surface-strong);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.book-us textarea {
  min-height: 136px;
  resize: vertical;
}

.book-us input:focus,
.book-us select:focus,
.book-us textarea:focus {
  border-color: rgba(95, 107, 100, 0.45);
  box-shadow: 0 0 0 4px rgba(127, 141, 132, 0.12);
}

.button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.form-note {
  margin: 0;
  font-size: 0.92rem;
}

.footer {
  margin-top: 16px;
  margin-bottom: 24px;
  padding: 24px;
  border-radius: 32px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr 1fr;
  gap: 24px;
}

.footer__logo {
  margin: 0;
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 0.15em;
}

.footer iframe {
  width: 100%;
  min-height: 260px;
  border: 0;
  border-radius: 24px;
  margin-top: 18px;
}

.newsletter h3,
.footer__addr h3 {
  margin: 0 0 12px;
  font-size: 1.5rem;
}

.newsletter p {
  margin: 0 0 10px;
  padding-left: 0;
}

.faq {
  padding-left: 0;
  margin-bottom: 10px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(250, 248, 244, 0.46);
  overflow: hidden;
}

.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 18px;
  color: var(--text);
  font-weight: 500;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq p {
  margin: 0;
  padding: 0 18px 18px;
}

.legal {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto 40px;
  text-align: center;
  color: var(--muted);
}

.eve {
  color: var(--accent-deep);
}

#myBtn {
  display: none;
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 15;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: var(--surface-dark);
  color: var(--contact-text);
  box-shadow: var(--scroll-shadow);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
}

#myBtn:hover {
  transform: translateY(-2px);
}

.price {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  padding: 44px 0 64px;
}

.price-page .page-hero {
  margin-bottom: 10px;
}

.price-page .price {
  padding-top: 18px;
}

.price-page .book-us {
  padding-top: 8px;
}

.price h1 {
  margin-bottom: 24px;
  font-size: clamp(2.6rem, 5vw, 4rem);
  text-align: center;
}

table {
  width: 100%;
  margin: 0 0 24px;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(252, 250, 246, 0.86);
  box-shadow: 0 18px 40px rgba(41, 49, 42, 0.08);
}

th,
td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

th {
  font-size: 1.3rem;
  color: var(--text);
  background: var(--soft-highlight);
}

td {
  color: var(--muted);
}

tr:last-child td {
  border-bottom: none;
}

.staff-sec {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.staff-sec img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 20px;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .burger {
    display: grid;
  }

  .hero-wrap,
  .about-story,
  .booking-layout,
  .footer {
    grid-template-columns: 1fr;
  }

  .services-card,
  .signature-grid,
  .staff-sec {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-media {
    min-height: 460px;
  }
}

@media (max-width: 640px) {
  nav {
    padding: 14px 0;
  }

  .page-shell,
  .nav-inner,
  .hero-wrap,
  .page-hero,
  .section-panel,
  .about-story,
  .booking-layout,
  .footer,
  .services-card,
  .section-intro,
  .price,
  .staff-sec,
  .legal {
    width: min(calc(100% - 20px), var(--container));
  }

  section {
    padding: 36px 0;
  }

  .hero {
    padding-top: 20px;
  }

  .nav-inner {
    min-height: 52px;
    padding-right: 56px;
    align-items: center;
  }

  .logo {
    font-size: 1.55rem;
    letter-spacing: 0.14em;
  }

  .burger {
    top: 17px;
    right: 10px;
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }

  .hero-copy,
  .page-hero,
  .section-panel,
  .about-story,
  .booking-card,
  .contact-card {
    padding: 24px;
    border-radius: 24px;
  }

  .hero-copy h2,
  .page-hero h2,
  .section-intro h2,
  .about-story h2,
  .book-us h2,
  .price h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .eyebrow,
  .section-intro span,
  .stat-label,
  .det label {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
  }

  p,
  .hero-copy p,
  .page-hero p,
  .section-intro p,
  .card small,
  .form-note,
  .booking-form h4 {
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .section-intro {
    display: block;
    margin-bottom: 18px;
  }

  .section-intro p {
    max-width: none;
    margin-top: 10px;
  }

  .hero-stats,
  .details,
  .about-points,
  .signature-grid,
  .staff-sec {
    grid-template-columns: 1fr;
  }

  .services-card {
    display: block;
  }

  .services-card > a {
    margin-bottom: 16px;
  }

  .services-card > a:last-child {
    margin-bottom: 0;
  }

  .hero-media {
    min-height: 300px;
  }

  .hero-note {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 16px 18px;
  }

  .hero-note strong,
  .card p,
  .signature-item h3,
  .contact-card h3,
  .about-points strong {
    font-size: 1.45rem;
  }

  .card {
    padding: 14px;
  }

  .card img,
  .services-card img {
    height: 200px;
  }

  .stat {
    padding: 16px;
  }

  .stat strong {
    font-size: 1.7rem;
  }

  .contact-card,
  .booking-card,
  .section-panel,
  .about-story,
  .page-hero,
  .hero-copy {
    padding: 22px;
  }

  .button {
    align-items: stretch;
  }

  .button button,
  .nav-cta,
  .hero-actions a,
  .link-button {
    width: 100%;
  }

  th,
  td {
    padding: 14px 16px;
    font-size: 0.95rem;
  }
}
