/* ── VARIABLES ─────────────────────────────────── */
:root {
  --gold: #c9a84c;
  --gold-lt: #e3c87a;

  /*green tones
  --g-deep: #1a2e22;
  --g-mid: #2b4535;
  --g-soft: #3d5a47;
  */
  /* brown tones */
  --g-deep: #2c1f0e;
  --g-mid: #4a3520;
  --g-soft: #6b4e2f;

  --g-deep: #7a4a1e;
  --g-mid: #a86b2f;
  --g-soft: #c8893f;



  --cream: #f5efe4;
  --cream-dk: #e8dece;
  --txt: #4a4a44;
  --txt-dk: #1a1a18;
  --white: #fff;
  --ease: .4s cubic-bezier(.25, .46, .45, .94);
}

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

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Jost', sans-serif;
  color: var(--txt);
  background: var(--cream);
  overflow-x: hidden
}

h1,
h2,
h3,
h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  color: var(--txt-dk);
  line-height: 1.15
}

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

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

ul {
  list-style: none
}

/* ── UTILITY ─────────────────────────────────────── */
.wrap {
  width: min(1160px, 90%);
  margin: 0 auto
}

.eyebrow {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem
}

.section-title {
  font-size: clamp(2.5rem, 4vw, 3rem);
  font-weight: 300;
  margin-bottom: 1.5rem
}

.btn {
  display: inline-block;
  padding: .85rem 2.2rem;
  font-family: 'Jost', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: var(--ease);
  cursor: pointer;
  border: none
}

.btn-gold {
  background: var(--gold);
  color: var(--g-deep);
  border: 2px solid var(--gold)
}

.btn-gold:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, .35)
}

.btn-ol-lt {
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(245, 239, 228, .6)
}

.btn-ol-lt:hover {
  background: rgba(245, 239, 228, .12);
  border-color: var(--cream);
  transform: translateY(-2px)
}

.btn-ol-dk {
  background: transparent;
  color: var(--g-deep);
  border: 2px solid var(--g-deep)
}

.btn-ol-dk:hover {
  background: var(--g-deep);
  color: var(--cream);
  transform: translateY(-2px)
}

/* reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease
}

.reveal.vis {
  opacity: 1;
  transform: translateY(0)
}

/* ── TOP BAR ─────────────────────────────────────── */
.topbar {
  background: var(--g-deep);
  padding: .5rem 0;
  font-size: .78rem;
  color: rgba(245, 239, 228, .7);
  letter-spacing: .05em
}

.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem
}

.topbar a {
  color: rgba(245, 239, 228, .8);
  transition: color .2s
}

.topbar a:hover {
  color: var(--gold)
}

.tb-links {
  display: flex;
  gap: 1.5rem
}

/* ── NAV ─────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  /* green
  background: rgba(26, 46, 34, .97);
  */
  /* brown */
  background: var(--g-deep);

  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, .18);
  transition: box-shadow .3s
}

nav.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, .35)
}

.nav-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: .04em
}

.logo span {
  color: var(--gold)
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  align-items: center
}

.nav-links a {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(245, 239, 228, .78);
  transition: color .2s;
  position: relative
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 100%;
  height: 1px;
  background: var(--gold);
  transition: right .3s
}

.nav-links a:hover {
  color: var(--cream)
}

.nav-links a:hover::after {
  right: 0
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--cream);
  display: block;
  transition: var(--ease)
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.hamburger.open span:nth-child(2) {
  opacity: 0
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

.mob-menu {
  display: none;
  background: var(--g-deep);
  padding: 1.5rem 0;
  border-top: 1px solid rgba(201, 168, 76, .15)
}

.mob-menu.open {
  display: block
}

.mob-menu a {
  display: block;
  padding: .75rem 1.5rem;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(245, 239, 228, .8);
  transition: color .2s, padding-left .2s
}

.mob-menu a:hover {
  color: var(--gold);
  padding-left: 2rem
}

.mob-menu .btn {
  margin: 1rem 1.5rem 0;
  display: inline-block
}

/* ── HERO ─────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--g-deep);
  overflow: hidden
}

/* green tones
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 65% 40%, rgba(43, 69, 53, .6), transparent 70%), linear-gradient(135deg, #0e1c15, #1a2e22 50%, #0f1f17)
}
  */

.hero-bg {
  /* background:radial-gradient(ellipse 70% 60% at 65% 40%,rgba(74,53,32,.6),transparent 70%),
  linear-gradient(135deg,#1a0f05,#2c1f0e 50%,#1f1508); */
  background: radial-gradient(ellipse 70% 60% at 65% 40%, rgba(168, 107, 47, .6), transparent 70%),
    linear-gradient(135deg, #4a2a0a, #7a4a1e 50%, #5c3812);
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: .35;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.05'/%3E%3C/svg%3E")
}

.hero-ring {
  position: absolute;
  right: -140px;
  top: 50%;
  transform: translateY(-50%);
  width: 680px;
  height: 680px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, .1);
  pointer-events: none
}

.hero-ring::before {
  content: '';
  position: absolute;
  inset: 50px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, .06)
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 660px;
  padding: 6rem 0 4rem
}

