/* ============================================================
   EMERALD NAILS — Elegant Emerald Green & Rose Gold
   ============================================================ */

:root {
  --emerald:       #2d6a4f;
  --emerald-dark:  #1b4332;
  --emerald-mid:   #40916c;
  --emerald-light: #74c69d;
  --emerald-pale:  #d8f3dc;
  --rose-gold:     #c9956c;
  --rose-dark:     #a97a55;
  --rose-light:    #e8c4ae;
  --rose-pale:     #fae8dc;
  --blush:         #fdf0eb;
  --blush-dark:    #f5ddd4;
  --cream:         #fdf8f5;
  --white:         #ffffff;
  --ink:           #2a2018;
  --grey:          #7a7068;
  --grey-light:    #b0a89e;
  --border:        #e8ddd6;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
  --nav-h: 76px;
  --ribbon-h: 32px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--white); color: var(--ink); line-height: 1.65; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
input, select, textarea, button { font-family: inherit; }

/* ── TYPOGRAPHY ── */
h1, h2, h3 { font-family: var(--serif); line-height: 1.2; }
h1 { font-size: clamp(2.6rem, 6vw, 4.8rem); font-weight: 400; font-style: italic; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 400; }
h4 { font-family: var(--sans); font-size: 0.72rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; }

/* ── CONTAINERS ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 2rem; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }

/* ── BUTTONS ── */
.btn { display: inline-block; font-family: var(--sans); font-size: 0.72rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; padding: 1rem 2.2rem; cursor: pointer; border: none; transition: all 0.25s; }
.btn-emerald { background: var(--emerald); color: var(--white); border-radius: 40px; }
.btn-emerald:hover { background: var(--emerald-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(45,106,79,0.3); }
.btn-rose { background: var(--rose-gold); color: var(--white); border-radius: 40px; }
.btn-rose:hover { background: var(--rose-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,149,108,0.35); }
.btn-outline-emerald { background: transparent; color: var(--emerald); border: 1.5px solid var(--emerald); border-radius: 40px; }
.btn-outline-emerald:hover { background: var(--emerald); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.6); border-radius: 40px; }
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

/* ── LABEL TAG (unique: small sans-serif with rose gold dot) ── */
.label-tag {
  display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.75rem;
}
.label-tag::before {
  content: ''; display: inline-block; width: 8px; height: 8px;
  background: var(--rose-gold); border-radius: 50%; flex-shrink: 0;
}
.label-tag span { font-size: 0.68rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--rose-gold); }

/* ── EMERALD RIBBON (unique thin top bar — no other site has this) ── */
.emerald-ribbon {
  background: var(--emerald-dark); height: var(--ribbon-h);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; color: rgba(255,255,255,0.75); letter-spacing: 2.5px; text-transform: uppercase;
}
.emerald-ribbon em { color: var(--rose-light); font-style: normal; margin: 0 0.5rem; }

