/* ============================================================
   HAYLEY BESPOKE — Main Stylesheet
   Structure:
   1. CSS Variables
   2. Reset & Base
   3. Typography Utilities
   4. Layout Utilities
   5. Buttons
   6. Navigation
   7. Hero
   8. Brand Statement
   9. About
   10. Services
   11. Process
   12. Gallery
   13. Testimonials
   14. Contact
   15. Footer
   16. Scroll Animations
   17. Responsive
   ============================================================ */


/* ============================================================
   1. CSS VARIABLES
   ============================================================ */
:root {
  /* Palette */
  --white:         #FFFFFF;
  --cream:         #FAF8F4;
  --beige:         #F2EAE0;
  --beige-mid:     #E6D9CB;
  --beige-dark:    #D8C9B4;
  --blush:         #FBF0F0;
  --pink-light:    #F6E4E4;
  --pink:          #EDD4D4;
  --rose-gold:     #C4906A;
  --rose-gold-lt:  #D4A882;
  --rose-gold-dk:  #A8784E;
  --champagne:     #DCC8A8;
  --text:          #1A1614;
  --text-mid:      #5A504A;
  --text-light:    #8A8078;
  --border:        rgba(196, 144, 106, 0.22);
  --border-light:  rgba(196, 144, 106, 0.10);

  /* Typography */
  --serif:  'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:   'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --section-py:    110px;
  --container-max: 1160px;
  --container-px:  40px;

  /* Misc */
  --radius:        2px;
  --shadow:        0 4px 40px rgba(26, 22, 20, 0.07);
  --shadow-card:   0 2px 24px rgba(26, 22, 20, 0.06);
  --transition:    0.3s ease;
  --transition-md: 0.5s ease;
}


/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

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

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

ul {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

input, textarea, select {
  font-family: var(--sans);
}

::selection {
  background: var(--pink);
  color: var(--text);
}


/* ============================================================
   3. TYPOGRAPHY UTILITIES
   ============================================================ */
.eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 16px;
}

.eyebrow--light {
  color: var(--rose-gold-dk);
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  color: var(--rose-gold);
}

.section-sub {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 560px;
}

.body-text {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 20px;
}


/* ============================================================
   4. LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-sub {
  margin: 0 auto;
}

.hide-mobile {
  display: inline;
}


/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 38px;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity var(--transition);
}

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

/* Primary — filled rose gold */
.btn-primary {
  background: var(--rose-gold);
  color: var(--white);
  border-color: var(--rose-gold);
}
.btn-primary:hover {
  background: var(--rose-gold-dk);
  border-color: var(--rose-gold-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 144, 106, 0.3);
}

/* Outline — transparent with rose gold border */
.btn-outline {
  background: transparent;
  color: var(--rose-gold);
  border-color: var(--rose-gold);
}
.btn-outline:hover {
  background: var(--rose-gold);
  color: var(--white);
  transform: translateY(-2px);
}

/* Ghost — transparent, dark border */
.btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.5);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
}

/* Nav CTA */
.btn-nav {
  padding: 10px 22px;
  font-size: 0.62rem;
  background: transparent;
  color: var(--rose-gold);
  border-color: var(--rose-gold);
}
.btn-nav:hover {
  background: var(--rose-gold);
  color: var(--white);
}

/* Full-width form button */
.btn-full {
  width: 100%;
}


/* ============================================================
   6. NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 0;
  background: rgba(250, 248, 244, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 24px rgba(26, 22, 20, 0.08);
  transition: background var(--transition-md), padding var(--transition-md),
              box-shadow var(--transition-md);
}

.navbar.scrolled {
  background: rgba(250, 248, 244, 0.97);
  padding: 16px 0;
  box-shadow: 0 1px 24px rgba(26, 22, 20, 0.08);
  backdrop-filter: blur(12px);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* Logo */
.nav-logo {
  flex-shrink: 0;
  z-index: 1001;
}

.logo-wordmark {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  font-style: italic;
  color: var(--rose-gold);
  letter-spacing: 0.03em;
  transition: color var(--transition);
}

.navbar.scrolled .logo-wordmark {
  color: var(--rose-gold-dk);
}

/* Overlay wrapper (for mobile full-screen) */
.nav-overlay {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: color var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width var(--transition);
}

.nav-link:hover::after { width: 100%; }
.nav-link:hover { color: var(--rose-gold); }

.navbar.scrolled .nav-link {
  color: var(--text-mid);
}
.navbar.scrolled .nav-link:hover {
  color: var(--rose-gold);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  z-index: 1001;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: transform var(--transition), opacity var(--transition), background var(--transition);
  transform-origin: center;
}

.navbar.scrolled .nav-toggle span {
  background: var(--text);
}

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


