@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("/assets/fonts/cormorant-garamond-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400 700;
  font-display: optional;
  size-adjust: 101%;
  ascent-override: 93%;
  descent-override: 24%;
  line-gap-override: 0%;
  src: url("/assets/fonts/montserrat-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Montserrat Fallback";
  font-style: normal;
  font-weight: 400 700;
  size-adjust: 101%;
  ascent-override: 93%;
  descent-override: 24%;
  line-gap-override: 0%;
  src: local("Arial");
}

:root {
  color-scheme: light;
  --ink: #6b3b25;
  --ink-deep: #38261e;
  --body: #403631;
  --paper: #fffaf5;
  --line-strong: #c99075;
  --terracotta: #cf7c61;
  --terracotta-dark: #aa6049;
  --white: #ffffff;
  --menu-border: rgba(201, 144, 117, 0.46);
  --serif: "Cormorant Garamond", Didot, "Bodoni 72", Georgia, serif;
  --sans: Montserrat, "Montserrat Fallback", "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  --header-menu-column: clamp(318px, 23.592vw, 454px);
  --header-menu-height: clamp(76px, 5.6vw, 96px);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
  scrollbar-gutter: stable;
  scroll-padding-top: var(--header-menu-height);
}

body {
  min-width: 320px;
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  overflow-x: hidden;
  color: var(--body);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.45;
}

body.home-page {
  --paper: #f8f1ec;
  --home-content-rail: 881px;
  --home-room-grid-gap: 46px;
  background: var(--paper);
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 18px;
  color: #fff;
  background: var(--terracotta-dark);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  transform: translateY(calc(-100% - 24px));
  transition: transform 160ms ease;
}

.skip-link:focus-visible {
  outline-color: rgba(255, 255, 255, 0.92);
  transform: translateY(0);
}

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

.site-shell {
  width: 100%;
  height: auto;
  margin: 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.88), rgba(255, 250, 245, 0.78) 42%, rgba(255, 255, 255, 0.9)),
    #fffaf5;
}

body.home-page .site-shell {
  background: var(--paper);
}

.privacy-notice {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  display: grid;
  width: min(420px, calc(100vw - 40px));
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(201, 144, 117, 0.52);
  border-radius: 8px;
  background: rgba(255, 250, 245, 0.98);
  box-shadow: 0 18px 44px rgba(56, 38, 30, 0.18);
  color: var(--body);
  transition: opacity 180ms ease, transform 180ms ease;
}

.privacy-notice.is-hiding {
  opacity: 0;
  transform: translateY(12px);
}

.privacy-notice strong {
  display: block;
  color: var(--ink-deep);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.05;
}

.privacy-notice p {
  color: #5e4a41;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.65;
}

.privacy-notice-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.privacy-notice-button,
.privacy-notice-link {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.privacy-notice-button {
  border: 1px solid var(--terracotta);
  background: var(--terracotta);
  color: var(--white);
  cursor: pointer;
}

.privacy-notice-link {
  border: 1px solid rgba(201, 144, 117, 0.52);
  color: var(--ink);
}

.hero-grid {
  position: relative;
  z-index: 50;
  display: grid;
  height: clamp(640px, 50vw, 860px);
  grid-template-columns: var(--header-menu-column) minmax(0, 1fr);
  grid-template-rows: var(--header-menu-height) 1fr;
  background: #ead4c5;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  overflow: hidden;
}

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

.hero-grid::before,
.hero-grid::after {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  content: "";
}

.hero-grid::before {
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 250, 245, 0) 0%, rgba(255, 250, 245, 0) 46%, rgba(73, 43, 27, 0.16) 100%);
}