/* ── NAVBAR (WHITE — unique among all 4 sites) ── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: var(--white); height: var(--nav-h);
  display: flex; align-items: center;
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(45,106,79,0.08); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-logo { display: flex; flex-direction: column; }
.nav-logo .wordmark { font-family: var(--serif); font-size: 1.4rem; color: var(--emerald-dark); letter-spacing: -0.01em; line-height: 1; font-style: italic; }
.nav-logo .tagline { font-size: 0.6rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--rose-gold); margin-top: 2px; }

.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-links a { font-size: 0.72rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--grey); padding: 0.5rem 0.9rem; transition: color 0.2s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: 2px; left: 0.9rem; right: 0.9rem; height: 1px; background: var(--rose-gold); transform: scaleX(0); transition: transform 0.25s; transform-origin: center; }
.nav-links a:hover, .nav-links a.active { color: var(--emerald); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-book { margin-left: 1rem; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--emerald); transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav { display: none; position: absolute; top: var(--nav-h); left: 0; right: 0; background: var(--white); border-top: 1px solid var(--border); flex-direction: column; padding: 1rem 0; box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: 0.78rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--grey); padding: 0.9rem 2rem; border-bottom: 1px solid var(--border); }
.mobile-nav a:last-child { border: none; margin: 1rem 2rem 0; background: var(--emerald); color: var(--white); text-align: center; padding: 0.9rem; border-radius: 40px; }
.mobile-nav a.active { color: var(--emerald); }

/* ── HERO (light cream/blush — completely different from all 3 others) ── */
.hero {
  background: var(--cream); min-height: calc(100vh - var(--nav-h) - var(--ribbon-h));
  display: grid; grid-template-columns: 1fr 1fr; align-items: center;
  overflow: hidden; position: relative;
}
.hero-text { padding: 6rem 3rem 6rem 0; position: relative; z-index: 2; }
.hero-text h1 { color: var(--emerald-dark); margin-bottom: 1.25rem; }
.hero-text h1 strong { font-style: normal; color: var(--rose-gold); font-family: var(--serif); }
.hero-sub { font-size: 1rem; color: var(--grey); line-height: 1.75; max-width: 440px; margin-bottom: 2.5rem; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-trust { margin-top: 3rem; display: flex; gap: 2rem; }
.hero-trust-item { display: flex; flex-direction: column; align-items: flex-start; }
.hero-trust-num { font-family: var(--serif); font-size: 2rem; color: var(--emerald); line-height: 1; font-style: italic; }
.hero-trust-lbl { font-size: 0.65rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--grey-light); margin-top: 0.2rem; }

/* Hero image side */
.hero-image-side { position: relative; height: 100%; min-height: 560px; display: flex; align-items: center; justify-content: center; }
/* Large decorative emerald circle behind image */
.hero-decor-ring {
  position: absolute; width: 520px; height: 520px; border-radius: 50%;
  background: var(--emerald-pale); z-index: 0;
}
.hero-img-frame {
  position: relative; z-index: 1; width: 420px; height: 520px;
  border-radius: 220px 220px 180px 180px; overflow: hidden;
  box-shadow: 0 32px 80px rgba(45,106,79,0.18);
}
/* Floating rose gold badge */
.hero-badge {
  position: absolute; z-index: 2; right: 2rem; bottom: 5rem;
  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;
  box-shadow: 0 12px 36px rgba(201,149,108,0.4);
  animation: float 4s ease-in-out infinite;
}
.hero-badge .badge-num { font-family: var(--serif); font-size: 1.6rem; color: var(--white); line-height: 1; font-style: italic; }
.hero-badge .badge-lbl { font-size: 0.5rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.85); margin-top: 2px; }

/* Soft wavy bottom divider */
.hero-wave { position: absolute; bottom: -2px; left: 0; right: 0; height: 80px; background: var(--white); clip-path: ellipse(60% 100% at 50% 100%); z-index: 3; }

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--blush); padding: 5rem 0 4rem;
  position: relative; overflow: hidden;
  text-align: center;
}
.page-hero::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 60px; background: var(--white); clip-path: ellipse(60% 100% at 50% 100%); }
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 4rem); color: var(--emerald-dark); }
.page-hero p { font-size: 1rem; color: var(--grey); margin-top: 0.75rem; max-width: 500px; margin-left: auto; margin-right: auto; }
/* Decorative circles in bg */
.page-hero-decor {
  position: absolute; border-radius: 50%;
  background: var(--rose-pale); opacity: 0.6;
}
.page-hero-decor.d1 { width: 300px; height: 300px; top: -80px; left: -60px; }
.page-hero-decor.d2 { width: 180px; height: 180px; bottom: -20px; right: 5%; }
.page-hero-decor.d3 { width: 120px; height: 120px; top: 10%; right: 20%; background: var(--emerald-pale); }

