/* ============================================================
   OPULUX HAIR — Main Stylesheet
   Dark Blue + Gold + White luxury theme
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&family=Jost:wght@300;400;500;600&display=swap');

/* --- CSS Variables --- */
:root {
  --bg-primary:    #05091a;
  --bg-secondary:  #080d22;
  --bg-card:       rgba(8, 16, 45, 0.7);
  --bg-card-hover: rgba(12, 22, 55, 0.9);

  --gold:          #c9a84c;
  --gold-light:    #e8cc7a;
  --gold-dark:     #9b7a1a;
  --gold-subtle:   rgba(201, 168, 76, 0.12);
  --gold-border:   rgba(201, 168, 76, 0.3);

  --text-primary:   #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.68);
  --text-muted:     rgba(255, 255, 255, 0.4);

  --border:        rgba(201, 168, 76, 0.2);
  --border-light:  rgba(255, 255, 255, 0.06);

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Jost', 'Helvetica Neue', Arial, sans-serif;

  --radius-sm:  0.5rem;
  --radius-md:  1rem;
  --radius-lg:  1.5rem;

  --shadow-gold: 0 0 40px rgba(201, 168, 76, 0.08);
  --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.4);

  --nav-height: 80px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Utility --- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-top: 0.75rem;
  max-width: 560px;
}

.text-gold { color: var(--gold); }

/* --- Gold Divider --- */
.gold-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}
.gold-divider::before,
.gold-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ============================================================
   LEAF SVG
   ============================================================ */
.leaf-svg {
  width: 22px;
  height: 22px;
  fill: var(--gold);
  opacity: 0.9;
  flex-shrink: 0;
}
.leaf-svg--sm { width: 14px; height: 14px; }
.leaf-svg--lg { width: 32px; height: 32px; }
.leaf-svg--flip { transform: scaleX(-1); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  border-radius: 3px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  white-space: normal;
  text-align: center;
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: #060b18;
}
.btn--primary:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 168, 76, 0.35);
}

.btn--secondary {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-border);
}
.btn--secondary:hover {
  background: var(--gold-subtle);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.btn--ghost {
  background: rgba(255,255,255,0.05);
  color: var(--text-primary);
  border: 1px solid var(--border-light);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--border);
  transform: translateY(-2px);
}

.btn--lg { padding: 1rem 2.5rem; font-size: 0.88rem; }
.btn--sm { padding: 0.55rem 1.3rem; font-size: 0.75rem; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.nav.scrolled {
  background: rgba(5, 9, 26, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.5), 0 1px 0 var(--gold-border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 2.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

/* --- Logo --- */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav__logo-leaves {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav__logo-name {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-primary);
}

.nav__logo-tagline {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1px;
}

/* --- Nav Links --- */
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav__link {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  transition: color 0.3s ease;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav__link:hover,
.nav__link--active {
  color: var(--gold-light);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

/* --- Nav CTA --- */
.nav__cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

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

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  transition: all 0.3s ease;
  transform-origin: center;
}

.nav__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* --- Mobile Drawer --- */
.nav__drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(340px, 90vw);
  height: 100vh;
  background: var(--bg-secondary);
  border-left: 1px solid var(--border);
  z-index: 999;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 6rem 2.5rem 3rem;
}

.nav__drawer.open { right: 0; }

.nav__drawer-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav__drawer-link {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--text-secondary);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-light);
  transition: color 0.3s ease;
}

.nav__drawer-link:hover,
.nav__drawer-link--active {
  color: var(--gold-light);
}

.nav__drawer-cta {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(3px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.nav__overlay.open { opacity: 1; pointer-events: all; }

/* --- Decorative nav leaf bar --- */
.nav__leaf-bar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 6px 0;
  background: rgba(201, 168, 76, 0.06);
  border-bottom: 1px solid var(--gold-border);
  position: fixed;
  top: var(--nav-height);
  z-index: 999;
  transition: opacity 0.4s;
}
.nav__leaf-bar span {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--nav-height) + 40px);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(20, 35, 80, 0.6) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 20% 70%, rgba(201, 168, 76, 0.04) 0%, transparent 60%),
    linear-gradient(160deg, #05091a 0%, #080d22 50%, #060c1e 100%);
  z-index: 0;
}