.hero-grid::after {
  top: clamp(-180px, -8vw, -126px);
  left: clamp(-280px, -13vw, -190px);
  width: clamp(820px, 54vw, 1120px);
  height: clamp(420px, 32vw, 560px);
  background:
    radial-gradient(ellipse 58% 84% at 35% 36%, rgba(255, 250, 245, 0.98) 0%, rgba(255, 250, 245, 0.96) 48%, rgba(255, 250, 245, 0.78) 64%, rgba(255, 250, 245, 0.34) 82%, rgba(255, 250, 245, 0.08) 94%, rgba(255, 250, 245, 0) 100%),
    linear-gradient(90deg, rgba(255, 250, 245, 0.78) 0%, rgba(255, 250, 245, 0.46) 34%, rgba(255, 250, 245, 0.14) 62%, rgba(255, 250, 245, 0) 86%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 74%, rgba(0, 0, 0, 0.58) 88%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 74%, rgba(0, 0, 0, 0.58) 88%, rgba(0, 0, 0, 0) 100%);
}

.brand-panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-row: 1 / span 2;
  place-items: start center;
  overflow: visible;
  padding-top: 17px;
  background: transparent;
}

.brand-panel img {
  position: relative;
  z-index: 1;
  width: clamp(250px, 16.8vw, 318px);
  max-width: none;
  height: auto;
  margin-top: -14px;
}

.site-nav {
  position: fixed;
  top: 0;
  right: 0;
  left: var(--header-menu-column);
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 1.2vw, 22px);
  height: var(--header-menu-height);
  padding: 0 clamp(36px, 3.6vw, 68px) 0 clamp(28px, 2.5vw, 48px);
  border-bottom: 1px solid var(--menu-border);
  background: var(--paper);
  color: #34302d;
  font-size: clamp(12px, 0.78vw, 13px);
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.site-nav::before {
  position: absolute;
  top: 0;
  bottom: -1px;
  left: -156px;
  z-index: 0;
  width: 156px;
  display: none;
  pointer-events: none;
  content: "";
  background: var(--paper);
}

@media (min-width: 1367px) {
  .site-nav {
    border-bottom-color: var(--menu-border);
    background: var(--paper);
  }

  .site-nav::before {
    display: none;
    right: 0;
    bottom: -24px;
    left: clamp(-230px, -12vw, -150px);
    width: auto;
    background: rgba(255, 250, 245, 0.9);
    -webkit-mask-image:
      linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.54) 16%, #000 30%, #000 100%),
      linear-gradient(180deg, #000 0%, #000 76%, rgba(0, 0, 0, 0.56) 89%, rgba(0, 0, 0, 0) 100%);
    mask-image:
      linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.54) 16%, #000 30%, #000 100%),
      linear-gradient(180deg, #000 0%, #000 76%, rgba(0, 0, 0, 0.56) 89%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-composite: source-in;
    mask-composite: intersect;
  }
}

