:root {
  --warm-white: #faf9f5;
  --soft-nude: #e9d6c9;
  --she-lemon: #f1e51b;
  --near-black: #181715;
  --champagne-gold: #c5a55a;
  --soft-stone: #e6e4de;
  --muted: rgba(24, 23, 21, 0.68);
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Montserrat", "Helvetica Neue", sans-serif;
  --header-h: 5.25rem;
  --max: 72rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--near-black);
  background: var(--warm-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

h1,
h2,
h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(2.35rem, 4.5vw, 3.6rem);
}

h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
}

h3 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

p {
  margin: 0 0 1rem;
}

/* Brand logo (metallic gold gradient baked into SVG) */
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}

.brand__logo {
  display: block;
  width: auto;
  height: 3.25rem;
}

.brand__logo--header {
  height: 3.1rem;
}

.brand__logo--footer {
  height: 4.25rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 249, 245, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(197, 165, 90, 0.2);
  box-shadow: 0 8px 24px rgba(24, 23, 21, 0.04);
}

.site-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  min-height: var(--header-h);
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.15rem 1.15rem;
  flex: 1;
}

.nav a {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--near-black);
  padding: 0.35rem 0;
  position: relative;
  transition: color 0.2s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--she-lemon);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}

.nav a:hover,
.nav a.is-active {
  color: var(--near-black);
}

.nav a:hover::after,
.nav a.is-active::after {
  transform: scaleX(1);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 1.35rem;
  height: 1.5px;
  background: var(--near-black);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.85rem;
  padding: 0.75rem 1.35rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease, background 0.25s ease;
}

.btn--primary {
  background: var(--she-lemon);
  color: var(--near-black);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(24, 23, 21, 0.1);
}

.btn--header {
  min-height: 2.5rem;
  padding: 0.6rem 1.1rem;
  white-space: nowrap;
}

.btn--link {
  min-height: auto;
  padding: 0.2rem 0;
  border: 0;
  border-bottom: 1px solid rgba(24, 23, 21, 0.35);
  border-radius: 0;
  letter-spacing: 0.06em;
  text-transform: none;
  font-weight: 400;
  font-size: 0.92rem;
}

.btn--link:hover {
  border-bottom-color: var(--champagne-gold);
  color: var(--champagne-gold);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(24, 23, 21, 0.25);
  color: var(--near-black);
}

.btn--ghost:hover {
  border-color: var(--near-black);
}

/* Hero — full-bleed image, text overlaid left */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100dvh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--warm-white);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  animation: heroZoom 1.4s var(--ease) both;
}

@keyframes heroZoom {
  from {
    opacity: 0.85;
    transform: scale(1.04);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(250, 249, 245, 0.97) 0%,
      rgba(250, 249, 245, 0.9) 28%,
      rgba(250, 249, 245, 0.45) 52%,
      rgba(250, 249, 245, 0.08) 68%,
      transparent 82%
    );
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 4.5rem 1.5rem;
}

.hero__content {
  position: relative;
  max-width: 34rem;
  animation: rise 0.9s var(--ease) both;
}

.hero__content::before {
  content: "";
  position: absolute;
  top: -18%;
  left: -12%;
  width: 118%;
  height: 130%;
  border: 1px solid rgba(197, 165, 90, 0.4);
  border-radius: 55% 45% 50% 50% / 48% 52% 48% 52%;
  pointer-events: none;
  z-index: -1;
  animation: drift 14s ease-in-out infinite alternate;
}

@keyframes drift {
  from {
    transform: translate(0, 0) rotate(0deg);
  }
  to {
    transform: translate(10px, 14px) rotate(3deg);
  }
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--champagne-gold);
}

.hero__lead {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 30rem;
  margin-bottom: 1.75rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 1.75rem;
  margin-bottom: 1.75rem;
}

.hero__location {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(24, 23, 21, 0.55);
}

.hero__location svg {
  width: 0.9rem;
  height: 0.9rem;
  color: var(--champagne-gold);
  flex-shrink: 0;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--max);
  margin: 0 auto 1rem;
  padding: 0 1.5rem 3.5rem;
  border-top: 1px solid rgba(230, 228, 222, 0.95);
}

.features__item {
  padding: 2rem 1.35rem 0.5rem;
  text-align: left;
  border-right: 1px solid rgba(230, 228, 222, 0.95);
}

