@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,300;1,9..144,400&family=Manrope:wght@300;400;500;600;700&display=swap');

/* ============================================================
   SIMPLY SOUTHERN — SUPER WHITE DESIGN SYSTEM
   ============================================================ */
:root {
  --bg:          #ffffff;
  --bg-soft:     #fafafa;
  --bg-tint:     #f6f6f6;
  --border:      #ededed;
  --border-strong: #e2e2e2;
  --ink:         #4a4a4a;
  --ink-strong:  #262626;
  --muted:       #8f8f8f;
  --faint:       #bfbfbf;
  --shadow-sm:   0 2px 14px rgba(0, 0, 0, 0.045);
  --shadow-md:   0 14px 44px rgba(0, 0, 0, 0.065);
  --radius-lg:   24px;
  --radius-md:   16px;
  --radius-sm:   10px;
  --font-serif:  'Fraunces', Georgia, serif;
  --font-sans:   'Manrope', 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: #eaeaea; color: var(--ink-strong); }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #f6f6f6; }
::-webkit-scrollbar-thumb { background: #dcdcdc; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #c9c9c9; }

.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 2rem; }

/* Scroll progress bar */
.progress-bar {
  position: fixed; top: 0; left: 0; z-index: 1200;
  height: 2px; width: 0;
  background: linear-gradient(90deg, #d5d5d5, #9c9c9c);
  transition: width 0.1s linear;
}

/* ===== TYPOGRAPHY ===== */
.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.3rem;
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--ink-strong);
  margin-bottom: 1.2rem;
}

.section-desc {
  color: var(--muted);
  max-width: 540px;
  font-size: 0.98rem;
  line-height: 1.8;
}

.section { padding: 6.5rem 0; }
.section-tint { background: var(--bg-tint); }

.section-head { max-width: 640px; margin-bottom: 3.5rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .section-desc { margin-left: auto; margin-right: auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 2.1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-dark { background: var(--ink-strong); color: #ffffff; }
.btn-dark:hover { background: #4d4d4d; transform: translateY(-2px); box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12); }

.btn-light {
  background: #f2f2f2;
  color: var(--ink-strong);
  border-color: #e6e6e6;
}
.btn-light:hover { background: #e9e9e9; transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--ink-strong);
  border-color: var(--border-strong);
}
.btn-ghost:hover { background: var(--bg-tint); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.6rem 0;
  transition: padding 0.35s ease, background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
}

.nav-inner { display: flex; align-items: center; justify-content: space-between; }

.nav-logo { display: flex; align-items: center; gap: 0.9rem; }
.nav-logo img { height: 40px; width: auto; }
.nav-brand {
  display: flex;
  flex-direction: column;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink-strong);
  line-height: 1.15;
}
.nav-brand em {
  font-style: normal;
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links { display: flex; align-items: center; gap: 2.2rem; }
.nav-links > li > a {
  position: relative;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  transition: color 0.3s ease;
  padding: 0.2rem 0;
}
.nav-links > li > a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -5px;
  width: 0; height: 1.5px;
  background: var(--ink-strong);
  transition: width 0.35s ease;
}
.nav-links > li > a:hover, .nav-links > li > a.active { color: var(--ink-strong); }
.nav-links > li > a:hover::after, .nav-links > li > a.active::after { width: 100%; }

.nav-cta { margin-left: 0.4rem; }
.nav-cta .btn { padding: 0.6rem 1.55rem; font-size: 0.76rem; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px; height: 42px;
  z-index: 102;
}
.hamburger span {
  width: 22px; height: 1.8px;
  background: var(--ink-strong);
  border-radius: 2px;
  transition: 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(6.8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6.8px) rotate(-45deg); }

/* ===== HERO ===== */
.hero { position: relative; padding: 9rem 0 0; overflow: hidden; }
.hero::before {
  content: '';
  position: absolute;
  top: -10%; left: 50%; transform: translateX(-50%);
  width: 92%; height: 78%;
  background: radial-gradient(ellipse at top, #f8f8f8 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner { position: relative; text-align: center; }
.hero-content { max-width: 780px; margin: 0 auto; }

.hero-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 6.5vw, 5.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink-strong);
}
.hero-title em {
  display: block;
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-style: italic;
  font-weight: 300;
  color: var(--muted);
  margin-top: 1.5rem;
  letter-spacing: 0.01em;
}

.hero-desc {
  margin: 2rem auto 2.6rem;
  max-width: 500px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
}

.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero-image-wrap { position: relative; margin-top: 4.5rem; padding-bottom: 6.5rem; }
.hero-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.hero-image img { width: 100%; height: clamp(340px, 48vh, 540px); object-fit: cover; }

/* ===== MARQUEE ===== */
.marquee {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-soft);
  padding: 1.5rem 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.marquee-track span { font-family: var(--font-serif); font-style: italic; font-size: 1.2rem; color: var(--faint); }
.marquee-track span.sep { color: #dedede; font-size: 0.8rem; padding-top: 0.2rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== STATS ===== */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.stat {
  text-align: center;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.6rem 1.5rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.stat:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }

.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  line-height: 1;
  color: var(--ink-strong);
  margin-bottom: 0.85rem;
}
.stat-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 5rem; align-items: center; }

.about-media { position: relative; padding: 1.6rem; }
.about-media::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  transform: translate(1.3rem, 1.3rem);
}
.about-img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.about-img img { width: 100%; height: 540px; object-fit: cover; }