/* ============================================================
   7. HERO
   ============================================================ */
.hero {
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-image: url('../assets/images/Hero_Banner_2.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 80px; /* start below the fixed navbar */
}

/* Light overlay for text legibility over the photo */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(250, 248, 244, 0.52);
  pointer-events: none;
  z-index: 1;
}


/* Deco elements hidden — hero now uses a photo background */
.hero-deco--glow,
.hero-deco--outer,
.hero-deco--inner {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 0 24px;
}

.hero-heading {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 24px;
}

.hero-heading em {
  font-style: italic;
  font-weight: 400;
  color: var(--rose-gold);
}

.hero-sub {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-actions .btn-ghost {
  color: var(--text-mid);
  border-color: rgba(90, 80, 74, 0.4);
}
.hero-actions .btn-ghost:hover {
  background: rgba(90, 80, 74, 0.06);
  border-color: var(--text-mid);
  color: var(--text);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  opacity: 0.5;
}

.scroll-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.scroll-bar {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--rose-gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}


/* ============================================================
   8. BRAND STATEMENT
   ============================================================ */
.brand-statement {
  background: var(--beige);
  padding: 44px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.statement-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

.statement-rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
}

.statement-text {
  font-family: var(--serif);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  color: var(--text-mid);
  text-align: center;
  line-height: 1.7;
  flex-shrink: 0;
  max-width: 640px;
}

.statement-text em {
  font-style: italic;
  color: var(--rose-gold-dk);
}


/* ============================================================
   9. ABOUT
   ============================================================ */
.about {
  padding: var(--section-py) 0;
  background: var(--white);
}

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

/* Image side */
.about-image-wrap {
  position: relative;
}

.about-image-wrap > img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 1px;
  display: block;
}

.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: linear-gradient(145deg, #EDE5D8 0%, #E0D0C0 40%, #D4C0A8 70%, #CCB090 100%);
  border-radius: 1px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
}

/* Decorative ring motif in placeholder */
.img-rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(196, 144, 106, 0.3);
}
.img-ring--1 { width: 280px; height: 280px; }
.img-ring--2 { width: 180px; height: 180px; border-color: rgba(196, 144, 106, 0.5); }
.img-ring--3 { width: 80px;  height: 80px;  background: rgba(196, 144, 106, 0.12); }

.img-note {
  position: relative;
  z-index: 2;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(196, 144, 106, 0.7);
}

/* Badge overlay */
.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--rose-gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2px;
  box-shadow: 0 8px 32px rgba(196, 144, 106, 0.35);
}

.badge-num {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1;
}

.badge-label {
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.3;
}

/* Text side */
.about-content {
  padding-left: 20px;
}


/* ============================================================
   10. SERVICES
   ============================================================ */
.services {
  padding: var(--section-py) 0;
  background: var(--blush);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  padding: 48px 36px;
  border: 1px solid var(--border-light);
  border-radius: 1px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--border);
}

/* Featured variant */
.service-card--featured {
  background: var(--cream);
  border-color: var(--border);
}

.service-card-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--rose-gold);
  color: var(--white);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 16px;
  white-space: nowrap;
}

.service-icon {
  width: 52px;
  height: 52px;
  color: var(--rose-gold);
  margin-bottom: 28px;
}

.service-title {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 14px;
}

.service-desc {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 24px;
}

.service-list {
  border-top: 1px solid var(--border-light);
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-list li {
  font-size: 0.78rem;
  color: var(--text-mid);
  padding-left: 16px;
  position: relative;
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background: var(--rose-gold);
  transform: translateY(-50%) rotate(45deg);
  top: 50%;
}


/* ============================================================
   11. PROCESS
   ============================================================ */
.process {
  padding: var(--section-py) 0;
  background: var(--white);
}

.process-track {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 0 16px;
}

.step-number {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 300;
  font-style: italic;
  color: var(--rose-gold);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 20px;
  transition: opacity var(--transition);
}

.process-step:hover .step-number {
  opacity: 0.6;
}

.step-title {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 0.835rem;
  color: var(--text-mid);
  line-height: 1.8;
}

/* Connector line */
.process-connector {
  flex-shrink: 0;
  width: 60px;
  height: 1px;
  background: var(--border);
  margin-top: 30px;
  position: relative;
}

.process-connector::after {
  content: '◇';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.5rem;
  color: var(--rose-gold);
  background: var(--white);
  padding: 0 4px;
}


/* ============================================================
   12. GALLERY
   ============================================================ */
.gallery {
  padding: var(--section-py) 0;
  background: var(--cream);
  border-top: 1px solid var(--border-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.gallery-item {
  overflow: hidden;
}

.gallery-item--span2 {
  grid-column: span 2;
}

.gallery-img {
  width: 100%;
  height: 320px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition-md);
}

.gallery-item--span2 .gallery-img {
  height: 380px;
}

.gallery-img:hover { transform: scale(1.03); }

/* Gallery images */
.gallery-img--1 {
  background-image: url('../assets/images/our-work/engagement_diamond_ring_2.png');
  background-size: cover;
  background-position: center;
}
.gallery-img--2 {
  background-image: url('../assets/images/our-work/necklace.png');
  background-size: cover;
  background-position: center;
}
.gallery-img--3 {
  background-image: url('../assets/images/our-work/sapphire_ring.png');
  background-size: cover;
  background-position: center;
}
.gallery-img--4 {
  background-image: url('../assets/images/our-work/colored_gems.png');
  background-size: cover;
  background-position: center;
}
.gallery-img--5 {
  background-image: url('../assets/images/our-work/pearl_earrings.png');
  background-size: cover;
  background-position: center;
}
.gallery-img--6 {
  background-image: url('../assets/images/our-work/bracelet.png');
  background-size: cover;
  background-position: center;
}

/* Hover overlay */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 22, 20, 0);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  transition: background var(--transition-md);
}