/* ── FEATURES STRIP ── */
.features-strip { background: var(--white); padding: 5rem 0; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.feature-card {
  background: var(--cream); padding: 2.5rem 2rem; text-align: center;
  border-radius: 16px; border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(45,106,79,0.1); }
.feature-icon { font-size: 2.2rem; margin-bottom: 1.2rem; }
.feature-card h3 { font-size: 1.15rem; color: var(--emerald-dark); margin-bottom: 0.6rem; }
.feature-card p { font-size: 0.88rem; color: var(--grey); line-height: 1.7; }

/* ── SERVICES PREVIEW ── */
.services-preview { background: var(--blush); padding: 6rem 0; position: relative; }
/* Soft wave top */
.wave-top::before { content: ''; position: absolute; top: -2px; left: 0; right: 0; height: 60px; background: var(--white); clip-path: ellipse(60% 100% at 50% 0%); z-index: 1; }
.services-preview-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; flex-wrap: wrap; gap: 1rem; }
.services-preview-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.service-preview-card {
  background: var(--white); border-radius: 16px; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.service-preview-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(45,106,79,0.12); }
.service-preview-img { aspect-ratio: 1; overflow: hidden; }
.service-preview-body { padding: 1.5rem; }
.service-preview-body h3 { font-size: 1rem; color: var(--emerald-dark); margin-bottom: 0.4rem; }
.service-preview-body p { font-size: 0.82rem; color: var(--grey); line-height: 1.6; margin-bottom: 1rem; }
.service-price { display: flex; align-items: center; justify-content: space-between; }
.price-from { font-size: 0.6rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--grey-light); }
.price-val { font-family: var(--serif); font-size: 1.4rem; color: var(--rose-gold); font-style: italic; }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--emerald-dark); padding: 6rem 0; position: relative; overflow: hidden; }
.testimonials::before { content: ''; position: absolute; width: 600px; height: 600px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.05); top: -200px; right: -100px; }
.testimonials::after { content: ''; position: absolute; width: 400px; height: 400px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.05); bottom: -150px; left: -80px; }
.testimonials h2 { color: var(--white); margin-bottom: 3rem; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; position: relative; z-index: 1; }
.testimonial-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); padding: 2.5rem; border-radius: 16px; }
.quote-mark { font-family: var(--serif); font-size: 5rem; line-height: 0.5; color: var(--rose-gold); opacity: 0.7; display: block; margin-bottom: 1.5rem; }
.testimonial-card p { font-size: 0.92rem; color: rgba(255,255,255,0.8); line-height: 1.8; font-style: italic; margin-bottom: 1.75rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar { width: 42px; height: 42px; border-radius: 50%; border: 2px solid var(--rose-gold); overflow: hidden; flex-shrink: 0; background: var(--rose-pale); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.author-name { font-size: 0.82rem; font-weight: 700; color: var(--white); }
.author-title { font-size: 0.68rem; color: rgba(255,255,255,0.45); letter-spacing: 1px; margin-top: 1px; }
.stars { color: var(--rose-gold); font-size: 0.75rem; margin-bottom: 0.3rem; }

/* ── PHOTO STRIP (unique — horizontal scroll row) ── */
.photo-strip { background: var(--cream); padding: 4rem 0; overflow: hidden; }
.photo-strip-inner { display: flex; gap: 1rem; }
.strip-photo { flex: 0 0 calc(16.666% - 0.85rem); aspect-ratio: 1; border-radius: 12px; overflow: hidden; transition: transform 0.3s; }
.strip-photo:hover { transform: scale(1.04); }

/* ── CTA BAND ── */
.cta-band { background: var(--emerald); padding: 5rem 0; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; width: 500px; height: 500px; border-radius: 50%; background: rgba(255,255,255,0.04); top: -200px; left: -100px; }
.cta-band::after { content: ''; position: absolute; width: 300px; height: 300px; border-radius: 50%; background: rgba(255,255,255,0.04); bottom: -100px; right: 5%; }
.cta-band h2 { color: var(--white); margin-bottom: 0.75rem; position: relative; z-index: 1; }
.cta-band p { color: rgba(255,255,255,0.75); font-size: 1rem; margin-bottom: 2.5rem; position: relative; z-index: 1; }
.cta-band .cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ── FOOTER (dark emerald) ── */
footer { background: var(--emerald-dark); padding: 5rem 0 0; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3.5rem; margin-bottom: 4rem; }
.footer-brand .wordmark { font-family: var(--serif); font-size: 1.5rem; color: var(--white); font-style: italic; }
.footer-brand .tagline { font-size: 0.6rem; letter-spacing: 3px; text-transform: uppercase; color: var(--rose-light); margin-top: 3px; margin-bottom: 1.25rem; font-weight: 600; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.75; max-width: 240px; }
.footer-brand .footer-contact { margin-top: 1.5rem; }
.footer-brand .footer-contact a { display: block; font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-bottom: 0.4rem; transition: color 0.2s; }
.footer-brand .footer-contact a:hover { color: var(--rose-light); }
.footer-col h4 { font-size: 0.65rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--white); margin-bottom: 1.25rem; }
.footer-col ul li { margin-bottom: 0.65rem; }
.footer-col ul li a { font-size: 0.84rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--rose-light); }
.footer-col p { font-size: 0.84rem; color: rgba(255,255,255,0.5); line-height: 1.75; }
.footer-hours-item { display: flex; justify-content: space-between; font-size: 0.82rem; color: rgba(255,255,255,0.5); padding: 0.4rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-hours-item .day { color: rgba(255,255,255,0.7); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 1.5rem 0; display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.footer-bottom span { font-size: 0.75rem; color: rgba(255,255,255,0.3); letter-spacing: 0.5px; }
.footer-bottom .rose { color: var(--rose-light); }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-full { background: var(--white); padding: 6rem 0; }
.services-full h2 { margin-bottom: 1rem; }
.services-categories { display: flex; flex-direction: column; gap: 5rem; }
.service-category-label { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 2.5rem; }
.service-category-label h3 { font-size: 1.8rem; color: var(--emerald-dark); font-style: italic; }
.service-category-label::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.service-items-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-item {
  background: var(--cream); border-radius: 12px; padding: 2rem;
  border-bottom: 3px solid var(--rose-light); transition: all 0.3s;
}
.service-item:hover { background: var(--blush); border-bottom-color: var(--rose-gold); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(201,149,108,0.12); }
.service-item-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 0.6rem; }
.service-item-header h3 { font-size: 1.05rem; color: var(--emerald-dark); }
.service-item-price { font-family: var(--serif); font-size: 1.3rem; color: var(--rose-gold); font-style: italic; white-space: nowrap; }
.service-item p { font-size: 0.83rem; color: var(--grey); line-height: 1.65; }
.service-item-tag { display: inline-block; font-size: 0.6rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; background: var(--emerald-pale); color: var(--emerald); padding: 0.2rem 0.6rem; border-radius: 20px; margin-top: 0.75rem; }

/* Add-ons section */
.addons-section { background: var(--blush); padding: 5rem 0; position: relative; }
.addons-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2.5rem; }
.addon-item { background: var(--white); border-radius: 12px; padding: 1.5rem; text-align: center; }
.addon-item h4 { font-family: var(--serif); font-size: 0.95rem; color: var(--emerald); margin-bottom: 0.3rem; font-weight: 400; font-style: italic; }
.addon-item .addon-price { font-size: 0.8rem; font-weight: 700; color: var(--rose-gold); letter-spacing: 1px; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story { background: var(--white); padding: 6rem 0; }
.about-story-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.about-img-wrap { position: relative; }
.about-circle-img {
  width: 100%; aspect-ratio: 1; border-radius: 50%;
  overflow: hidden; border: 6px solid var(--white);
  box-shadow: 0 32px 80px rgba(45,106,79,0.15);
  position: relative; z-index: 1;
}
.about-circle-bg {
  position: absolute; width: 85%; height: 85%; border-radius: 50%;
  background: var(--emerald-pale); top: 7.5%; left: 7.5%; z-index: 0;
}
.about-body .label-tag { margin-bottom: 1rem; }
.about-body h2 { margin-bottom: 1.25rem; color: var(--emerald-dark); }
.about-body p { font-size: 0.93rem; color: var(--grey); line-height: 1.85; margin-bottom: 1rem; }
.about-pull { font-family: var(--serif); font-size: 1.2rem; color: var(--emerald); font-style: italic; border-left: 3px solid var(--rose-gold); padding-left: 1.25rem; margin: 2rem 0; line-height: 1.6; }

/* Values */
.values-section { background: var(--blush); padding: 6rem 0; position: relative; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 3rem; }
.value-item { text-align: center; }
.value-icon-wrap { width: 72px; height: 72px; border-radius: 50%; background: var(--white); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; box-shadow: 0 8px 24px rgba(45,106,79,0.1); font-size: 1.8rem; border: 1px solid var(--border); }
.value-item h3 { font-size: 1rem; color: var(--emerald-dark); margin-bottom: 0.5rem; }
.value-item p { font-size: 0.83rem; color: var(--grey); line-height: 1.65; }

/* Team */
.team-section { background: var(--white); padding: 6rem 0; }
.team-section h2 { text-align: center; margin-bottom: 3.5rem; color: var(--emerald-dark); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; }
.team-card { text-align: center; }
.team-img-wrap { position: relative; display: inline-block; margin-bottom: 1.5rem; }
.team-avatar { width: 200px; height: 200px; border-radius: 50%; overflow: hidden; margin: 0 auto; border: 4px solid var(--white); box-shadow: 0 12px 40px rgba(45,106,79,0.12); }
.team-badge-dot { position: absolute; bottom: 8px; right: 8px; width: 28px; height: 28px; background: var(--rose-gold); border-radius: 50%; border: 2px solid var(--white); }
.team-card h3 { font-size: 1.15rem; color: var(--emerald-dark); margin-bottom: 0.3rem; }
.team-card .role { font-size: 0.68rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--rose-gold); margin-bottom: 0.75rem; }
.team-card p { font-size: 0.84rem; color: var(--grey); line-height: 1.65; }

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-section { background: var(--white); padding: 6rem 0; }
.gallery-filters { display: flex; gap: 0.75rem; margin-bottom: 3rem; flex-wrap: wrap; }
.gallery-filter { font-size: 0.68rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 0.6rem 1.4rem; border-radius: 30px; background: var(--cream); color: var(--grey); border: 1px solid var(--border); cursor: pointer; transition: all 0.2s; }
.gallery-filter:hover { background: var(--blush); color: var(--emerald); border-color: var(--rose-light); }
.gallery-filter.active { background: var(--emerald); color: var(--white); border-color: var(--emerald); }
/* Pinterest masonry via CSS columns — unique to this site */
.gallery-masonry { columns: 3; gap: 1rem; }
.gallery-item { break-inside: avoid; margin-bottom: 1rem; border-radius: 12px; overflow: hidden; cursor: pointer; transition: transform 0.3s; position: relative; }
.gallery-item:hover { transform: scale(1.02); z-index: 1; }
.gallery-item img { width: 100%; display: block; border-radius: 12px; }
.gallery-item-overlay { position: absolute; inset: 0; background: rgba(27,67,50,0.0); display: flex; align-items: flex-end; padding: 1rem; border-radius: 12px; transition: background 0.3s; }
.gallery-item:hover .gallery-item-overlay { background: rgba(27,67,50,0.45); }
.gallery-item-label { color: var(--white); font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; opacity: 0; transform: translateY(6px); transition: all 0.3s; }
.gallery-item:hover .gallery-item-label { opacity: 1; transform: translateY(0); }
/* Vary the gallery item heights for masonry feel */
.gallery-item.tall img { aspect-ratio: 2/3; }
.gallery-item.wide img { aspect-ratio: 4/3; }
.gallery-item.sq img { aspect-ratio: 1; }

