:root {
  --cream: #f6f1e8;
  --cream-deep: #ece3d4;
  --forest: #263d34;
  --eucalyptus: #506b5a;
  --sage: #a8b49e;
  --sand: #d8c6ab;
  --charcoal: #2b2a27;
  --white: #fffdf8;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--charcoal);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: .18;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(80,107,90,.16) 0 1px, transparent 1.5px),
    radial-gradient(circle at 70% 65%, rgba(58,45,33,.12) 0 1px, transparent 1.5px);
  background-size: 32px 32px, 46px 46px;
}

.site-header {
  height: 94px;
  padding: 0 clamp(24px, 4.5vw, 68px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  border-bottom: 1px solid rgba(38,61,52,.14);
  background: rgba(246,241,232,.93);
  backdrop-filter: blur(12px);
  position: relative;
  z-index: 10;
}

.brand { display: inline-flex; flex-direction: column; width: max-content; color: var(--forest); }
.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(16px, 1.4vw, 23px);
  letter-spacing: .08em;
  font-weight: 500;
}
.brand span { margin-top: 3px; font-size: 14px; letter-spacing: .06em; color: #59665e; }

.desktop-nav { display: flex; align-items: center; gap: 40px; font-size: 14px; color: #36423c; }
.desktop-nav a { padding: 12px 0 10px; position: relative; }
.desktop-nav a::after {
  position: absolute; left: 0; right: 100%; bottom: 4px; height: 1px;
  content: ""; background: var(--eucalyptus); transition: right .22s ease;
}
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after, .desktop-nav a[aria-current="page"]::after { right: 0; }

.phone-button {
  justify-self: end;
  min-height: 48px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--eucalyptus);
  border-radius: 9px;
  color: var(--forest);
  font-size: 14px;
  font-weight: 600;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.phone-button:hover { background: var(--forest); color: var(--white); transform: translateY(-2px); }

.hero {
  min-height: calc(100svh - 94px);
  display: grid;
  grid-template-columns: minmax(380px, 47%) 1fr;
  grid-template-rows: 1fr auto;
  position: relative;
  isolation: isolate;
}
.hero::before {
  position: absolute;
  left: -90px;
  bottom: 30px;
  width: 290px;
  height: 430px;
  content: "";
  z-index: 2;
  opacity: .42;
  background:
    radial-gradient(ellipse at 47% 86%, transparent 0 45%, var(--eucalyptus) 47% 49%, transparent 51%),
    radial-gradient(ellipse at 68% 58%, transparent 0 39%, var(--sage) 41% 44%, transparent 46%);
  transform: rotate(-21deg);
  pointer-events: none;
}
.hero-copy {
  min-height: 650px;
  padding: clamp(58px, 7vw, 106px) clamp(32px, 5vw, 76px) 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream);
  position: relative;
  z-index: 3;
}
.location {
  margin: 0 0 20px;
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--eucalyptus);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}
.location span { font-size: 11px; }
.hero h1 {
  max-width: 710px;
  margin: 0;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(56px, 5.5vw, 86px);
  line-height: .96;
  letter-spacing: -.045em;
  font-weight: 400;
}
.hero h1::after {
  width: 66%;
  height: 14px;
  margin: 6px 0 18px 10px;
  display: block;
  content: "";
  border-top: 3px solid rgba(80,107,90,.56);
  border-radius: 50%;
  transform: rotate(-1.8deg);
}
.hero-intro { max-width: 540px; margin: 0; font-size: 18px; line-height: 1.55; color: #4a4d49; }
.hero-actions { margin-top: 30px; display: flex; align-items: center; gap: 36px; flex-wrap: wrap; }
.button {
  min-height: 56px;
  padding: 0 25px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 650;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button-primary { background: var(--eucalyptus); color: var(--white); box-shadow: 0 10px 26px rgba(38,61,52,.16); }
.button-primary:hover { background: var(--forest); transform: translateY(-2px); box-shadow: 0 14px 34px rgba(38,61,52,.24); }
.text-link { padding: 12px 0 8px; border-bottom: 1px solid var(--forest); color: var(--forest); font-weight: 600; }
.text-link span { display: inline-block; margin-left: 12px; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }

.hero-visual { min-height: 650px; overflow: hidden; border-top-left-radius: 22vw; }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; object-position: 53% center; animation: image-in .8s ease both; }

.signature-treatments {
  grid-column: 1 / -1;
  width: calc(100% - clamp(24px, 7vw, 100px));
  min-height: 130px;
  margin: -130px auto 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(250,247,239,.94);
  border: 1px solid rgba(80,107,90,.12);
  border-radius: 19px 19px 0 0;
  box-shadow: 0 -12px 38px rgba(43,42,39,.08);
  backdrop-filter: blur(14px);
  position: relative;
  z-index: 5;
}
.signature-treatments a { padding: 28px 34px; display: flex; align-items: center; gap: 20px; color: var(--forest); font-family: Georgia, "Times New Roman", serif; font-size: clamp(20px, 2vw, 30px); }
.signature-treatments a + a { border-left: 1px solid rgba(80,107,90,.22); }
.signature-treatments a:hover { background: rgba(168,180,158,.12); }
.leaf-mark { width: 58px; height: 58px; flex: 0 0 58px; border-radius: 50%; background: rgba(168,180,158,.28); position: relative; }
.leaf-mark::before { position: absolute; left: 28px; top: 14px; width: 1px; height: 31px; background: var(--eucalyptus); content: ""; transform: rotate(18deg); }
.leaf-mark span { position: absolute; width: 13px; height: 7px; border: 1px solid var(--eucalyptus); border-radius: 100% 0 100% 0; transform: rotate(-18deg); }
.leaf-mark span:nth-child(1) { left: 18px; top: 22px; }
.leaf-mark span:nth-child(2) { left: 27px; top: 15px; transform: rotate(55deg); }
.leaf-mark span:nth-child(3) { left: 27px; top: 31px; transform: rotate(55deg); }

.treatments-section { padding: 120px clamp(24px, 6vw, 96px); background: var(--white); }
.eyebrow { margin: 0 0 18px; color: var(--eucalyptus); text-transform: uppercase; letter-spacing: .18em; font-size: 12px; font-weight: 700; }
.section-heading h2 { margin: 0 0 20px; color: var(--forest); font: 400 clamp(44px, 5vw, 72px)/1.02 Georgia, serif; letter-spacing: -.035em; }
.section-heading > p:last-child { max-width: 670px; margin: 0; font-size: 18px; line-height: 1.72; color: #5b5e59; }
.center-heading { max-width: 880px; margin: 0 auto 65px; text-align: center; }
.center-heading > p:last-child { margin-inline: auto; }
.treatments-grid { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.treatment-card { min-height: 420px; padding: 30px; display: flex; flex-direction: column; background: var(--cream); border: 1px solid rgba(80,107,90,.1); border-radius: 18px; transition: transform .25s ease, box-shadow .25s ease, background .25s ease; scroll-margin-top: 100px; }
.treatment-card:hover { transform: translateY(-6px); box-shadow: 0 22px 50px rgba(38,61,52,.11); background: #faf7f0; }
.card-topline { display: flex; justify-content: space-between; color: var(--eucalyptus); text-transform: uppercase; letter-spacing: .14em; font-size: 11px; font-weight: 700; }
.treatment-card .leaf-mark { margin: 45px 0 24px; }
.treatment-card h3 { margin: 0 0 15px; color: var(--forest); font: 400 32px/1.05 Georgia, serif; }
.treatment-card p { margin: 0; line-height: 1.7; color: #62635f; }
.treatment-card > a { margin-top: auto; padding-top: 22px; display: flex; justify-content: space-between; border-top: 1px solid rgba(80,107,90,.18); color: var(--forest); font-size: 14px; font-weight: 650; }
.more-treatments { max-width: 1320px; margin: 26px auto 0; border-top: 1px solid rgba(80,107,90,.26); border-bottom: 1px solid rgba(80,107,90,.26); }
.more-treatments summary { padding: 28px 4px; display: flex; justify-content: space-between; cursor: pointer; color: var(--forest); font-size: 17px; font-weight: 650; list-style: none; }
.more-treatments summary::-webkit-details-marker { display: none; }
.more-treatments[open] summary span { transform: rotate(45deg); }
.more-grid { padding: 8px 0 36px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 42px; }
.more-grid article { padding: 24px 0; border-top: 1px solid rgba(80,107,90,.14); }
.more-grid h3 { margin: 0 0 9px; color: var(--forest); font: 400 24px Georgia, serif; }
.more-grid p { margin: 0; line-height: 1.65; color: #62635f; }

.featured-methods { display: grid; grid-template-columns: minmax(360px, 47%) 1fr; background: var(--forest); color: var(--cream); }
.featured-image { min-height: 800px; position: relative; overflow: hidden; }
.featured-image::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, transparent 55%, rgba(38,61,52,.4)); }
.featured-image img { width: 100%; height: 100%; object-fit: cover; }
.featured-image > span { position: absolute; left: 42px; bottom: 36px; z-index: 2; font: italic 26px/1.15 Georgia, serif; color: var(--white); }
.featured-copy { padding: 105px clamp(38px, 7vw, 110px); display: flex; flex-direction: column; justify-content: center; }
.featured-copy .eyebrow { color: var(--sage); }
.featured-copy h2 { max-width: 660px; margin: 0 0 28px; font: 400 clamp(46px, 5vw, 72px)/1 Georgia, serif; letter-spacing: -.04em; }
.featured-copy .lead { max-width: 650px; margin: 0; color: rgba(246,241,232,.75); font-size: 18px; line-height: 1.72; }
.method-list { margin: 45px 0; border-top: 1px solid rgba(246,241,232,.18); }
.method-list > div { padding: 21px 0; display: grid; grid-template-columns: 46px 1fr; gap: 20px; border-bottom: 1px solid rgba(246,241,232,.18); }
.method-list strong { color: var(--sage); font-size: 12px; }
.method-list span { color: rgba(246,241,232,.72); line-height: 1.55; }
.method-list b { display: block; margin-bottom: 4px; color: var(--cream); font-weight: 650; }
.button-dark { align-self: flex-start; background: var(--cream); color: var(--forest); }
.button-dark:hover { background: var(--sage); transform: translateY(-2px); }

.about-section { padding: 130px clamp(24px, 7vw, 110px); display: grid; grid-template-columns: 1fr 1.05fr; align-items: center; gap: clamp(55px, 9vw, 150px); background: var(--cream); }
.about-copy h2 { max-width: 650px; margin: 0 0 14px; color: var(--forest); font: 400 clamp(48px, 5vw, 76px)/.98 Georgia, serif; letter-spacing: -.04em; }
.about-signature { margin: 0 0 34px !important; color: var(--eucalyptus) !important; font: italic 26px Georgia, serif !important; }
.about-copy > p { max-width: 630px; margin: 0 0 18px; color: #555954; font-size: 17px; line-height: 1.75; }
.values-row { margin-top: 42px; display: flex; gap: 24px; flex-wrap: wrap; }
.values-row span { min-width: 120px; padding-top: 14px; border-top: 1px solid rgba(80,107,90,.35); color: var(--forest); }
.values-row b { margin-right: 8px; color: var(--eucalyptus); font-size: 11px; }
.studio-image { min-height: 650px; position: relative; }
.studio-image img { width: 100%; height: 650px; object-fit: cover; border-radius: 48% 48% 18px 18px; }
.studio-note { position: absolute; right: -24px; bottom: 45px; padding: 22px 28px; display: flex; flex-direction: column; gap: 5px; background: var(--white); border-radius: 12px; box-shadow: 0 18px 40px rgba(38,61,52,.14); color: var(--forest); }
.studio-note strong { font: 400 25px Georgia, serif; }
.studio-note span { font-size: 13px; color: #62635f; }

.process-section { padding: 120px clamp(24px, 7vw, 110px); background: var(--white); }
.process-section .section-heading { max-width: 680px; margin-bottom: 65px; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(80,107,90,.25); }
.process-grid article { padding: 34px 40px 20px 0; }
.process-grid article + article { padding-left: 40px; border-left: 1px solid rgba(80,107,90,.2); }
.process-grid span { color: var(--eucalyptus); font-size: 12px; font-weight: 700; }
.process-grid h3 { margin: 38px 0 14px; color: var(--forest); font: 400 28px/1.1 Georgia, serif; }
.process-grid p { max-width: 350px; margin: 0; line-height: 1.68; color: #62635f; }

.booking-section { padding: 105px 24px; text-align: center; background: var(--eucalyptus); color: var(--cream); }
.booking-section .eyebrow { color: rgba(246,241,232,.7); }
.booking-section h2 { max-width: 900px; margin: 0 auto 20px; font: 400 clamp(48px, 6vw, 86px)/.98 Georgia, serif; letter-spacing: -.04em; }
.booking-section > p:not(.eyebrow) { margin: 0 auto; color: rgba(246,241,232,.78); font-size: 18px; }
.booking-actions { margin-top: 35px; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.button-light { background: var(--cream); color: var(--forest); }
.button-light:hover { background: var(--forest); color: var(--cream); transform: translateY(-2px); }
.booking-actions > a:last-child { padding-bottom: 5px; border-bottom: 1px solid rgba(246,241,232,.6); font-size: 14px; }

.contact-section { padding: 125px clamp(24px, 7vw, 110px); display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(55px, 10vw, 150px); background: var(--cream); }
.contact-intro h2 { margin: 0 0 22px; color: var(--forest); font: 400 clamp(56px, 6vw, 86px)/1 Georgia, serif; }
.contact-intro > p:not(.eyebrow) { max-width: 470px; margin: 0; color: #5b5e59; font-size: 17px; line-height: 1.7; }
.contact-intro .small-note { margin-top: 25px !important; font-size: 13px !important; }
.contact-list { border-top: 1px solid rgba(80,107,90,.28); }
.contact-list a { min-height: 94px; padding: 18px 0; display: grid; grid-template-columns: 120px 1fr 30px; align-items: center; gap: 24px; border-bottom: 1px solid rgba(80,107,90,.28); transition: padding .2s ease, background .2s ease; }
.contact-list a:hover { padding-left: 14px; background: rgba(168,180,158,.12); }
.contact-list span { color: var(--eucalyptus); font-size: 12px; text-transform: uppercase; letter-spacing: .12em; }
.contact-list strong { color: var(--forest); font: 400 clamp(20px, 2.1vw, 30px) Georgia, serif; overflow-wrap: anywhere; }
.contact-list i { font-style: normal; color: var(--eucalyptus); }

.faq-section { padding: 110px clamp(24px, 7vw, 110px); display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(55px, 10vw, 150px); background: var(--white); }
.faq-list { border-top: 1px solid rgba(80,107,90,.25); }
.faq-list details { border-bottom: 1px solid rgba(80,107,90,.25); }
.faq-list summary { padding: 27px 0; display: flex; justify-content: space-between; gap: 20px; color: var(--forest); font-size: 17px; font-weight: 650; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list p { max-width: 720px; margin: -5px 0 27px; color: #62635f; line-height: 1.7; }

.floating-whatsapp { position: fixed; right: 22px; bottom: 22px; z-index: 20; min-height: 54px; padding: 0 10px 0 20px; display: flex; align-items: center; gap: 12px; background: var(--forest); color: var(--white); border-radius: 28px; box-shadow: 0 12px 32px rgba(38,61,52,.28); font-size: 13px; font-weight: 700; }
.floating-whatsapp b { width: 36px; height: 36px; display: grid; place-items: center; background: var(--eucalyptus); border-radius: 50%; }
.floating-whatsapp:hover { transform: translateY(-2px); }
.site-footer { padding: 65px clamp(24px, 6vw, 95px); display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 45px; background: #1c2f27; color: rgba(246,241,232,.75); font-size: 13px; line-height: 1.8; }
.footer-brand { color: var(--cream); }
.site-footer > div { display: flex; flex-direction: column; }
.site-footer > div:last-child { align-items: flex-end; text-align: right; }

section { scroll-margin-top: 90px; }

@keyframes image-in { from { opacity: 0; transform: scale(1.025); } to { opacity: 1; transform: scale(1); } }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .hero { grid-template-columns: 1fr; grid-template-rows: auto; }
  .hero-copy { min-height: auto; padding-bottom: 80px; }
  .hero-visual { min-height: 520px; border-radius: 0; }
  .signature-treatments { grid-column: 1; margin-top: -72px; width: calc(100% - 32px); }
  .signature-treatments a { padding: 24px 18px; font-size: 19px; gap: 12px; }
  .leaf-mark { width: 46px; height: 46px; flex-basis: 46px; transform: scale(.8); }
  .treatments-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-methods, .about-section, .contact-section, .faq-section { grid-template-columns: 1fr; }
  .featured-image { min-height: 620px; }
  .featured-copy { padding-block: 85px; }
  .about-section { gap: 70px; }
  .studio-note { right: 20px; }
  .contact-section, .faq-section { gap: 55px; }
}

@media (max-width: 680px) {
  .site-header { height: 82px; padding: 0 18px; }
  .brand strong { font-size: 15px; }
  .brand span { font-size: 12px; }
  .phone-button { width: 46px; padding: 0; justify-content: center; font-size: 0; border-radius: 50%; }
  .phone-button span { font-size: 18px; }
  .hero-copy { padding: 54px 24px 62px; }
  .hero h1 { font-size: clamp(48px, 15vw, 66px); }
  .hero-intro { font-size: 17px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 15px; }
  .hero-visual { min-height: 430px; }
  .signature-treatments { min-height: 0; margin-top: -28px; padding: 0 18px; grid-template-columns: 1fr; border-radius: 16px; }
  .signature-treatments a { padding: 18px 4px; }
  .signature-treatments a + a { border-left: 0; border-top: 1px solid rgba(80,107,90,.18); }
  .treatments-section { padding: 88px 18px; }
  .center-heading { margin-bottom: 46px; }
  .treatments-grid, .more-grid, .process-grid { grid-template-columns: 1fr; }
  .treatment-card { min-height: 390px; }
  .more-grid { gap: 0; }
  .featured-image { min-height: 520px; }
  .featured-copy { padding: 75px 24px; }
  .about-section, .process-section, .contact-section, .faq-section { padding: 88px 24px; }
  .about-section { gap: 55px; }
  .studio-image, .studio-image img { min-height: 470px; height: 470px; }
  .studio-note { right: 12px; bottom: 20px; }
  .process-grid article, .process-grid article + article { padding: 28px 0; border-left: 0; border-bottom: 1px solid rgba(80,107,90,.2); }
  .process-grid h3 { margin-top: 24px; }
  .contact-list a { grid-template-columns: 82px 1fr 20px; gap: 12px; }
  .contact-list strong { font-size: 19px; }
  .floating-whatsapp span { display: none; }
  .floating-whatsapp { width: 54px; padding: 0; justify-content: center; }
  .site-footer { grid-template-columns: 1fr; gap: 30px; }
  .site-footer > div:last-child { align-items: flex-start; text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