.hero-content .eyebrow {
  color: var(--gold-lt)
}

.hero-content h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.08;
  margin-bottom: 1.5rem
}

.hero-content h1 em {
  font-style: italic;
  color: var(--gold-lt)
}

.hero-content>p {
  font-size: 1.25rem;
  font-weight: 300;
  color: rgba(245, 239, 228, .72);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 2.2rem
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 2.5rem
}

.hero-phone {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: rgba(245, 239, 228, .65);
  font-size: 1.2rem;
  letter-spacing: .08em;
  transition: color .2s
}

.hero-phone:hover {
  color: var(--gold)
}

.hero-div {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 2rem 0 1rem
}

.hero-tag {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  color: rgba(245, 239, 228, .45);
  letter-spacing: .06em
}

.hero-logo {
  position: absolute;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 700px;
  opacity: 0.92;
}

.hero-logo img {
  width: 100%;
  height: auto;
}

/* ── ABOUT ─────────────────────────────────────────── */
#about {
  padding: 7rem 0;
  background: var(--cream);
  overflow: hidden;
  position: relative
}

#about::before {
  content: '';
  position: absolute;
  right: -200px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, .05), transparent 70%);
  pointer-events: none
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center
}

.about-img-wrap {
  position: relative
}

.about-img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 2px;
  filter: grayscale(15%) sepia(10%);
  position: relative;
  z-index: 1
}

.about-frame {
  position: absolute;
  inset: -16px -16px 16px 16px;
  border: 1px solid rgba(201, 168, 76, .3);
  border-radius: 2px;
  pointer-events: none
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  z-index: 2;
  background: var(--g-deep);
  color: var(--gold);
  padding: 1.4rem;
  text-align: center;
  min-width: 120px
}

.about-badge strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1
}

.about-badge span {
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(245, 239, 228, .6);
  margin-top: .3rem;
  display: block
}

.about-text p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--txt);
  margin-bottom: 1.2rem
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(26, 46, 34, .12)
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--g-deep);
  display: block;
  line-height: 1
}

.stat-lbl {
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: .4rem;
  display: block;
  text-align: center
}

.stat-num {
  text-align: center
}

/* ── SERVICES ─────────────────────────────────────── */
#services {
  background: var(--g-deep);
  padding: 7rem 0;
  overflow: hidden;
  position: relative
}

#services::before {
  content: '';
  position: absolute;
  left: -300px;
  top: -300px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, .05), transparent 60%);
  pointer-events: none
}

.svc-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 5rem
}

.svc-intro .section-title {
  color: var(--cream);
  margin-bottom: 0
}

.svc-intro .eyebrow {
  color: var(--gold)
}

.svc-intro-r p {
  color: rgba(245, 239, 228, .65);
  font-size: .95rem;
  line-height: 1.8;
  margin-bottom: 1.2rem
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2px;
  max-width: 1200px;
  margin: 1px auto;
}

.svc-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer
}

.svc-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.25, .46, .45, .94);
  filter: brightness(1.0) sepia(20%)
}

¡¡ .svc-card:hover img {
  transform: scale(1.07)
}

.svc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(60, 28, 8, .4) 0%, rgba(60, 28, 8, .15) 40%, transparent 70%, transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 1.8rem;
  transition: var(--ease)
}

.svc-card:hover .svc-overlay {
  background: linear-gradient(to top, rgba(60, 28, 8, .75), rgba(60, 28, 8, .55) 50%, transparent);
}

.svc-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: .5rem;
  line-height: 1.2
}

.svc-desc {
  font-size: .82rem;
  color: rgba(245, 239, 228, .65);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .4s ease, opacity .4s ease, margin .4s ease;
  margin-bottom: 0
}

.svc-card:hover .svc-desc {
  max-height: 80px;
  opacity: 1;
  margin-bottom: 1rem
}

.svc-prices {
  display: flex;
  gap: 1.5rem;
  align-items: baseline
}

.p-item {
  display: flex;
  flex-direction: column;
  gap: 2px
}

.p-amt {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--gold-lt);
  line-height: 1
}

.p-dur {
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(245, 239, 228, .5)
}

.p-div {
  width: 1px;
  height: 30px;
  background: rgba(201, 168, 76, .3)
}