/* subtle leaf watermark */
.hero__bg::after {
  content: '';
  position: absolute;
  right: -5%;
  bottom: -10%;
  width: 500px;
  height: 500px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath d='M100 10 C140 10 180 50 160 100 C180 50 140 180 100 160 C140 180 20 140 40 100 C20 140 60 10 100 10Z' fill='%23c9a84c' opacity='0.04'/%3E%3C/svg%3E") center/contain no-repeat;
  z-index: 0;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 5rem;
  padding: 5rem 2.5rem;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.hero__content { flex: 1; }

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero__eyebrow-text {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 7vw, 6rem);
  font-weight: 500;
  line-height: 1.05;
  margin-bottom: 0.25rem;
}

.hero__title span {
  display: block;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.hero__desc {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero__note {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.hero__image-wrap {
  flex: 0 0 400px;
  position: relative;
}

.hero__image-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.hero__image-frame::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--gold), transparent 50%, var(--gold-dark));
  z-index: 0;
  padding: 1px;
}

.hero__image-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
}

.hero__image-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #060b18;
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius-sm);
  z-index: 2;
  text-align: center;
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
}

.hero__image-badge strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.hero__image-badge span {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.85;
}

/* decorative corner leaves on hero image */
.hero__leaf-tl,
.hero__leaf-tr {
  position: absolute;
  z-index: 3;
}
.hero__leaf-tl { top: -18px; left: -18px; }
.hero__leaf-tr { top: -18px; right: -18px; transform: scaleX(-1); }

/* ============================================================
   SECTION WRAPPER
   ============================================================ */
.section {
  padding: 7rem 0;
  position: relative;
}

.section--alt {
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

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

.section__header .section-subtitle {
  margin: 0.75rem auto 0;
}

/* ============================================================
   DECORATIVE LEAF STRIP
   ============================================================ */
.leaf-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.5rem 0;
}

.leaf-strip__text {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.service-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--gold-border);
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}

.service-card:hover::before { opacity: 1; }

.service-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card__title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.service-card__desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.service-card__link {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.service-card__link:hover { gap: 0.8rem; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}

.gallery__item {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
  position: relative;
  border: 1px solid var(--border-light);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery__item:hover img { transform: scale(1.07); }

.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,9,26,0.5) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gallery__item:hover::after { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.open { opacity: 1; pointer-events: all; }

.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 0 0 1px var(--border);
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.lightbox__close:hover {
  background: var(--gold-subtle);
  border-color: var(--gold);
}

/* ============================================================
   TRUST BADGES
   ============================================================ */
.trust__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.trust-item {
  background: var(--bg-card);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: background 0.3s ease;
}

.trust-item:hover { background: var(--bg-card-hover); }

.trust-item__num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 500;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.trust-item__label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.trust-item__desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
  position: relative;
  transition: all 0.35s ease;
}

.testimonial-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.testimonial-card__quote {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: 1.2rem;
  left: 1.5rem;
  font-style: normal;
}

.testimonial-card__text {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  padding-top: 1rem;
}

.testimonial-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
}

.testimonial-card__star { color: var(--gold); font-size: 0.85rem; }

.testimonial-card__author {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip {
  background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, rgba(8,13,34,0.9) 50%, rgba(201,168,76,0.05) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400'%3E%3Cpath d='M200 20 C270 20 340 90 310 170 C340 90 310 340 200 310 C310 340 60 270 90 170 C60 270 130 20 200 20Z' fill='%23c9a84c' opacity='0.025'/%3E%3C/svg%3E") center/50% no-repeat;
  pointer-events: none;
}

.cta-strip__title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 500;
  margin-bottom: 1rem;
}

.cta-strip__sub {
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  font-size: 1rem;
}

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

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
  padding: calc(var(--nav-height) + 5rem) 0 5rem;
  position: relative;
  overflow: hidden;
}

.about-hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 30% 50%, rgba(15, 28, 70, 0.5) 0%, transparent 70%),
              linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  z-index: 0;
}

.about-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 5rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.about-hero__image {
  flex: 0 0 400px;
  position: relative;
}

.about-hero__image img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: 20% center;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.about-hero__image::before {
  content: '';
  position: absolute;
  inset: -10px;
  border: 1px solid var(--gold-border);
  border-radius: calc(var(--radius-md) + 4px);
  z-index: -1;
}

.about-hero__content { flex: 1; }

.about-body {
  padding: 5rem 0;
}

.about-body p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 1.5rem;
  max-width: 680px;
}