/* Lightbox */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(27,67,50,0.9); z-index: 1000; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lb-inner { position: relative; max-width: 800px; width: 90%; }
.lb-inner img { width: 100%; border-radius: 12px; max-height: 80vh; object-fit: contain; }
.lb-close { position: absolute; top: -2.5rem; right: 0; background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; opacity: 0.7; transition: opacity 0.2s; }
.lb-close:hover { opacity: 1; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.booking-section { background: var(--cream); padding: 6rem 0; }
.booking-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
.booking-info { }
.booking-info h2 { color: var(--emerald-dark); margin-bottom: 1rem; }
.booking-info p { font-size: 0.93rem; color: var(--grey); line-height: 1.8; margin-bottom: 2.5rem; }
.info-blocks { display: flex; flex-direction: column; gap: 0; }
.info-block { padding: 1.25rem 0; border-bottom: 1px solid var(--border); display: flex; gap: 1rem; align-items: flex-start; }
.info-block:first-child { border-top: 1px solid var(--border); }
.info-icon { width: 40px; height: 40px; border-radius: 50%; background: var(--emerald-pale); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.info-block-text .info-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--rose-gold); margin-bottom: 0.3rem; }
.info-block-text .info-value { font-size: 0.88rem; color: var(--ink); line-height: 1.6; }
.info-block-text .info-value a { color: var(--emerald); }