.svc-book {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: var(--gold);
  color: var(--g-deep);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .45rem .85rem;
  border-radius: 3px;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity .3s, transform .3s
}

.svc-card:hover .svc-book {
  opacity: 1;
  transform: translateY(0)
}

/* ── TESTIMONIALS ─────────────────────────────────── */
#testimonials {
  padding: 7rem 0;
  background: var(--cream-dk);
  overflow: hidden
}

.t-header {
  text-align: center;
  margin-bottom: 4rem
}

.t-header .section-title {
  max-width: 500px;
  margin: 0 auto 1rem
}

.stars-row {
  display: flex;
  justify-content: center;
  gap: 4px;
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: .4rem
}

.t-wrap {
  overflow: hidden;
  position: relative
}

.t-wrap::before,
.t-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none
}

.t-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--cream-dk), transparent)
}

.t-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--cream-dk), transparent)
}

.t-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: scrollL 40s linear infinite
}

.t-track:hover {
  animation-play-state: paused
}

@keyframes scrollL {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

.r-card {
  background: var(--white);
  border-radius: 2px;
  padding: 2rem;
  width: 340px;
  flex-shrink: 0;
  border-top: 3px solid var(--gold);
  box-shadow: 0 2px 20px rgba(0, 0, 0, .06)
}

.r-stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
  font-size: .85rem;
  margin-bottom: 1rem
}

.r-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--txt-dk);
  margin-bottom: 1.5rem
}

.r-auth {
  display: flex;
  align-items: center;
  gap: .8rem
}

.r-av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--g-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--gold);
  flex-shrink: 0
}

.r-name {
  font-size: .85rem;
  font-weight: 600;
  color: var(--txt-dk);
  letter-spacing: .04em
}

.r-src {
  font-size: .7rem;
  color: #999;
  letter-spacing: .08em;
  text-transform: uppercase
}

/* ── CTA STRIP ────────────────────────────────────── */
.cta-strip {
  background: var(--g-deep);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden
}

.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(201, 168, 76, .06), transparent 70%);
  pointer-events: none
}

.cta-strip .eyebrow {
  color: var(--gold)
}

.cta-strip h2 {
  color: var(--cream);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  margin-bottom: 1rem
}

.cta-strip p {
  color: rgba(245, 239, 228, .6);
  font-size: .95rem;
  max-width: 420px;
  margin: 0 auto 2.5rem
}

.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap
}

/* ── CONTACT ──────────────────────────────────────── */
#contact {
  padding: 7rem 0;
  background: var(--cream)
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start
}

.c-info>p {
  font-size: .95rem;
  line-height: 1.75;
  margin-bottom: 2.5rem
}

.c-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.8rem
}

.c-icon {
  width: 44px;
  height: 44px;
  background: var(--g-deep);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.c-item-txt strong {
  display: block;
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .3rem
}

.c-item-txt a,
.c-item-txt p {
  font-size: .95rem;
  color: var(--txt);
  line-height: 1.5;
  transition: color .2s
}

.c-item-txt a:hover {
  color: var(--g-deep)
}

.c-socials {
  display: flex;
  gap: .8rem;
  margin-top: 2rem
}

.soc-btn {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem 1.1rem;
  border: 1px solid rgba(26, 46, 34, .2);
  border-radius: 2px;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--txt-dk);
  transition: var(--ease)
}

.soc-btn:hover {
  background: var(--g-deep);
  color: var(--cream);
  border-color: var(--g-deep)
}

.c-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 2px;
  box-shadow: 0 4px 40px rgba(0, 0, 0, .07);
  border-top: 3px solid var(--gold)
}

.c-form h3 {
  font-size: 1.5rem;
  margin-bottom: .3rem
}

.c-form .sub {
  font-size: .82rem;
  color: #999;
  margin-bottom: 2rem
}

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

.fg {
  margin-bottom: 1.2rem
}

.fg label {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--txt);
  margin-bottom: .5rem
}

.fg input,
.fg select,
.fg textarea {
  width: 100%;
  padding: .8rem 1rem;
  font-family: 'Jost', sans-serif;
  font-size: .9rem;
  border: 1px solid rgba(26, 46, 34, .18);
  border-radius: 3px;
  background: var(--cream);
  color: var(--txt-dk);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, .15)
}

.fg textarea {
  resize: vertical;
  min-height: 110px
}

.f-sub {
  width: 100%;
  justify-content: center
}

/* ── FOOTER ───────────────────────────────────────── */
footer {
  background: var(--g-deep);
  color: rgba(245, 239, 228, .6);
  padding: 4rem 0 0
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem
}

.f-brand p {
  font-size: .85rem;
  line-height: 1.75;
  color: rgba(245, 239, 228, .5);
  max-width: 260px;
  margin: 1rem 0 1.5rem
}