@media (min-width: 1921px) {
  .hero-grid::after {
    top: clamp(-280px, -12vw, -156px);
    left: clamp(-420px, -16vw, -230px);
    width: min(74vw, 1840px);
    min-width: 980px;
    height: clamp(560px, 40vw, 920px);
    background:
      radial-gradient(ellipse 58% 76% at 25% 30%, rgba(255, 250, 245, 0.98) 0%, rgba(255, 250, 245, 0.96) 38%, rgba(255, 250, 245, 0.68) 56%, rgba(255, 250, 245, 0.28) 74%, rgba(255, 250, 245, 0.07) 90%, rgba(255, 250, 245, 0) 100%),
      linear-gradient(90deg, rgba(255, 250, 245, 0.68) 0%, rgba(255, 250, 245, 0.42) 30%, rgba(255, 250, 245, 0.12) 60%, rgba(255, 250, 245, 0) 92%);
    -webkit-mask-image:
      linear-gradient(90deg, #000 0%, #000 64%, rgba(0, 0, 0, 0.54) 82%, rgba(0, 0, 0, 0) 100%),
      linear-gradient(180deg, #000 0%, #000 58%, rgba(0, 0, 0, 0.58) 78%, rgba(0, 0, 0, 0) 100%);
    mask-image:
      linear-gradient(90deg, #000 0%, #000 64%, rgba(0, 0, 0, 0.54) 82%, rgba(0, 0, 0, 0) 100%),
      linear-gradient(180deg, #000 0%, #000 58%, rgba(0, 0, 0, 0.58) 78%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-composite: source-in;
    mask-composite: intersect;
  }

  .site-nav {
    right: 0;
    left: var(--header-menu-column);
    width: auto;
  }
}

.site-nav > a,
.site-nav > button {
  z-index: 1;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.site-nav .nav-whatsapp {
  width: 46px;
  min-width: 46px;
  height: 46px;
  flex: 0 0 46px;
  margin-left: -4px;
  padding: 0;
  border-radius: 50%;
  background: #fff7ef;
  box-shadow: 0 8px 22px rgba(73, 36, 23, 0.12), inset 0 0 0 1px rgba(213, 161, 139, 0.18);
}

.site-nav .nav-whatsapp img {
  width: 34px;
  height: 34px;
  max-width: none;
  object-fit: contain;
}

.site-nav .nav-whatsapp-label {
  display: none;
}

.site-nav .nav-cta {
  display: inline-flex;
  width: clamp(112px, 7vw, 140px);
  height: clamp(44px, 3vw, 58px);
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  border: 1px solid var(--terracotta);
  border-radius: 2px;
  background: var(--terracotta);
  color: var(--white);
  font-weight: 700;
}

.site-nav .language-switch {
  display: inline-flex;
  min-width: clamp(42px, 3.2vw, 54px);
  height: clamp(32px, 2.35vw, 40px);
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(6px, 0.5vw, 9px);
  font-weight: 700;
}

.site-nav .language-switch::after {
  content: none;
  display: none;
}

.motif-button {
  position: relative;
  display: none;
  width: clamp(24px, 1.6vw, 34px);
  height: clamp(34px, 2.3vw, 46px);
  flex: 0 0 auto;
  border: 0;
  background: url("/assets/ornaments/ornament-small.svg") center / 24px 24px no-repeat;
  cursor: pointer;
}

.motif-button span,
.motif-button::before,
.motif-button::after {
  display: none;
}

.hero-panel {
  position: relative;
  z-index: 2;
  grid-column: 2;
  grid-row: 1 / span 2;
  min-height: 0;
  overflow: hidden;
  background: transparent;
  isolation: isolate;
}

.hero-copy {
  position: absolute;
  z-index: 1;
  top: clamp(158px, 13vw, 236px);
  left: calc(50vw - var(--header-menu-column));
  width: min(58vw, 760px);
  color: var(--white);
  text-align: center;
  text-shadow: 0 1px 16px rgba(40, 24, 17, 0.32);
  transform: translateX(-50%);
}

.mobile-break {
  display: none;
}

.hero-copy h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 3.55vw, 70px);
  font-weight: 400;
  line-height: 1.06;
}

.hero-copy p {
  width: min(100%, 620px);
  margin: clamp(12px, 0.9vw, 17px) auto 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(13px, 0.9vw, 17px);
  font-weight: 500;
  line-height: 1.65;
}

.small-ornament {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  margin-bottom: 10px;
  color: var(--terracotta);
  background: url("/assets/ornaments/ornament-small.svg") center / 18px 18px no-repeat;
}

.small-ornament::before,
.small-ornament::after {
  display: none;
}

.title-ornament {
  position: relative;
  display: inline-block;
  width: 126px;
  height: 18px;
  margin: 6px auto 0;
  color: inherit;
  background: url("/assets/ornaments/ornament-small-white.svg") center / 16px 16px no-repeat;
}

.title-ornament::before,
.title-ornament::after {
  position: absolute;
  top: 50%;
  display: block;
  width: calc((100% - 28px) / 2);
  height: 1px;
  content: "";
  background: currentColor;
  opacity: 0.74;
  transform: translateY(-50%);
}

.title-ornament::before {
  left: 0;
}

.title-ornament::after {
  right: 0;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 1.8vw, 32px);
  margin-top: clamp(20px, 1.6vw, 30px);
}

.btn {
  display: inline-flex;
  height: clamp(44px, 2.8vw, 50px);
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  font-size: clamp(12px, 0.78vw, 13px);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.btn.primary {
  width: clamp(178px, 12vw, 240px);
  border-color: var(--terracotta);
  background: var(--terracotta);
  color: var(--white);
}

.btn.ghost {
  width: clamp(221px, 15vw, 300px);
  border-color: rgba(255, 255, 255, 0.74);
  background: rgba(60, 36, 24, 0.08);
  color: var(--white);
}

.faq-section {
  width: 100%;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.74), rgba(255, 250, 245, 0.86) 50%, rgba(255, 255, 255, 0.76)),
    var(--paper);
  box-shadow: 0 0 0 100vmax rgba(255, 250, 245, 0.84);
  clip-path: inset(0 -100vmax);
}

body.home-page .intro-section,
body.home-page .rooms-section,
body.home-page .services-section,
body.home-page .gallery-section,
body.home-page .faq-section {
  background: var(--paper);
  box-shadow: 0 0 0 100vmax var(--paper);
}

.faq-inner {
  width: min(100%, 1040px);
  margin: 0 auto;
  padding: clamp(34px, 4vw, 48px) clamp(24px, 5vw, 70px) clamp(48px, 5vw, 76px);
}

.home-faq .faq-inner {
  padding-top: clamp(26px, 2.8vw, 34px);
}

.faq-heading {
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  text-align: center;
}

.faq-heading h2 {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.22;
}

.faq-heading .title-ornament {
  width: 104px;
  height: 18px;
  margin-top: 2px;
  color: var(--terracotta-dark);
  background-image: url("/assets/ornaments/ornament-small.svg");
}

.faq-intro {
  max-width: 560px;
  margin: 0 auto 24px;
  color: #5f5048;
  font-size: 13px;
  line-height: 1.7;
  text-align: center;
}

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

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(226, 198, 181, 0.82);
  border-radius: 6px;
  background: rgba(255, 250, 245, 0.92);
  box-shadow: 0 10px 24px rgba(74, 47, 31, 0.035);
}