.features__item:first-child {
  padding-left: 0;
}

.features__item:last-child {
  border-right: 0;
  padding-right: 0;
}

.features__defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.features__icon {
  width: 2.15rem;
  height: 2.15rem;
  margin-bottom: 1rem;
}

.features__icon svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.features__item h3 {
  margin-bottom: 0.55rem;
}

.features__item p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
  max-width: 14rem;
}

/* Sections */
.section {
  padding: 5rem 1.5rem;
}

.section--nude {
  background: var(--soft-nude);
}

.section--stone {
  background: var(--soft-stone);
}

.section--about {
  background:
    linear-gradient(180deg, transparent, rgba(233, 214, 201, 0.18)),
    var(--warm-white);
}

.section--quote {
  padding: 4rem 1.5rem;
  background: var(--warm-white);
}

.section--enquire {
  background:
    radial-gradient(ellipse 70% 80% at 80% 20%, rgba(241, 229, 24, 0.12), transparent 55%),
    var(--warm-white);
}

.section__inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section__inner--narrow {
  max-width: 44rem;
}

.section__header {
  max-width: 40rem;
  margin-bottom: 2.75rem;
}

.lede {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 1.25rem;
}

.prose p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.prose__highlight {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(197, 165, 90, 0.35);
  color: var(--near-black) !important;
  font-family: var(--font-serif);
  font-size: 1.35rem !important;
  font-style: italic;
  line-height: 1.5 !important;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2.5rem 3.5rem;
  align-items: start;
}

.split__intro h2 {
  margin-bottom: 1.25rem;
}

.treatment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.treatment {
  padding: 2rem 0;
  border-top: 1px solid rgba(24, 23, 21, 0.12);
}

.treatment h3 {
  margin-bottom: 0.75rem;
  color: var(--near-black);
}

.treatment p {
  color: var(--muted);
  margin-bottom: 1.25rem;
  max-width: 28rem;
}

blockquote {
  margin: 0;
  text-align: center;
}

blockquote p {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
  color: var(--near-black);
}

.enquire {
  text-align: center;
}

.enquire__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin: 1.75rem 0 1.5rem;
}

.enquire__location {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(24, 23, 21, 0.5);
}

/* Contact page */
.page-hero {
  padding: 3.5rem 1.5rem 1rem;
  background:
    radial-gradient(ellipse 70% 80% at 85% 10%, rgba(233, 214, 201, 0.45), transparent 55%),
    var(--warm-white);
}

.page-hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  max-width: 40rem;
}

.page-hero .lede {
  margin-bottom: 0;
}

.section--contact {
  padding-top: 2.5rem;
  background: var(--warm-white);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.15fr);
  gap: 3rem 4rem;
  align-items: start;
}

.contact__aside h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 1rem;
}

.contact__intro {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.contact__details {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

.contact__details li {
  display: grid;
  gap: 0.3rem;
}

.contact__label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--champagne-gold);
}

.contact__details a {
  color: var(--near-black);
  text-decoration: none;
  font-weight: 400;
}

.contact__details a:hover {
  color: var(--champagne-gold);
}

.contact__note {
  margin: 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(197, 165, 90, 0.35);
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.7;
}

.contact__form-wrap {
  background: var(--soft-nude);
  padding: clamp(1.75rem, 4vw, 2.75rem);
}

.contact-form {
  display: grid;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-field {
  display: grid;
  gap: 0.45rem;
}

.form-field label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--near-black);
}

.form-field .optional {
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: none;
  color: rgba(24, 23, 21, 0.45);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(24, 23, 21, 0.18);
  border-radius: 0;
  background: rgba(250, 249, 245, 0.65);
  color: var(--near-black);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.5;
  padding: 0.85rem 0.9rem;
  transition: border-color 0.2s ease, background 0.2s ease;
  appearance: none;
}