.about-body p strong {
  color: var(--text-primary);
  font-weight: 500;
}

/* ============================================================
   PRICES PAGE
   ============================================================ */
.prices-hero {
  padding: calc(var(--nav-height) + 4rem) 0 3rem;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.price-banner {
  background: var(--gold-subtle);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 1.75rem 2rem;
  text-align: center;
  margin-bottom: 4rem;
}

.price-banner__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.price-banner p {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.prices__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.price-table {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.price-table:hover {
  box-shadow: var(--shadow-gold);
  border-color: var(--gold-border);
}

.price-table__head {
  background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.05));
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.price-table__title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-primary);
}

.price-table__body { padding: 1.5rem 2rem; }

.price-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border-light);
}

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

.price-row__name {
  font-size: 0.9rem;
  color: var(--text-secondary);
  flex: 1;
}

.price-row__dots {
  flex: 1;
  border-bottom: 1px dotted rgba(201,168,76,0.2);
  margin-bottom: 3px;
}

.price-row__price {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--gold-light);
  white-space: nowrap;
}

.price-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* Weddings section */
.weddings-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem;
  text-align: center;
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
}

.weddings-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.weddings-section__title {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.weddings-section p {
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-hero {
  padding: calc(var(--nav-height) + 4rem) 0 3rem;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.contact__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-card .btn {
  width: 100%;
  justify-content: center;
}

.contact-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.contact-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.contact-card:hover::before { opacity: 1; }

.contact-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.5rem;
  background: var(--gold-subtle);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-card__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-card__title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.contact-card__sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.area-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 3rem 2.5rem;
  text-align: center;
}

.area-section__title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.area-section__sub {
  font-size: 1.1rem;
  color: var(--gold);
  font-family: var(--font-serif);
  font-style: italic;
  margin-bottom: 1rem;
}

.area-section p {
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
}

/* ============================================================
   STICKY CTA
   ============================================================ */
.sticky-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  background: rgba(5, 9, 26, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--gold-border);
  border-radius: 3px;
  padding: 0.9rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4), 0 0 0 1px rgba(201,168,76,0.1);
  transition: all 0.3s ease;
  text-decoration: none;
  color: var(--text-primary);
}

.sticky-cta:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5), var(--shadow-gold);
}

.sticky-cta__text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sticky-cta svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer__brand-name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.footer__brand-tag {
  font-size: 0.65rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: block;
}

.footer__brand-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  max-width: 300px;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
}

.footer__social-link {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.footer__social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer__social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-subtle);
}

.footer__col-title {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__nav a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.footer__nav a:hover { color: var(--gold-light); }

.footer__contact p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.footer__contact a {
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.footer__contact a:hover { color: var(--gold-light); }

.footer__bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer__bottom-leaves {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-header {
  padding: calc(var(--nav-height) + 4rem) 0 3.5rem;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero__image-wrap { flex: 0 0 320px; }
  .about-hero__image { flex: 0 0 320px; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  :root { --nav-height: 70px; }

  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .hero__inner {
    flex-direction: column-reverse;
    padding: 3rem 1.5rem 4rem;
    gap: 3rem;
    text-align: center;
  }

  .hero__eyebrow { justify-content: center; }
  .hero__desc { margin: 0 auto 2.5rem; }
  .hero__actions { justify-content: center; }
  .hero__note { text-align: center; }

  .hero__image-wrap { flex: unset; width: 100%; max-width: 360px; margin: 0 auto; }
  .hero__image-frame img { height: 400px; }
  .hero__image-badge { bottom: -1rem; left: -0.5rem; }

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

  .about-hero__inner { flex-direction: column; gap: 3rem; padding: 0 1.5rem; }
  .about-hero__image { flex: unset; width: 100%; }
  .about-hero__image img { height: 380px; }

  .footer__inner { grid-template-columns: 1fr; gap: 2.5rem; }

  .section { padding: 5rem 0; }

  .sticky-cta { left: 1rem; right: 1rem; bottom: 1rem; justify-content: center; }

  .weddings-section { padding: 2.5rem 1.5rem; }

  .nav__leaf-bar { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .prices__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .trust__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
  animation: fadeUp 0.7s ease both;
}

.fade-up--delay-1 { animation-delay: 0.1s; }
.fade-up--delay-2 { animation-delay: 0.22s; }
.fade-up--delay-3 { animation-delay: 0.34s; }

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