.about-content p { color: var(--muted); font-size: 0.98rem; line-height: 1.8; margin-bottom: 1.1rem; }
.about-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--ink);
  border-left: 2px solid #dbdbdb;
  padding-left: 1.5rem;
  margin: 2.2rem 0;
}
.about-sign { margin-top: 2.2rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.about-sign strong { display: block; font-family: var(--font-serif); font-weight: 500; font-size: 1.05rem; color: var(--ink-strong); }
.about-sign span { display: block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-top: 0.25rem; }

/* ===== SERVICES CARDS ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.5rem 2.2rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}

.service-icon {
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--bg-tint);
  border: 1px solid var(--border);
  color: var(--ink-strong);
  margin-bottom: 1.6rem;
  transition: 0.35s ease;
}
.service-card:hover .service-icon { background: var(--ink-strong); border-color: var(--ink-strong); color: #ffffff; }

.service-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--faint);
  margin-bottom: 0.9rem;
}

.service-card h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.45rem;
  color: var(--ink-strong);
  margin-bottom: 0.7rem;
}
.service-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.5rem; flex-grow: 1; }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink-strong);
  transition: gap 0.3s ease;
}
.service-link:hover { gap: 0.8rem; }

/* ===== GALLERY ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-tint);
}
.gallery-item:nth-child(1), .gallery-item:nth-child(4) { grid-column: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:nth-child(1) img, .gallery-item:nth-child(4) img { min-height: 430px; }
.gallery-item:hover img { transform: scale(1.03); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.3rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.4s ease;
  padding: 1rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h4 { font-family: var(--font-serif); font-weight: 500; font-size: 1.3rem; color: var(--ink-strong); }
.gallery-overlay p { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.testimonial-card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.6rem 2.2rem;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1.1rem; right: 1.8rem;
  font-family: var(--font-serif);
  font-size: 5.5rem;
  line-height: 1;
  color: #f0f0f0;
  pointer-events: none;
}

.testimonial-stars { color: #d9d9d9; font-size: 0.85rem; letter-spacing: 0.22em; margin-bottom: 1.4rem; }
.testimonial-text {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 1.6rem;
}
.testimonial-author { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; color: var(--muted); }

/* ===== CTA ===== */
.cta {
  padding: 6rem 0;
  text-align: center;
  background: var(--bg-tint);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  color: var(--ink-strong);
  margin-bottom: 1rem;
}
.cta p { color: var(--muted); max-width: 480px; margin: 0 auto 2.3rem; font-size: 0.98rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}

.footer-brand h3 { font-family: var(--font-serif); font-weight: 500; font-size: 1.35rem; color: var(--ink-strong); margin-bottom: 0.7rem; }
.footer-brand p { font-size: 0.85rem; color: var(--muted); line-height: 1.7; max-width: 270px; }
.footer-social { display: flex; gap: 0.6rem; margin-top: 1.4rem; }
.footer-social a {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  background: var(--bg);
  color: var(--muted);
  transition: 0.3s ease;
}
.footer-social a:hover { background: var(--ink-strong); border-color: var(--ink-strong); color: #ffffff; transform: translateY(-2px); }

.footer-col h4 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink); margin-bottom: 1.1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col a, .footer-col span { font-size: 0.85rem; color: var(--muted); transition: color 0.3s ease; }
.footer-col a:hover { color: var(--ink-strong); }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 0.75rem; font-size: 0.75rem; color: var(--faint); }