.form-field select {
  background-image: linear-gradient(45deg, transparent 50%, var(--near-black) 50%),
    linear-gradient(135deg, var(--near-black) 50%, transparent 50%);
  background-position: calc(100% - 16px) calc(50% - 2px), calc(100% - 11px) calc(50% - 2px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 2rem;
}

.form-field textarea {
  resize: vertical;
  min-height: 8.5rem;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-bottom-color: var(--champagne-gold);
  background: var(--warm-white);
}

.form-field.has-error input,
.form-field.has-error textarea {
  border-bottom-color: #b45a4a;
}

.form-error {
  margin: 0;
  font-size: 0.78rem;
  color: #b45a4a;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-top: 0.5rem;
}

.form-privacy {
  margin: 0;
  font-size: 0.75rem;
  color: rgba(24, 23, 21, 0.5);
  max-width: 18rem;
  line-height: 1.5;
}

.form-alert {
  text-align: left;
}

.form-alert--success h2 {
  margin-bottom: 0.75rem;
}

.form-alert--success p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.form-alert--error {
  margin-bottom: 1.25rem;
  padding: 1rem 1.1rem;
  background: rgba(180, 90, 74, 0.08);
  border-left: 2px solid #b45a4a;
}

.form-alert--error p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--near-black);
}

.form-alert--error a {
  color: var(--near-black);
  font-weight: 500;
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Footer */
.site-footer {
  padding: 3.5rem 1.5rem;
  background: var(--near-black);
  color: rgba(250, 249, 245, 0.78);
  text-align: center;
}

.site-footer__inner {
  max-width: 36rem;
  margin: 0 auto;
}

.site-footer__tagline {
  margin: 1.25rem 0 1.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 249, 245, 0.55);
}

.site-footer__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0.75rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.site-footer__meta a {
  color: var(--she-lemon);
  text-decoration: none;
}

.site-footer__meta a:hover {
  text-decoration: underline;
}

.site-footer__copy {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  color: rgba(250, 249, 245, 0.4);
}

.credit {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(250, 249, 245, 0.55);
}

.credit__heart {
  display: inline-flex;
  color: #d6685e;
  transform-origin: center;
  animation: heart-pulse 1.2s ease-in-out infinite;
}

.credit__heart svg {
  display: block;
}

.credit__link {
  color: rgba(250, 249, 245, 0.85);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.credit__link:hover {
  color: var(--she-lemon);
}

@keyframes heart-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  15% {
    transform: scale(1.22);
  }
  30% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.16);
  }
  60% {
    transform: scale(1);
  }
}

/* Reveal motion */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .nav {
    gap: 0.1rem 0.85rem;
  }

  .nav a {
    font-size: 0.62rem;
    letter-spacing: 0.1em;
  }

  .features {
    grid-template-columns: repeat(2, 1fr);
  }

  .features__item:nth-child(2) {
    border-right: 0;
  }

  .features__item:nth-child(3),
  .features__item:nth-child(4) {
    border-top: 1px solid rgba(230, 228, 222, 0.95);
    padding-top: 1.75rem;
  }
}

@media (max-width: 900px) {
  .contact {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    align-items: flex-end;
  }

  .hero__media img {
    object-position: 78% 18%;
  }

  .hero__veil {
    background:
      linear-gradient(
        180deg,
        rgba(250, 249, 245, 0.2) 0%,
        rgba(250, 249, 245, 0.55) 38%,
        rgba(250, 249, 245, 0.94) 68%,
        var(--warm-white) 100%
      );
  }

  .hero__inner {
    padding: 42vw 1.25rem 2.75rem;
  }

  .hero__content {
    max-width: none;
  }

  .hero__content::before {
    top: -8%;
    left: -6%;
    width: 70%;
    height: 55%;
  }

  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: var(--warm-white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 1.5rem 1.5rem;
    border-bottom: 1px solid rgba(197, 165, 90, 0.2);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s ease;
  }

  body.nav-open .nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    font-size: 0.78rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(230, 228, 222, 0.9);
  }

  .nav a::after {
    display: none;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .treatment-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header__inner {
    padding: 0.75rem 1.15rem;
  }

  .btn--header {
    display: none;
  }

  .features {
    grid-template-columns: 1fr;
    padding-bottom: 2rem;
  }

  .features__item,
  .features__item:first-child,
  .features__item:last-child {
    border-right: 0;
    border-top: 1px solid rgba(230, 228, 222, 0.95);
    padding: 1.5rem 0 0;
  }

  .features__item:first-child {
    border-top: 0;
  }

  .section {
    padding: 3.75rem 1.15rem;
  }

  .hero__inner {
    padding: 48vw 1.15rem 2.25rem;
  }

  .hero h1 {
    font-size: clamp(2rem, 8vw, 2.6rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .credit__heart {
    animation: none !important;
  }
}
