:root {
  --ink: #171111;
  --night: #090506;
  --plum: #2a0717;
  --plum-2: #5b1637;
  --curtain: #190712;
  --rose: #d9a9aa;
  --rose-dark: #b87982;
  --aqua: #78c8d1;
  --aqua-deep: #328895;
  --cream: #fff8f1;
  --paper: #ffffff;
  --muted: #6e5e60;
  --gold: #f2cf7a;
  --line: rgba(34, 18, 22, 0.14);
  --shadow: 0 28px 80px rgba(29, 6, 18, 0.24);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 30;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--gold);
  border-radius: var(--radius);
  font-weight: 800;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px max(24px, calc((100vw - 1180px) / 2));
  color: var(--cream);
  background: linear-gradient(180deg, rgba(9, 5, 6, 0.76), rgba(9, 5, 6, 0));
  transition: background 180ms ease, padding 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(14, 5, 8, 0.93);
  border-bottom: 1px solid rgba(255, 248, 241, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
}

.brand-mark {
  position: relative;
  width: 34px;
  height: 34px;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.brand-mark::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: var(--gold);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 248, 241, 0.82);
  font-size: 13px;
  font-weight: 800;
}

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--cream);
}

.nav-phone {
  color: var(--gold) !important;
}

.nav-whatsapp {
  padding: 0 16px;
  color: #06261c !important;
  background: #c7f1d5;
  border-radius: var(--radius);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 820px;
  color: var(--cream);
  background: var(--night);
  overflow: hidden;
}

.hero-curtain {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 5, 6, 0.92), rgba(9, 5, 6, 0.42) 42%, rgba(9, 5, 6, 0.15) 68%, rgba(9, 5, 6, 0.74)),
    linear-gradient(180deg, rgba(9, 5, 6, 0.2), rgba(9, 5, 6, 0.3)),
    url("assets/back.jpg") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.94));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(280px, 0.62fr);
  align-items: center;
  gap: 44px;
  width: min(100% - 48px, var(--max));
  min-height: 820px;
  margin: 0 auto;
  padding: 108px 0 78px;
}

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