/* ===== TO TOP ===== */
.to-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 900;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--ink-strong);
  color: #ffffff;
  font-size: 1.05rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: 0.35s ease;
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: #4d4d4d; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero { padding: 8.5rem 0 3.5rem; text-align: center; position: relative; overflow: hidden; }
.page-hero::before {
  content: '';
  position: absolute;
  top: -12%; left: 50%; transform: translateX(-50%);
  width: 88%; height: 75%;
  background: radial-gradient(ellipse at top, #f8f8f8 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .container { position: relative; }
.page-hero h1 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink-strong);
  margin-bottom: 0.5rem;
}
.page-hero h1 span {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  color: var(--muted);
  margin-top: 1.2rem;
  letter-spacing: 0.01em;
}

/* ===== SERVICE BLOCKS (services page) ===== */
.service-block {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg);
  margin-bottom: 2.2rem;
  transition: box-shadow 0.35s ease;
}
.service-block:hover { box-shadow: var(--shadow-md); }
.service-block:nth-child(even) .service-block-img { order: 2; }

.service-block-img { min-height: 340px; overflow: hidden; }
.service-block-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.service-block:hover .service-block-img img { transform: scale(1.03); }

.service-block-content { padding: 3.2rem 3rem; display: flex; flex-direction: column; justify-content: center; }
.service-block-content .num { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; color: var(--faint); margin-bottom: 0.7rem; }
.service-block-content h3 { font-family: var(--font-serif); font-weight: 500; font-size: 1.9rem; color: var(--ink-strong); margin-bottom: 0.9rem; }
.service-block-content p { font-size: 0.9rem; color: var(--muted); line-height: 1.75; margin-bottom: 0.8rem; }
.service-block-content .btn { margin-top: 1.4rem; align-self: flex-start; }

/* ===== CONTACT ===== */
.contact-layout { display: grid; grid-template-columns: 1fr 1.25fr; gap: 4rem; align-items: start; }
.contact-info > p { color: var(--muted); font-size: 0.98rem; margin-bottom: 2.2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.1rem; }

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 1.2rem 1.4rem;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: box-shadow 0.3s ease;
}
.contact-row:hover { box-shadow: var(--shadow-sm); }

.contact-icon {
  width: 42px; height: 42px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  color: var(--ink-strong);
}
.contact-row h4 { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.15rem; }
.contact-row p, .contact-row a { font-size: 0.9rem; font-weight: 500; color: var(--ink); }
.contact-row a:hover { color: var(--muted); }

.contact-form-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.8rem;
  box-shadow: var(--shadow-sm);
}
.contact-form-card h3 { font-family: var(--font-serif); font-weight: 500; font-size: 1.7rem; color: var(--ink-strong); margin-bottom: 0.3rem; }
.contact-form-card > p { font-size: 0.88rem; color: var(--muted); margin-bottom: 2rem; }

.form-group { margin-bottom: 1.3rem; }
.form-group label { display: block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.45rem; }