.gallery-img:hover .gallery-overlay {
  background: rgba(26, 22, 20, 0.35);
}

.gallery-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--transition-md), transform var(--transition-md);
}

.gallery-img:hover .gallery-label {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================================
   13. TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: var(--section-py) 0;
  background: linear-gradient(135deg, #2A2220 0%, #1A1614 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(196, 144, 106, 0.08) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.testimonials-wrap {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

.t-quote-mark {
  font-family: var(--serif);
  font-size: 9rem;
  line-height: 0.6;
  color: var(--rose-gold);
  opacity: 0.2;
  margin-bottom: 24px;
  user-select: none;
}

.t-slider {
  position: relative;
  min-height: 180px;
}

.t-slide {
  display: none;
  animation: fadeInSlide 0.6s ease;
}

.t-slide.active { display: block; }

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

.t-text {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(250, 248, 244, 0.9);
  line-height: 1.7;
  margin-bottom: 24px;
}

.t-author {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-gold);
  font-style: normal;
}

.t-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.t-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: background var(--transition), transform var(--transition);
  padding: 0;
  border: none;
  cursor: pointer;
}

.t-dot.active {
  background: var(--rose-gold);
  transform: scale(1.2);
}


/* ============================================================
   14. CONTACT
   ============================================================ */
.contact {
  padding: var(--section-py) 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* Info side */
.contact-info .section-title {
  margin-top: 4px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 36px 0;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--rose-gold);
}

.contact-icon svg {
  width: 16px;
  height: 16px;
}

.contact-label {
  display: block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 3px;
}

.contact-value {
  font-size: 0.875rem;
  color: var(--text-mid);
  transition: color var(--transition);
}

a.contact-value:hover { color: var(--rose-gold); }

/* Map placeholder */
.map-placeholder {
  width: 100%;
  height: 200px;
  background: var(--beige);
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 1px;
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196, 144, 106, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 144, 106, 0.06) 1px, transparent 1px);
  background-size: 30px 30px;
}

.map-pin {
  position: relative;
  z-index: 2;
  width: 28px;
  height: 28px;
  color: var(--rose-gold);
}

.map-pin svg { width: 100%; height: 100%; }

.map-note {
  position: relative;
  z-index: 2;
  font-size: 0.72rem;
  color: var(--text-light);
  text-align: center;
  line-height: 1.6;
}

/* Form side */
.contact-form-wrap {
  background: var(--cream);
  padding: 48px;
  border: 1px solid var(--border-light);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.label-optional {
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text-light);
  font-size: 0.7em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  font-size: 0.875rem;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 1px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  line-height: 1.5;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
  font-size: 0.85rem;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--rose-gold);
  box-shadow: 0 0 0 3px rgba(196, 144, 106, 0.1);
}

.form-group input.error,
.form-group select.error {
  border-color: #D9534F;
}

/* Custom select */
.select-wrap {
  position: relative;
}

.select-wrap select {
  width: 100%;
  padding: 13px 42px 13px 16px;
  font-size: 0.875rem;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 1px;
  outline: none;
  appearance: none;
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.select-wrap select:focus {
  border-color: var(--rose-gold);
  box-shadow: 0 0 0 3px rgba(196, 144, 106, 0.1);
}

.select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 8px;
  color: var(--text-mid);
  pointer-events: none;
}

.form-error {
  font-size: 0.72rem;
  color: #C04040;
  display: none;
}

.form-error.visible {
  display: block;
}