.hero-kicker,
.section-label {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(54px, 7.2vw, 102px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-lede {
  max-width: 610px;
  margin-bottom: 0;
  color: rgba(255, 248, 241, 0.86);
  font-size: clamp(18px, 2vw, 23px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.button svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.button.primary {
  color: #1a1110;
  background: linear-gradient(180deg, #ffe7a5, var(--gold));
  box-shadow: 0 18px 44px rgba(242, 207, 122, 0.28);
}

.button.secondary {
  color: var(--cream);
  background: rgba(255, 248, 241, 0.08);
  border-color: rgba(255, 248, 241, 0.28);
}

.button.dark {
  color: var(--cream);
  background: var(--ink);
}

.hero-model {
  align-self: end;
  justify-self: center;
  position: relative;
  margin: 0;
  width: min(100%, 430px);
}

.hero-model::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6%;
  width: 76%;
  height: 42%;
  background: rgba(0, 0, 0, 0.45);
  border-radius: 50%;
  filter: blur(28px);
  transform: translateX(-50%);
}

.hero-model img {
  position: relative;
  z-index: 1;
  width: min(100%, 360px);
  margin: 0 auto;
  filter: drop-shadow(0 34px 54px rgba(0, 0, 0, 0.52));
}

.hero-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  max-width: 760px;
  margin-top: 26px;
  padding: 13px;
  color: rgba(255, 248, 241, 0.86);
  background: rgba(18, 7, 12, 0.68);
  border: 1px solid rgba(255, 248, 241, 0.18);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
}

.hero-card strong {
  color: var(--gold);
  margin-right: 8px;
}

.hero-card span {
  padding: 7px 10px;
  background: rgba(255, 248, 241, 0.08);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.service-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: min(100% - 48px, var(--max));
  margin: -44px auto 0;
  padding: 34px;
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-strip article {
  display: grid;
  justify-items: center;
  text-align: center;
}

.service-strip img {
  width: 180px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 14px 34px rgba(42, 7, 23, 0.12);
}

.service-strip h2 {
  margin: 18px 0 8px;
  color: var(--aqua-deep);
  font-size: 15px;
  line-height: 1.15;
}

.service-strip p {
  max-width: 210px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.rates-band {
  display: grid;
  grid-template-columns: minmax(240px, 0.48fr) minmax(0, 1fr);
  gap: 42px;
  width: min(100% - 48px, var(--max));
  margin: 86px auto 0;
  padding: 38px;
  background: linear-gradient(135deg, #8ed8df, var(--aqua));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.rates-copy h2,
.welcome-copy h2,
.booking-copy h2 {
  margin-bottom: 18px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
}

.rates-copy p:last-child {
  margin-bottom: 0;
  color: #234950;
}

.rates-band .section-label {
  color: #25525a;
}

.rate-table {
  border-top: 1px solid rgba(23, 17, 17, 0.16);
}

.rate-row {
  display: grid;
  grid-template-columns: minmax(180px, 1.45fr) repeat(4, minmax(78px, 0.62fr));
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(23, 17, 17, 0.14);
  color: #132b30;
  font-size: 14px;
}

.rate-row span:not(:first-child) {
  text-align: right;
  font-weight: 900;
}

.rate-head {
  color: #214950;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.welcome {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.78fr);
  gap: 62px;
  align-items: center;
  margin-top: 92px;
  padding: 78px max(24px, calc((100vw - 1180px) / 2));
  background: linear-gradient(135deg, #e2b4b8, var(--rose));
}

.welcome .section-label {
  color: #6e303d;
}

.welcome-copy p {
  max-width: 760px;
  color: #352425;
}

.welcome-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.welcome-photos img {
  width: 100%;
  aspect-ratio: 1.22;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 20px 46px rgba(66, 22, 32, 0.22);
}

.welcome-photos img:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 1.72;
}

.booking {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1fr);
  gap: 58px;
  align-items: start;
  padding: 88px max(24px, calc((100vw - 1180px) / 2));
  background: var(--cream);
}

.booking .section-label {
  color: var(--aqua-deep);
}

.booking-copy {
  position: sticky;
  top: 96px;
}

.booking-copy p {
  color: var(--muted);
}

.phone-link {
  display: inline-block;
  margin-top: 24px;
  color: var(--plum-2);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 800;
  line-height: 1;
}

.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  padding: 26px;
  background: var(--paper);
  border: 1px solid rgba(42, 7, 23, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.booking-form span {
  color: #7a5260;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px;
  color: var(--ink);
  background: #fbf4f1;
  border: 1px solid rgba(42, 7, 23, 0.18);
  border-radius: 5px;
  font-size: 15px;
  font-weight: 650;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

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

.whatsapp-draft {
  background: linear-gradient(180deg, #ffe7a5, var(--gold));
}

.whatsapp-draft.is-ready {
  outline: 3px solid rgba(120, 200, 209, 0.32);
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--plum-2);
  font-size: 14px;
  font-weight: 800;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  padding: 28px max(24px, calc((100vw - 1180px) / 2));
  color: rgba(255, 248, 241, 0.72);
  background: var(--night);
  font-size: 14px;
  font-weight: 750;
}

.site-footer span {
  color: var(--cream);
  font-weight: 900;
}

.mobile-dock {
  display: none;
}

@media (max-width: 980px) {
  .site-header {
    padding-left: 18px;
    padding-right: 18px;
  }

  .nav-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 0;
    color: var(--cream);
    background: rgba(255, 248, 241, 0.09);
    border: 1px solid rgba(255, 248, 241, 0.26);
    border-radius: var(--radius);
  }

  .nav-toggle span {
    width: 18px;
    height: 2px;
    margin: 0 auto;
    background: currentColor;
  }

  .site-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: rgba(14, 5, 8, 0.97);
    border: 1px solid rgba(255, 248, 241, 0.16);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    justify-content: center;
    min-height: 44px;
  }

  .nav-whatsapp {
    margin-top: 8px;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner,
  .rates-band,
  .welcome,
  .booking {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    gap: 22px;
    padding-top: 112px;
    padding-bottom: 112px;
  }

  .hero-model {
    width: min(320px, 82vw);
  }

  .hero-card {
    margin-top: 10px;
  }

  .service-strip {
    grid-template-columns: 1fr 1fr;
  }

  .welcome,
  .booking {
    padding-left: 24px;
    padding-right: 24px;
  }

  .booking-copy {
    position: static;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 76px;
  }

  .site-header {
    padding: 12px 14px;
  }

  .brand {
    font-size: 16px;
  }

  .brand-mark {
    width: 31px;
    height: 31px;
  }

  .hero-curtain {
    background:
      linear-gradient(180deg, rgba(9, 5, 6, 0.74), rgba(9, 5, 6, 0.56) 42%, rgba(9, 5, 6, 0.88)),
      url("assets/back.jpg") center / cover no-repeat;
  }

  .hero-inner {
    width: min(100% - 28px, var(--max));
    padding-top: 94px;
    padding-bottom: 80px;
  }

  h1 {
    font-size: clamp(43px, 13vw, 60px);
  }

  .hero-lede {
    font-size: 16px;
  }

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

  .hero-model {
    order: 2;
    width: min(245px, 72vw);
    margin-top: -6px;
  }

  .hero-card {
    order: 3;
    display: grid;
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .hero-card strong {
    margin-right: 0;
  }

  .hero-card span {
    border-radius: 5px;
  }

  .service-strip {
    width: min(100% - 28px, var(--max));
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: -34px;
    padding: 22px;
  }

  .service-strip img {
    width: 176px;
  }

  .service-strip p {
    max-width: 280px;
  }

  .rates-band {
    width: min(100% - 28px, var(--max));
    margin-top: 64px;
    padding: 24px 16px;
  }

  .rates-copy h2,
  .welcome-copy h2,
  .booking-copy h2 {
    font-size: clamp(35px, 10vw, 48px);
  }

  .rate-head {
    display: none;
  }

  .rate-row {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 17px 0;
  }

  .rate-row span:first-child {
    grid-column: 1 / -1;
    font-weight: 900;
  }

  .rate-row span:not(:first-child) {
    display: grid;
    gap: 2px;
    text-align: left;
    font-size: 13px;
  }

  .rate-row span:not(:first-child)::before {
    content: attr(data-label);
    color: #26545b;
    font-size: 10px;
    font-weight: 900;
  }

  .welcome {
    margin-top: 68px;
    padding: 56px 14px;
  }

  .welcome-photos {
    grid-template-columns: 1fr;
  }

  .welcome-photos img,
  .welcome-photos img:first-child {
    aspect-ratio: 1.36;
  }

  .booking {
    padding: 60px 14px 78px;
  }

  .booking-form {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .full {
    grid-column: auto;
  }

  .phone-link {
    font-size: clamp(31px, 9vw, 42px);
  }

  .site-footer {
    display: grid;
    padding: 26px 14px;
  }

  .mobile-dock {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 24;
    display: grid;
    grid-template-columns: 0.72fr 1fr;
    gap: 8px;
    padding: 8px;
    background: rgba(14, 5, 8, 0.94);
    border: 1px solid rgba(255, 248, 241, 0.2);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(120%);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .show-mobile-dock .mobile-dock {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-dock a {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 900;
  }

  .mobile-dock a:first-child {
    color: var(--cream);
    background: rgba(255, 248, 241, 0.1);
  }

  .mobile-dock a:last-child {
    color: #1a1110;
    background: linear-gradient(180deg, #ffe7a5, var(--gold));
  }
}