.form-control {
  width: 100%;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.1rem;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--ink);
  outline: none;
  transition: 0.3s ease;
}
.form-control::placeholder { color: var(--faint); }
.form-control:focus { border-color: #c9c9c9; background: var(--bg); box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.03); }
textarea.form-control { resize: vertical; min-height: 110px; }
select.form-control {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath fill='none' stroke='%238f8f8f' stroke-width='1.5' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
  padding-right: 2.6rem;
}

.form-alert { padding: 0.85rem 1rem; margin-top: 1.3rem; font-size: 0.82rem; border-radius: var(--radius-sm); display: none; font-weight: 500; }
.form-alert-success { background: #f2f5f2; color: #4e6b4e; }
.form-alert-error { background: #faf3f3; color: #9a5b5b; }

/* ===== FAQ ===== */
.faq-list { max-width: 780px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-soft);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.faq-item.active { background: var(--bg); box-shadow: var(--shadow-sm); }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 1.6rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--ink-strong);
  user-select: none;
}
.faq-icon {
  width: 28px; height: 28px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  color: var(--muted);
  font-size: 0.9rem;
  transition: transform 0.35s ease, background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.faq-item.active .faq-icon { transform: rotate(45deg); background: var(--ink-strong); border-color: var(--ink-strong); color: #ffffff; }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer p { padding: 0 1.6rem 1.5rem; font-size: 0.9rem; color: var(--muted); line-height: 1.75; }

/* ===== LIGHTBOX (super white) ===== */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: none; align-items: center; justify-content: center;
  padding: 2rem;
}
.lightbox-content { position: relative; max-width: 92%; max-height: 92%; text-align: center; }
.lightbox-img { max-width: 100%; max-height: 76vh; object-fit: contain; border-radius: var(--radius-md); box-shadow: var(--shadow-md); background: #ffffff; }
.lightbox-caption { font-family: var(--font-serif); font-size: 1.15rem; color: var(--ink-strong); margin-top: 1.3rem; }
.lightbox-close {
  position: absolute; top: -2.9rem; right: 0;
  font-size: 1.6rem; color: var(--muted);
  transition: 0.3s ease;
}
.lightbox-close:hover { color: var(--ink-strong); transform: rotate(90deg); }
.lightbox-btn { position: absolute; top: 50%; transform: translateY(-50%); font-size: 1.8rem; color: var(--faint); padding: 1rem; transition: color 0.3s ease; }
.lightbox-btn:hover { color: var(--ink-strong); }
.lightbox-prev { left: -3.2rem; }
.lightbox-next { right: -3.2rem; }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .about-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .service-block { grid-template-columns: 1fr; }
  .service-block:nth-child(even) .service-block-img { order: 0; }
  .service-block-img { min-height: 300px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 1.25rem; }
  .section { padding: 4.5rem 0; }

  .nav-links {
    display: flex;
    position: fixed; inset: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.2rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 101;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
  }
  .nav-links.active { opacity: 1; visibility: visible; }
  .nav-links > li > a { font-size: 1.1rem; color: var(--ink-strong); }
  .nav-links > li > a::after { display: none; }
  .nav-cta { display: block; margin-left: 0; }
  .nav-cta .btn { padding: 0.8rem 2rem; font-size: 0.85rem; }

  .hamburger { display: flex; }

  .hero { padding: 7rem 0 0; }
  .hero-image-wrap { margin-top: 3rem; padding-bottom: 4rem; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .stat { padding: 2rem 1rem; }

  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1), .gallery-item:nth-child(4) { grid-column: span 1; }
  .gallery-item:nth-child(1) img, .gallery-item:nth-child(4) img { min-height: 320px; }

  .about-img img { height: 380px; }
  .about-media { padding: 1rem; }
  .about-media::before { transform: translate(0.8rem, 0.8rem); }

  .service-block-content { padding: 2.2rem 1.6rem; }
  .contact-form-card { padding: 1.8rem; }
  .page-hero { padding: 7rem 0 2.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .to-top { bottom: 1.25rem; right: 1.25rem; }
  .lightbox-prev { left: 0; }
  .lightbox-next { right: 0; }
}