.f-socials {
  display: flex;
  gap: .7rem
}

.f-soc {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(245, 239, 228, .15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 239, 228, .45);
  transition: var(--ease)
}

.f-soc:hover {
  border-color: var(--gold);
  color: var(--gold)
}

.f-col h4 {
  font-family: 'Jost', sans-serif;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem
}

.f-col ul li {
  margin-bottom: .7rem
}

.f-col ul li a {
  font-size: .85rem;
  color: rgba(245, 239, 228, .5);
  transition: color .2s, padding-left .2s
}

.f-col ul li a:hover {
  color: var(--cream);
  padding-left: 4px
}

.f-col p {
  font-size: .85rem;
  color: rgba(245, 239, 228, .5);
  line-height: 1.7
}

.footer-btm {
  border-top: 1px solid rgba(245, 239, 228, .08);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .75rem;
  color: rgba(245, 239, 228, .3);
  flex-wrap: wrap;
  gap: .5rem
}

/* ── RESPONSIVE ───────────────────────────────────── */
@media(max-width:900px) {

  .about-grid,
  .svc-intro,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

  .about-img-wrap {
    max-height: 380px;
    overflow: hidden
  }

  .about-img-wrap img {
    height: 380px
  }

  .about-badge {
    bottom: 0;
    right: 0
  }
}

@media(max-width:640px) {

  .nav-links,
  .nav-bk {
    display: none
  }

  .hamburger {
    display: flex
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

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

  .hero-ring {
    display: none
  }

  .svc-grid {
    grid-template-columns: 1fr
  }

  .svc-card {
    aspect-ratio: 4/3
  }
}

@media(max-width:900px) {
  .more-grid {
    grid-template-columns: 1fr;
  }
}

@media(max-width:640px) {
  .wax-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .hero-logo {
    display: none;
  }
}



/* ── MORE SERVICES ─────────────────────────────── */
.more-services {
  background: var(--g-deep);
  padding: 3rem 0 0rem;
  /* border-top: 1px solid rgba(201, 168, 76, .15); */
}

.more-header {
  margin-bottom: 3rem;
}

.more-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;     
}

.more-card {
  background: rgba(0, 0, 0, .2);
  border: 1px solid rgba(201, 168, 76, .2);
  border-radius: 4px;
  overflow: hidden;
}

.more-card-img {
  height: 320px;
  overflow: hidden;
}

.more-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.75) sepia(20%);
  transition: transform .6s ease;
}

.more-card:hover .more-card-img img {
  transform: scale(1.04);
}

.more-card-body {
  padding: 2rem;
}

.more-card-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--gold-lt);
  margin-bottom: .75rem;
}

.more-card-body>p {
  font-size: 1.0rem;
  color: rgba(245, 239, 228, .65);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

/* Facial items */
.facial-services {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.facial-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(201, 168, 76, .06);
  border: 1px solid rgba(201, 168, 76, .15);
  border-radius: 3px;
}

.facial-info {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

.facial-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.1rem;
  color: var(--gold);
  font-weight: 500;
}

.facial-desc {
  font-size: 1.00rem;
  color: rgba(245, 239, 228, .55);
  line-height: 1.6;
}

.facial-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--gold-lt);
  white-space: nowrap;
  flex-shrink: 0;
}

.facial-price small {
  font-size: .7rem;
  color: rgba(245, 239, 228, .5);
  letter-spacing: .08em;
}

/* Wax toggle button */
.wax-toggle {
  transition: var(--ease);
}

/* Wax price list */
.wax-prices {
  max-height: 0;
  overflow: hidden;
  transition: max-height .6s cubic-bezier(.25, .46, .45, .94), opacity .4s ease;
  opacity: 0;
}

.wax-prices.open {
  max-height: 1200px;
  opacity: 1;
  margin-top: 1.5rem;
}

.wax-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.wax-table {
  border: 1px solid rgba(201, 168, 76, .2);
  border-radius: 3px;
  overflow: hidden;
}

.wax-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--gold);
  text-align: center;
  padding: .9rem;
  background: rgba(0, 0, 0, .25);
  border-bottom: 1px solid rgba(201, 168, 76, .2);
}

.wax-row {
  display: flex;
  justify-content: space-between;
  padding: .6rem 1rem;
  font-size: .85rem;
  color: rgba(245, 239, 228, .75);
  border-bottom: 1px solid rgba(201, 168, 76, .08);
  transition: background .2s;
}

.wax-row:last-child {
  border-bottom: none;
}

.wax-row:hover {
  background: rgba(201, 168, 76, .07);
}

.wax-row span:last-child {
  color: var(--gold-lt);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
}