.faq-item summary {
  position: relative;
  min-height: 54px;
  padding: 16px 50px 16px 20px;
  color: #413832;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  list-style: none;
}

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

.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 18px;
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border: 1px solid rgba(201, 144, 117, 0.52);
  border-radius: 50%;
  color: var(--terracotta-dark);
  content: "+";
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  color: #fff;
  background: var(--terracotta);
  content: "-";
}

.faq-item summary:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: -2px;
}

.faq-item p {
  padding: 0 20px 20px;
  color: #5a5049;
  font-size: 13px;
  line-height: 1.66;
}

@media (max-width: 512px) {
  .privacy-notice {
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
    padding: 16px;
  }

  .privacy-notice strong {
    font-size: 20px;
  }

  .privacy-notice p {
    font-size: 10.5px;
  }

  .privacy-notice-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .privacy-notice-button,
  .privacy-notice-link {
    width: 100%;
  }
}

@media (max-width: 1366px) {
  .hero-grid {
    height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .hero-grid::before,
  .hero-grid::after {
    display: none;
  }

  .brand-panel {
    grid-row: auto;
    height: clamp(142px, 20vw, 174px);
    place-items: center;
    padding: 12px 16px;
    border-bottom: 0;
    background: linear-gradient(180deg, rgba(255, 250, 245, 0.99) 0%, rgba(255, 250, 245, 0.96) 50%, rgba(255, 250, 245, 0.76) 72%, rgba(255, 250, 245, 0.34) 88%, rgba(255, 250, 245, 0) 100%);
  }

  .brand-panel img {
    width: clamp(138px, 19vw, 170px);
    margin-top: 0;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: center;
    height: auto;
    min-height: 70px;
    gap: 12px 18px;
    padding: 14px 18px;
  }

  .site-nav::before {
    display: none;
  }

  .site-nav .nav-cta {
    order: 2;
  }

  .site-nav .language-switch {
    order: 3;
  }

  .motif-button {
    order: 4;
  }

  .hero-panel {
    grid-column: 1;
    grid-row: auto;
    display: grid;
    min-height: 430px;
    place-items: center;
    background: linear-gradient(90deg, rgba(255, 250, 245, 0.18), rgba(255, 250, 245, 0.04) 34%, rgba(72, 45, 31, 0.2));
  }

  .hero-copy {
    position: static;
    width: calc(100% - 36px);
    transform: none;
  }

  .hero-copy h1 {
    font-size: 34px;
  }

  .hero-copy p {
    width: min(100%, 520px);
  }
}

@media (min-width: 900px) and (max-width: 1366px) {
  :root {
    --header-menu-column: 23.592%;
    --header-menu-height: clamp(68px, 7.44vw, 90px);
  }

  .hero-grid {
    height: calc(100vw * 478 / 941);
    grid-template-columns: var(--header-menu-column) minmax(0, 1fr);
    grid-template-rows: var(--header-menu-height) 1fr;
    background: #ead4c5;
  }

  .hero-grid::before {
    display: block;
    top: 0;
    right: auto;
    bottom: auto;
    left: 0;
    width: calc(var(--header-menu-column) + clamp(88px, 10vw, 136px));
    height: min(58%, clamp(250px, 30vw, 340px));
    background: radial-gradient(ellipse 96% 112% at 16% 24%, rgba(255, 250, 245, 0.98) 0%, rgba(255, 250, 245, 0.96) 48%, rgba(255, 250, 245, 0.72) 66%, rgba(255, 250, 245, 0.34) 82%, rgba(255, 250, 245, 0.08) 94%, rgba(255, 250, 245, 0) 100%);
    -webkit-mask-image:
      linear-gradient(90deg, #000 0%, #000 58%, rgba(0, 0, 0, 0.68) 74%, rgba(0, 0, 0, 0) 100%),
      linear-gradient(180deg, #000 0%, #000 62%, rgba(0, 0, 0, 0.54) 78%, rgba(0, 0, 0, 0) 100%);
    mask-image:
      linear-gradient(90deg, #000 0%, #000 58%, rgba(0, 0, 0, 0.68) 74%, rgba(0, 0, 0, 0) 100%),
      linear-gradient(180deg, #000 0%, #000 62%, rgba(0, 0, 0, 0.54) 78%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-composite: source-in;
    mask-composite: intersect;
  }

  .hero-grid::after {
    display: block;
    top: clamp(-160px, -11vw, -118px);
    left: clamp(-230px, -18vw, -146px);
    width: clamp(650px, 76vw, 920px);
    height: clamp(360px, 40vw, 520px);
    background:
      radial-gradient(ellipse 58% 84% at 35% 36%, rgba(255, 250, 245, 0.98) 0%, rgba(255, 250, 245, 0.96) 48%, rgba(255, 250, 245, 0.78) 64%, rgba(255, 250, 245, 0.34) 82%, rgba(255, 250, 245, 0.08) 94%, rgba(255, 250, 245, 0) 100%),
      linear-gradient(90deg, rgba(255, 250, 245, 0.78) 0%, rgba(255, 250, 245, 0.46) 34%, rgba(255, 250, 245, 0.14) 62%, rgba(255, 250, 245, 0) 86%);
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 74%, rgba(0, 0, 0, 0.58) 88%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(180deg, #000 0%, #000 74%, rgba(0, 0, 0, 0.58) 88%, rgba(0, 0, 0, 0) 100%);
  }

  .brand-panel {
    grid-row: 1 / span 2;
    height: auto;
    place-items: start center;
    padding: clamp(16px, 1.8vw, 24px) 0 0;
    border-bottom: 0;
    background: transparent;
  }

  .brand-panel img {
    width: clamp(220px, 25.1vw, 300px);
    max-width: none;
    margin-top: -14px;
  }

  .site-nav {
    grid-column: 2;
    grid-row: 1;
    flex-wrap: nowrap;
    justify-content: flex-end;
    height: var(--header-menu-height);
    min-height: 0;
    gap: clamp(8px, 1.15vw, 18px);
    padding: 0 clamp(16px, 2.4vw, 36px) 0 clamp(16px, 2.2vw, 34px);
    font-size: clamp(10.5px, 0.9vw, 12px);
  }

  .site-nav .nav-cta {
    order: 0;
    width: clamp(94px, 10.6vw, 132px);
    height: clamp(40px, 4.46vw, 56px);
    margin-left: clamp(6px, 0.8vw, 12px);
    font-size: clamp(10.5px, 0.9vw, 12px);
  }

  .site-nav .language-switch {
    order: 0;
    min-width: clamp(44px, 4.8vw, 58px);
    height: clamp(32px, 3.62vw, 40px);
  }

  .motif-button {
    order: 0;
    width: clamp(24px, 2.55vw, 32px);
    height: clamp(34px, 3.61vw, 44px);
    background-size: clamp(24px, 2.55vw, 32px) clamp(28px, 2.98vw, 38px);
  }

  .hero-panel {
    grid-column: 2;
    grid-row: 2;
    display: block;
    min-height: 0;
    place-items: normal;
    background: transparent;
  }

  .hero-copy {
    position: absolute;
    top: clamp(120px, 12.75vw, 174px);
    left: 0;
    width: min(57vw, 730px);
    max-width: none;
    transform: none;
  }

  .hero-copy h1 {
    font-size: clamp(43px, 4.57vw, 62px);
  }

  .hero-copy p {
    width: min(100%, 650px);
    font-size: clamp(13px, 1.15vw, 16px);
  }

  .hero-actions {
    gap: 26px;
  }

  .hero-actions .btn.primary {
    width: 220px;
  }

  .hero-actions .btn.ghost {
    width: 280px;
  }

  .hero-actions .btn {
    height: 44px;
  }

  .intro-section {
    display: grid;
    width: calc(100% - 44px);
    grid-template-columns: minmax(320px, 430px) minmax(0, 641px);
    column-gap: max(48px, calc(100% - 819px));
    align-items: center;
    justify-content: center;
    row-gap: 24px;
    margin-right: auto;
    margin-left: auto;
    padding: 34px 0;
    background: rgba(255, 250, 245, 0.86);
    box-shadow: 0 0 0 100vmax rgba(255, 250, 245, 0.86);
    clip-path: inset(0 -100vmax);
  }

  .intro-copy {
    position: static;
    width: auto;
    margin-left: 0;
  }

  .intro-copy h2 {
    color: var(--ink);
    font-family: var(--serif);
    font-size: 34px;
    font-weight: 400;
    line-height: 0.98;
  }

  .intro-copy h2::after {
    display: block;
    width: 29px;
    height: 1px;
    margin-top: 14px;
    content: "";
    background: var(--terracotta);
  }

  .intro-copy p {
    margin-top: 10px;
    color: #463b35;
    font-size: 12px;
    line-height: 1.72;
  }

  .intro-photo {
    width: 100%;
    max-width: 389px;
    justify-self: end;
  }

  .intro-photo picture,
  .intro-photo img {
    display: block;
    width: 389px;
    height: 240px;
  }

  .faq-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 899px) {
  .brand-panel {
    z-index: 4;
    background: transparent;
  }

  .brand-panel::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: clamp(-92px, -16vw, -64px);
    left: 0;
    z-index: 0;
    display: block;
    content: "";
    background:
      radial-gradient(ellipse 56% 70% at 50% 31%, rgba(255, 250, 245, 0.94) 0%, rgba(255, 250, 245, 0.84) 34%, rgba(255, 250, 245, 0.46) 58%, rgba(255, 250, 245, 0.14) 78%, rgba(255, 250, 245, 0) 100%),
      linear-gradient(180deg, rgba(255, 250, 245, 0.9) 0%, rgba(255, 250, 245, 0.74) 34%, rgba(255, 250, 245, 0.28) 60%, rgba(255, 250, 245, 0.06) 82%, rgba(255, 250, 245, 0) 100%);
    pointer-events: none;
  }

  .hero-panel {
    background: transparent;
  }

  .hero-panel::before {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    content: "";
    background: linear-gradient(90deg, rgba(255, 250, 245, 0.18), rgba(255, 250, 245, 0.04) 34%, rgba(72, 45, 31, 0.2));
    -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.34) 10%, #000 26%, #000 100%);
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.34) 10%, #000 26%, #000 100%);
    pointer-events: none;
  }

  .hero-copy {
    position: relative;
    inset: auto;
    z-index: 1;
  }

  .faq-list {
    grid-template-columns: 1fr;
  }

  .faq-inner {
    padding: 30px 22px 46px;
  }

  .home-faq .faq-inner {
    padding-top: 28px;
  }

  .faq-item summary {
    min-height: 52px;
    padding: 16px 48px 16px 18px;
    font-size: 14px;
    line-height: 1.4;
  }

  .faq-item p {
    padding: 0 18px 18px;
    font-size: 13px;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 14px;
  }

  .js-enabled .site-nav:not(.is-open) a:not(.nav-cta):not(.language-switch) {
    display: none;
  }

  .site-nav {
    top: 0;
    right: 0;
    left: 0;
    gap: 10px 12px;
    align-items: center;
  }

  .site-nav .nav-cta {
    order: 1;
  }

  .site-nav .language-switch {
    order: 2;
    width: auto;
    min-width: 44px;
    height: 36px;
    padding: 0 4px;
    font-size: 11px;
  }

  .motif-button {
    order: 3;
    display: block;
    width: 42px;
    height: 38px;
    border: 1px solid rgba(201, 144, 117, 0.42);
    background: rgba(255, 250, 245, 0.72);
  }

  .motif-button span,
  .motif-button::before,
  .motif-button::after {
    position: absolute;
    left: 9px;
    display: block;
    width: 22px;
    height: 2px;
    content: "";
    background: var(--terracotta-dark);
  }

  .motif-button::before {
    top: 11px;
  }

  .motif-button span {
    top: 18px;
  }

  .motif-button::after {
    top: 25px;
  }

  .hero-panel {
    min-height: 440px;
  }

  .hero-copy {
    max-width: 340px;
  }

  .hero-copy h1 {
    font-size: 30px;
  }

  .mobile-break {
    display: block;
  }

  .hero-copy p {
    font-size: 14px;
  }

  .hero-actions {
    flex-wrap: wrap;
    gap: 12px;
  }

  .btn,
  .btn.primary,
  .btn.ghost {
    width: 100%;
    max-width: 286px;
  }
}

@media (min-width: 561px) and (max-width: 899px) {
  .js-enabled .site-nav:not(.is-open) a:not(.nav-cta):not(.language-switch) {
    display: none;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    flex-wrap: nowrap;
    justify-content: flex-end;
    min-height: 76px;
    gap: 12px;
    padding: 12px 22px;
  }

  .site-nav .nav-cta {
    order: 1;
    width: clamp(132px, 21vw, 168px);
    height: 44px;
    margin-left: 0;
  }

  .site-nav .language-switch {
    order: 2;
    width: auto;
    min-width: 48px;
    height: 44px;
    padding: 0 8px;
  }

  .motif-button {
    position: relative;
    display: block;
    order: 3;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(201, 144, 117, 0.42);
    background: rgba(255, 250, 245, 0.72);
    opacity: 1;
  }

  .motif-button span,
  .motif-button::before,
  .motif-button::after {
    position: absolute;
    left: 10px;
    display: block;
    width: 22px;
    height: 2px;
    content: "";
    background: var(--terracotta-dark);
    transform-origin: center;
  }

  .motif-button::before { top: 13px; }
  .motif-button span { top: 20px; }
  .motif-button::after { top: 27px; }
}

@media (max-width: 899px) {
  html:not(.js-enabled) .site-nav {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    display: flex;
    height: auto;
    min-height: 0;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    padding: 12px 14px;
  }

  html:not(.js-enabled) .site-nav a:not(.nav-cta):not(.language-switch) {
    display: inline-flex;
    flex: 1 1 calc(50% - 8px);
    width: auto;
    min-width: 130px;
    min-height: 38px;
    order: 4;
    border: 1px solid rgba(226, 198, 181, 0.74);
    background: rgba(255, 250, 245, 0.88);
    color: var(--ink-deep);
    font-size: 10px;
  }

  html:not(.js-enabled) .site-nav .nav-cta {
    flex: 1 1 150px;
    width: auto;
    max-width: 220px;
    margin-left: 0;
    order: 1;
  }

  html:not(.js-enabled) .site-nav .language-switch {
    order: 2;
  }

  html:not(.js-enabled) .site-nav .nav-whatsapp {
    width: auto;
    min-width: 130px;
    flex-direction: row;
    gap: 8px;
  }

  html:not(.js-enabled) .site-nav .nav-whatsapp-label {
    display: inline;
  }

  html:not(.js-enabled) .motif-button {
    display: none !important;
  }
}