/* Success message */
.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--blush);
  border: 1px solid var(--pink);
  padding: 16px 20px;
  color: var(--rose-gold-dk);
}

.form-success svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--rose-gold);
}

.form-success p {
  font-size: 0.825rem;
  line-height: 1.5;
}


/* ============================================================
   15. FOOTER
   ============================================================ */
.footer {
  background: var(--beige);
  border-top: 1px solid var(--border-light);
  padding: 56px 0 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-light);
}

.footer-logo {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 6px;
}

.footer-tagline {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
}

.footer-nav {
  display: flex;
  gap: 32px;
}

.footer-nav a {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: color var(--transition);
}

.footer-nav a:hover { color: var(--rose-gold); }

.footer-social {
  display: flex;
  gap: 12px;
}

.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-mid);
  transition: color var(--transition), border-color var(--transition),
              background var(--transition);
}

.social-link svg {
  width: 15px;
  height: 15px;
}

.social-link:hover {
  color: var(--rose-gold);
  border-color: var(--rose-gold);
  background: var(--blush);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

.footer-bottom p {
  font-size: 0.7rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

.footer-appt {
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose-gold) !important;
}


/* ============================================================
   16. SCROLL ANIMATIONS
   ============================================================ */
[data-animate] {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate="fade-up"]    { transform: translateY(36px); }
[data-animate="fade-right"] { transform: translateX(-36px); }
[data-animate="fade-left"]  { transform: translateX(36px); }

[data-animate].in-view {
  opacity: 1;
  transform: none;
}

/* Stagger via data-delay (handled in JS) */
[data-delay="1"] { transition-delay: 0.12s; }
[data-delay="2"] { transition-delay: 0.24s; }
[data-delay="3"] { transition-delay: 0.36s; }
[data-delay="4"] { transition-delay: 0.48s; }
[data-delay="5"] { transition-delay: 0.60s; }


/* ============================================================
   17. RESPONSIVE
   ============================================================ */

/* ---- Tablet (≤ 1024px) ---- */
@media (max-width: 1024px) {
  :root {
    --section-py: 80px;
    --container-px: 32px;
  }

  .about-grid {
    gap: 48px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }

  .process-track {
    flex-direction: column;
    max-width: 480px;
    margin: 0 auto;
    gap: 0;
  }

  .process-step {
    text-align: left;
    padding: 0 0 0 80px;
    position: relative;
    padding-bottom: 40px;
  }

  .step-number {
    position: absolute;
    left: 0;
    top: -8px;
    font-size: 2.8rem;
  }

  .process-connector {
    display: none;
  }

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

  .gallery-item--span2 {
    grid-column: span 1;
  }

  .gallery-img,
  .gallery-item--span2 .gallery-img {
    height: 260px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
}

/* ---- Mobile (≤ 768px) ---- */
@media (max-width: 768px) {
  :root {
    --section-py: 60px;
    --container-px: 24px;
  }

  /* Nav */
  .nav-container {
    gap: 16px;
  }

  .btn-nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-overlay {
    position: fixed;
    inset: 0;
    background: var(--cream);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-md);
  }

  .nav-overlay.open {
    opacity: 1;
    pointer-events: all;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .nav-link {
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    color: var(--text-mid);
  }

  .nav-link:hover { color: var(--rose-gold); }

  /* Hero */
  .hero-heading {
    font-size: 2.4rem;
  }

  .hero-deco--outer,
  .hero-deco--inner {
    display: none;
  }

  .hide-mobile { display: none; }

  /* Brand statement */
  .statement-inner {
    flex-direction: column;
    gap: 20px;
  }

  .statement-rule {
    width: 80px;
    height: 1px;
    flex: none;
    background: linear-gradient(to right, transparent, var(--border), transparent);
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-content {
    padding-left: 0;
  }

  .about-badge {
    right: 16px;
    bottom: -16px;
    width: 90px;
    height: 90px;
  }

  .badge-num { font-size: 1.5rem; }

  /* Services */
  .services-grid {
    max-width: 100%;
  }

  .service-card {
    padding: 40px 28px;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .gallery-img,
  .gallery-item--span2 .gallery-img {
    height: 220px;
  }

  .gallery-label { opacity: 1; transform: none; }
  .gallery-overlay { background: rgba(26, 22, 20, 0.25); }

  /* Contact form */
  .contact-form-wrap {
    padding: 32px 24px;
  }

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

  /* Footer */
  .footer-inner {
    gap: 24px;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 16px 24px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
}

/* ---- Small mobile (≤ 480px) ---- */
@media (max-width: 480px) {
  :root {
    --section-py: 50px;
    --container-px: 20px;
  }

  .hero-heading {
    font-size: 2rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
  }

  .section-title {
    font-size: 1.9rem;
  }
}