/* Booking form */
.booking-form-panel { background: var(--white); border-radius: 20px; padding: 3rem; box-shadow: 0 8px 40px rgba(45,106,79,0.08); border: 1px solid var(--border); }
.booking-form-panel h3 { font-size: 1.6rem; color: var(--emerald-dark); margin-bottom: 0.5rem; }
.booking-form-panel .form-sub { font-size: 0.85rem; color: var(--grey); margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.65rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--grey); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.85rem 1.1rem; border: 1px solid var(--border);
  background: var(--cream); font-size: 0.9rem; color: var(--ink);
  border-radius: 10px; outline: none; transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--emerald-mid); box-shadow: 0 0 0 3px rgba(64,145,108,0.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23888' d='M0 0l6 8 6-8z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }
.form-submit-btn { width: 100%; padding: 1.1rem; border-radius: 40px; font-size: 0.78rem; letter-spacing: 2px; margin-top: 0.75rem; }
.form-success-msg { display: none; text-align: center; padding: 3rem 2rem; }
.form-success-msg .success-icon { font-size: 3rem; margin-bottom: 1rem; }
.form-success-msg h4 { font-family: var(--serif); font-size: 1.4rem; color: var(--emerald-dark); margin-bottom: 0.5rem; font-style: italic; }
.form-success-msg p { font-size: 0.88rem; color: var(--grey); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-image-side { display: none; }
  .hero-text { padding: 5rem 0 6rem; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .hero-trust { justify-content: center; }
  .services-preview-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .services-full-grid { grid-template-columns: 1fr; }
  .about-story-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-circle-img { width: 280px; height: 280px; }
  .about-img-wrap { text-align: center; }
  .team-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .gallery-masonry { columns: 2; }
  .booking-grid { grid-template-columns: 1fr; }
  .addons-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .service-items-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --ribbon-h: 0px; }
  .emerald-ribbon { display: none; }
  .nav-links, .nav-book { display: none; }
  .hamburger { display: flex; }
  .hero-trust { gap: 1.5rem; }
  .features-grid { grid-template-columns: 1fr; }
  .services-preview-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .team-grid { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 1; }
  .form-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .service-items-grid { grid-template-columns: 1fr; }
  .addons-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-band .cta-btns { flex-direction: column; align-items: center; }
  .photo-strip-inner { gap: 0.75rem; }
  .strip-photo { flex: 0 0 calc(25% - 0.57rem); }
}

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.65s, transform 0.65s; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
