/* ===========================
   NORTH SHORE SIGN CO — style.css
   =========================== */

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

:root {
  --navy: #0C1B33;
  --navy-mid: #1A2E4A;
  --navy-light: #243D5C;
  --cream: #F5F0E8;
  --cream-dark: #EDE6D6;
  --gold: #C8A84B;
  --gold-light: #E2C97E;
  --gold-pale: #F5EDD0;
  --white: #FDFCFA;
  --muted: #6B7280;
  --border: rgba(12,27,51,0.1);
  --border-strong: rgba(12,27,51,0.18);
}

html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--white); color: var(--navy); overflow-x: hidden; line-height: 1.6; }

/* ===========================
   PHOTO PLACEHOLDER SYSTEM
   All photos have a placeholder shown when image fails to load
   Drop your photos into a /photos/ folder next to the HTML files
   =========================== */

/* Base: all photo containers are position:relative */
.hero-photo-frame,
.strip-photo,
.svc-photo,
.step-photo,
.page-photo-banner,
.svc-detail-photo,
.about-inline-photo,
.gallery-photo {
  position: relative;
  overflow: hidden;
}

/* Placeholder is always in DOM, hidden behind the real image */
.hero-photo-placeholder,
.strip-placeholder,
.svc-photo-placeholder,
.step-photo-placeholder,
.page-photo-placeholder,
.svc-detail-photo-placeholder,
.about-inline-placeholder,
.gallery-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--cream-dark);
  color: var(--muted);
  font-size: 13px;
  text-align: center;
  padding: 16px;
  opacity: 0; /* hidden when real image loads */
  pointer-events: none;
  transition: opacity 0.2s;
}

/* Show placeholder when parent has .photo-missing class (set by onerror) */
.photo-missing .hero-photo-placeholder,
.photo-missing .strip-placeholder,
.photo-missing .svc-photo-placeholder,
.photo-missing .step-photo-placeholder,
.photo-missing .page-photo-placeholder,
.photo-missing .svc-detail-photo-placeholder,
.photo-missing .about-inline-placeholder,
.photo-missing .gallery-placeholder { opacity: 1; pointer-events: auto; }

/* Hide broken img when missing */
.photo-missing img { opacity: 0; }

.ph-icon { font-size: 28px; display: block; }
.hero-photo-placeholder strong,
.page-photo-placeholder strong,
.step-photo-placeholder strong { font-size: 13px; color: var(--navy); font-weight: 600; }
.hero-photo-placeholder small,
.page-photo-placeholder small,
.step-photo-placeholder small,
.svc-photo-placeholder small,
.strip-placeholder small { font-size: 11px; color: var(--muted); line-height: 1.4; }

/* ===========================
   NAV
   =========================== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 66px; background: rgba(253,252,250,0.94);
  backdrop-filter: blur(14px); border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw; transition: box-shadow 0.3s;
}
#navbar.scrolled { box-shadow: 0 4px 24px rgba(12,27,51,0.08); }
.nav-logo { display: flex; align-items: center; justify-content: center; text-decoration: none; order: 1; margin-top: 6px; }
.nav-logo img { height: 168px; width: auto; }
.nav-links { order: 2; }
.nav-links { display: flex; gap: 30px; list-style: none; align-items: center; }
.nav-links a { font-size: 13px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none; color: var(--navy); opacity: 0.6; transition: opacity 0.2s; }
.nav-links a:hover { opacity: 1; }
.nav-links a.active:not(.nav-signin):not(.nav-book) { opacity: 1; }
.nav-signin { display: inline-block; background: var(--gold) !important; color: var(--navy) !important; opacity: 1 !important; padding: 9px 20px !important; border-radius: 6px; font-weight: 600 !important; border: none !important; text-decoration: none !important; }
.nav-signin:hover { background: #d4a860 !important; opacity: 1 !important; }
.nav-signin.active { background: var(--gold) !important; opacity: 1 !important; }
.nav-book { display: inline-block; border: 1.5px solid var(--navy) !important; color: var(--navy) !important; opacity: 1 !important; padding: 8px 19px !important; border-radius: 6px; font-weight: 500 !important; background: transparent !important; text-decoration: none !important; }
.nav-book:hover { border-color: var(--navy) !important; background: rgba(12, 27, 51, 0.05) !important; opacity: 1 !important; }
.nav-book.active { border-color: var(--navy) !important; opacity: 1 !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.25s; }
.mobile-menu { display: none; position: fixed; top: 66px; left: 0; right: 0; z-index: 199; background: var(--white); border-bottom: 1px solid var(--border); flex-direction: column; padding: 16px 5vw 24px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 15px; font-weight: 500; color: var(--navy); text-decoration: none; padding: 12px 0; border-bottom: 1px solid var(--border); }
.mobile-menu a:last-child { border-bottom: none; color: var(--gold); }

/* ===========================
   HERO
   =========================== */
.hero {
  min-height: 100vh; background: var(--navy);
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; padding: 100px 5vw 80px; gap: 5vw;
  position: relative; overflow: hidden;
}
.hero-bg-lines {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(200,168,75,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(200,168,75,0.05) 1px, transparent 1px);
  background-size: 60px 60px; pointer-events: none;
}
.eyebrow { font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.eyebrow::before { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); }
.hero-title { font-family: 'Playfair Display', serif; font-size: clamp(44px, 5.5vw, 78px); font-weight: 900; line-height: 1.06; color: var(--white); margin-bottom: 22px; }
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-sub { font-size: 17px; line-height: 1.7; color: rgba(253,252,250,0.6); max-width: 430px; margin-bottom: 38px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero photo */
.hero-photo-frame { border-radius: 16px; overflow: hidden; min-height: 420px; background: var(--navy-mid); }
.hero-photo { width: 100%; height: 100%; object-fit: cover; display: block; }
.stat-overlay { position: absolute; bottom: 20px; left: 20px; right: 20px; display: flex; gap: 12px; }
.stat-pill { flex: 1; background: rgba(12,27,51,0.75); backdrop-filter: blur(8px); border: 1px solid rgba(200,168,75,0.25); border-radius: 10px; padding: 14px; text-align: center; }
.stat-num { display: block; font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: var(--gold-light); line-height: 1; }
.stat-label { font-size: 11px; color: rgba(253,252,250,0.5); }

/* ===========================
   TRUST BAR
   =========================== */
.trust-bar { background: var(--cream); border-bottom: 1px solid var(--border-strong); padding: 18px 5vw; display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; color: var(--navy); opacity: 0.65; }
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

/* ===========================
   PHOTO STRIP
   =========================== */
.photo-strip { display: grid; grid-template-columns: repeat(4, 1fr); height: 240px; }
.strip-photo { overflow: hidden; position: relative; background: var(--cream-dark); }
.strip-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
.strip-photo:hover img { transform: scale(1.04); }
.strip-placeholder { font-size: 12px; text-align: center; }

/* ===========================
   SHARED
   =========================== */
.container { max-width: 1100px; margin: 0 auto; }
.section-label { font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(30px, 4vw, 50px); font-weight: 800; line-height: 1.1; color: var(--navy); margin-bottom: 16px; }
.section-sub { font-size: 17px; line-height: 1.65; color: var(--muted); max-width: 520px; }
.section-sub a { color: var(--gold); text-decoration: none; }

/* ===========================
   BUTTONS
   =========================== */
.btn-primary { display: inline-block; background: var(--gold); color: var(--navy); font-weight: 600; font-size: 14px; letter-spacing: 0.04em; padding: 13px 28px; border-radius: 7px; text-decoration: none; transition: background 0.2s, transform 0.15s; border: none; cursor: pointer; font-family: 'DM Sans', sans-serif; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline { display: inline-block; background: transparent; color: var(--white); font-weight: 500; font-size: 14px; padding: 13px 28px; border-radius: 7px; text-decoration: none; cursor: pointer; border: 1px solid rgba(255,255,255,0.22); transition: border-color 0.2s, background 0.2s; }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.06); }
.btn-outline-dark { display: inline-block; background: transparent; color: var(--navy); font-weight: 500; font-size: 14px; padding: 13px 28px; border-radius: 7px; text-decoration: none; cursor: pointer; border: 1px solid var(--border-strong); transition: border-color 0.2s, background 0.2s; }
.btn-outline-dark:hover { background: var(--cream-dark); }

/* ===========================
   SERVICES SECTION (home)
   =========================== */
.services-section { padding: 100px 5vw; background: var(--cream); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; margin-top: 52px; }
.service-card { background: var(--white); border: 1px solid var(--border-strong); border-radius: 14px; overflow: hidden; position: relative; transition: transform 0.25s, box-shadow 0.25s; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(12,27,51,0.09); }
.service-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold); }
.svc-photo { height: 180px; overflow: hidden; position: relative; background: var(--cream-dark); }
.svc-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s; }
.service-card:hover .svc-photo img { transform: scale(1.04); }
.svc-photo-placeholder { font-size: 12px; }
.service-card > .svc-icon { font-size: 24px; margin: 20px 26px 0; width: 46px; height: 46px; background: var(--gold-pale); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.service-card h3 { font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 700; margin: 12px 26px 8px; color: var(--navy); }
.service-card p { font-size: 14px; color: var(--muted); line-height: 1.65; margin: 0 26px 26px; }
.section-cta { display: flex; gap: 14px; margin-top: 44px; flex-wrap: wrap; }

/* ===========================
   HOW IT WORKS
   =========================== */
.how-section { padding: 100px 5vw; background: var(--navy); }
.steps { display: flex; align-items: flex-start; gap: 0; margin-top: 56px; }
.step { flex: 1; text-align: center; padding: 0 24px; }
.step-num { font-family: 'Playfair Display', serif; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; color: var(--gold); margin-bottom: 14px; display: block; }
.step-photo { height: 180px; border-radius: 12px; overflow: hidden; position: relative; background: var(--navy-mid); margin-bottom: 20px; }
.step-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.step-photo-placeholder { font-size: 12px; color: rgba(253,252,250,0.4); background: var(--navy-mid); }
.step h3 { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.step p { font-size: 14px; color: rgba(253,252,250,0.55); line-height: 1.65; }
.step-arrow { font-size: 22px; color: var(--gold); opacity: 0.4; flex-shrink: 0; margin-top: 100px; }

/* ===========================
   SERVICE AREA CHECKER (new feature)
   =========================== */
.area-checker-section { padding: 100px 5vw; background: var(--cream); }
.area-checker-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.area-checker-widget { background: var(--white); border: 1px solid var(--border-strong); border-radius: 16px; padding: 32px; }
.checker-input-row { display: flex; gap: 10px; margin-bottom: 16px; }
.zip-input { flex: 1; padding: 13px 16px; border: 1px solid var(--border-strong); border-radius: 8px; font-size: 16px; font-family: 'DM Sans', sans-serif; color: var(--navy); background: var(--white); outline: none; transition: border-color 0.2s; }
.zip-input:focus { border-color: var(--gold); }
.checker-btn { flex-shrink: 0; }

.checker-result { border-radius: 10px; padding: 18px; margin-bottom: 20px; display: flex; flex-direction: column; gap: 6px; font-size: 14px; }
.checker-result strong { font-size: 15px; }
.checker-yes { background: #eaf6ee; border: 1px solid #86d4a1; color: #1a5c30; }
.checker-no { background: #fef3e2; border: 1px solid #f5c97a; color: #7a4a00; }
.checker-error { background: #fdecea; border: 1px solid #f5a0a0; color: #7a1a1a; }
.checker-badge { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 10px; border-radius: 4px; margin-bottom: 4px; align-self: flex-start; }
.checker-badge-yes { background: #86d4a1; color: #0e3d1f; }
.checker-badge-no { background: #f5c97a; color: #5a3500; }
.checker-hint { font-size: 12px; color: var(--muted); margin-bottom: 10px; }
.checker-areas { display: flex; flex-wrap: wrap; gap: 6px; }
.area-pill { background: var(--cream); border: 1px solid var(--border-strong); border-radius: 20px; padding: 4px 12px; font-size: 12px; font-weight: 500; color: var(--navy); }

/* ===========================
   INSTAGRAM
   =========================== */
.insta-section { padding: 100px 5vw; background: var(--white); }
.insta-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 44px; flex-wrap: wrap; gap: 16px; }
.insta-follow-btn { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; color: var(--navy); text-decoration: none; border: 1px solid var(--border-strong); padding: 10px 18px; border-radius: 6px; transition: background 0.2s; }
.insta-follow-btn:hover { background: var(--cream); }
.insta-follow-btn svg { color: #E1306C; }
.reels-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.reel-item { aspect-ratio: 9/16; border-radius: 12px; overflow: hidden; position: relative; background: var(--cream-dark); cursor: pointer; }
.reel-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.reel-item:hover img { transform: scale(1.04); }
.reel-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(12,27,51,0.6) 0%, transparent 50%); display: flex; align-items: flex-end; padding: 16px; }
.reel-caption { font-size: 13px; color: var(--white); line-height: 1.4; }
.reel-placeholder { aspect-ratio: 9/16; border-radius: 12px; background: var(--cream); overflow: hidden; position: relative; }
.reel-shimmer { position: absolute; inset: 0; background: linear-gradient(90deg, transparent 0%, rgba(200,168,75,0.1) 50%, transparent 100%); background-size: 200% 100%; animation: shimmer 1.5s infinite; }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
.insta-note { margin-top: 20px; font-size: 13px; color: var(--muted); text-align: center; }
.insta-note code { background: var(--cream); padding: 2px 6px; border-radius: 4px; font-size: 12px; }

/* ===========================
   CTA BAND
   =========================== */
.cta-band { padding: 80px 5vw; background: var(--navy); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-inner h2 { font-family: 'Playfair Display', serif; font-size: clamp(26px, 3vw, 40px); font-weight: 800; color: var(--white); margin-bottom: 8px; }
.cta-inner p { font-size: 16px; color: rgba(253,252,250,0.55); }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===========================
   FOOTER
   =========================== */
footer { background: #070E1C; padding: 48px 5vw 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-logo { display: flex; align-items: center; justify-content: center; }
.footer-logo img { height: 168px; width: auto; filter: brightness(0) invert(1); }
.footer-nav { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-nav a { font-size: 13px; color: rgba(253,252,250,0.4); text-decoration: none; transition: color 0.2s; }
.footer-nav a:hover { color: rgba(253,252,250,0.8); }
.footer-contact { display: flex; flex-direction: column; gap: 4px; align-items: flex-end; }
.footer-contact a { font-size: 13px; color: rgba(253,252,250,0.4); text-decoration: none; transition: color 0.2s; }
.footer-contact a:hover { color: var(--gold-light); }
.footer-bottom { padding: 16px 0; font-size: 12px; color: rgba(253,252,250,0.2); text-align: center; }

/* ===========================
   PAGE HERO
   =========================== */
.page-hero { background: var(--navy); padding: 140px 5vw 80px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(200,168,75,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(200,168,75,0.04) 1px, transparent 1px); background-size: 60px 60px; pointer-events: none; }
.page-title { font-family: 'Playfair Display', serif; font-size: clamp(38px, 5vw, 64px); font-weight: 900; line-height: 1.08; color: var(--white); margin-bottom: 18px; }
.page-title em { font-style: italic; color: var(--gold-light); }
.page-sub { font-size: 17px; color: rgba(253,252,250,0.6); max-width: 480px; line-height: 1.65; }

/* Full-width photo banner below page hero */
.page-photo-banner { width: 100%; height: 320px; overflow: hidden; position: relative; background: var(--cream-dark); }
.page-photo-banner.tall-banner { height: 420px; }
.page-photo-banner img { width: 100%; height: 100%; object-fit: cover; display: block; }
.page-photo-placeholder { font-size: 13px; }

/* ===========================
   PRICING
   =========================== */
.pricing-section { padding: 80px 5vw 60px; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.price-card { border: 1px solid var(--border-strong); border-radius: 14px; padding: 32px 26px; background: var(--white); transition: box-shadow 0.22s, transform 0.22s; }
.price-card:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(12,27,51,0.08); }
.price-card.featured { background: var(--navy); border-color: var(--navy); }
.price-badge { display: inline-block; font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; background: var(--gold-pale); color: #7A6120; padding: 4px 10px; border-radius: 4px; margin-bottom: 12px; }
.price-card.featured .price-badge { background: rgba(200,168,75,0.18); color: var(--gold-light); }
.price-name { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 14px; }
.price-card.featured .price-name { color: var(--white); }
.price-amount { font-family: 'Playfair Display', serif; font-size: 46px; font-weight: 900; color: var(--navy); line-height: 1; }
.price-card.featured .price-amount { color: var(--gold-light); }
.price-unit { font-size: 13px; color: var(--muted); margin-bottom: 22px; margin-top: 4px; }
.price-card.featured .price-unit { color: rgba(253,252,250,0.45); }
.price-desc { font-size: 14px; color: var(--muted); margin-bottom: 18px; line-height: 1.6; }
.price-card.featured .price-desc { color: rgba(253,252,250,0.55); }
.price-features { list-style: none; font-size: 14px; line-height: 2.1; color: var(--muted); }
.price-card.featured .price-features { color: rgba(253,252,250,0.65); }
.price-features li::before { content: '✓  '; color: var(--gold); font-weight: 700; }
.price-skeleton { border-radius: 14px; height: 320px; background: linear-gradient(90deg, var(--cream) 0%, var(--cream-dark) 50%, var(--cream) 100%); background-size: 200% 100%; animation: shimmer 1.4s infinite; }
.featured-skeleton { background: linear-gradient(90deg, #1A2E4A 0%, #243D5C 50%, #1A2E4A 100%); background-size: 200% 100%; }
.pricing-note { text-align: center; font-size: 13px; color: var(--muted); margin-top: 24px; }
.pricing-note code { background: var(--cream); padding: 2px 6px; border-radius: 4px; font-size: 12px; }

.faq-section { padding: 80px 5vw 100px; background: var(--cream); }
.faq-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 48px; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 26px 24px; }
.faq-item h4 { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.faq-item p { font-size: 14px; color: var(--muted); line-height: 1.65; }
.faq-item a { color: var(--gold); text-decoration: none; }

/* ===========================
   BOOK PAGE
   =========================== */
.book-section { padding: 60px 5vw 100px; }
.book-layout { display: grid; grid-template-columns: 280px 1fr; gap: 40px; align-items: start; max-width: 980px; margin: 0 auto; }
.sidebar-card { background: var(--cream); border: 1px solid var(--border-strong); border-radius: 14px; padding: 28px 22px; margin-bottom: 20px; }
.sidebar-card h3 { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; margin-bottom: 18px; color: var(--navy); }
.sidebar-link { display: flex; align-items: center; gap: 12px; text-decoration: none; padding: 12px 0; border-bottom: 1px solid var(--border); transition: opacity 0.2s; }
.sidebar-link:last-child { border-bottom: none; }
.sidebar-link:hover { opacity: 0.7; }
.sidebar-icon { font-size: 18px; flex-shrink: 0; }
.sidebar-link strong { display: block; font-size: 14px; color: var(--navy); }
.sidebar-link span { font-size: 12px; color: var(--muted); }
.promise-card { background: var(--navy); }
.promise-card h4 { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; color: var(--gold-light); margin-bottom: 16px; }
.promise-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.promise-list li { font-size: 14px; color: rgba(253,252,250,0.7); }
.book-iframe-wrap { background: var(--cream); border: 1px solid var(--border-strong); border-radius: 14px; padding: 24px; }

/* ===========================
   ABOUT PAGE
   =========================== */
.about-section { padding: 80px 5vw 80px; }
.about-grid { display: grid; grid-template-columns: 1fr 360px; gap: 80px; align-items: start; }
.about-lead { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 400; line-height: 1.55; color: var(--navy); margin-bottom: 24px; }
.about-text p { font-size: 16px; color: var(--muted); line-height: 1.75; margin-bottom: 18px; }
.about-inline-photo { height: 260px; border-radius: 14px; overflow: hidden; position: relative; background: var(--cream-dark); margin: 28px 0; }
.about-inline-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-inline-placeholder { font-size: 12px; }
.about-values { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
.value-item { display: flex; align-items: center; gap: 14px; background: var(--cream); border-radius: 10px; padding: 14px 16px; }
.value-icon { font-size: 20px; flex-shrink: 0; }
.value-item strong { display: block; font-size: 14px; font-weight: 600; color: var(--navy); }
.value-item span { font-size: 13px; color: var(--muted); }
.about-stat-stack { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
.about-stat { background: var(--navy); border-radius: 12px; padding: 22px 18px; text-align: center; }
.about-stat-num { display: block; font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 700; color: var(--gold-light); line-height: 1; margin-bottom: 4px; }
.about-stat-label { font-size: 12px; color: rgba(253,252,250,0.45); }
.about-cta-card { background: var(--cream); border: 1px solid var(--border-strong); border-radius: 12px; padding: 24px; text-align: center; }
.about-cta-card p { font-size: 15px; color: var(--muted); margin-bottom: 16px; }
.about-cta-card .btn-primary { display: block; text-align: center; margin-bottom: 12px; }
.about-tel { display: block; font-size: 14px; color: var(--gold); text-decoration: none; font-weight: 500; }

/* Photo gallery strip on about page */
.about-gallery { display: grid; grid-template-columns: repeat(5, 1fr); height: 280px; }
.gallery-photo { overflow: hidden; position: relative; background: var(--cream-dark); }
.gallery-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
.gallery-photo:hover img { transform: scale(1.06); }
.gallery-placeholder { font-size: 11px; color: var(--muted); text-align: center; }

.service-area-section { padding: 80px 5vw 100px; background: var(--cream); }
.area-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 36px; }
.area-tag { background: var(--white); border: 1px solid var(--border-strong); border-radius: 30px; padding: 8px 18px; font-size: 14px; font-weight: 500; color: var(--navy); }

/* ===========================
   SERVICES DETAIL PAGE
   =========================== */
.services-detail-section { padding: 80px 5vw 100px; }
.service-detail-card { display: grid; grid-template-columns: 380px 1fr; gap: 60px; align-items: start; padding: 60px 0; border-bottom: 1px solid var(--border); }
.service-detail-card:last-child { border-bottom: none; }
.service-detail-card.reverse { grid-template-columns: 1fr 380px; }
.service-detail-card.reverse .svc-detail-photo { order: 2; }
.service-detail-card.reverse .svc-detail-body { order: 1; }
.svc-detail-photo { border-radius: 16px; overflow: hidden; height: 300px; background: var(--cream-dark); position: relative; flex-shrink: 0; }
.svc-detail-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.svc-detail-photo-placeholder { font-size: 12px; }
.svc-detail-icon { font-size: 32px; width: 60px; height: 60px; background: var(--gold-pale); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.svc-detail-body h2 { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 800; color: var(--navy); margin-bottom: 14px; }
.svc-detail-body p { font-size: 16px; color: var(--muted); line-height: 1.75; margin-bottom: 22px; }
.svc-features { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 8px; }
.svc-features li { font-size: 14px; color: var(--navy); display: flex; align-items: center; gap: 8px; }
.svc-features li::before { content: '✓'; color: var(--gold); font-weight: 700; font-size: 14px; }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .service-detail-card,
  .service-detail-card.reverse { grid-template-columns: 1fr; }
  .service-detail-card.reverse .svc-detail-photo,
  .service-detail-card.reverse .svc-detail-body { order: unset; }
  .svc-detail-photo { height: 240px; }
  .area-checker-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 110px; }
  .hero-visual { display: none; }
  .steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); }
  .about-grid { grid-template-columns: 1fr; }
  .book-layout { grid-template-columns: 1fr; }
  .photo-strip { grid-template-columns: repeat(2, 1fr); height: auto; }
  .strip-photo { height: 180px; }
  .about-gallery { grid-template-columns: repeat(3, 1fr); }
  .about-gallery .gallery-photo:nth-child(n+4) { display: none; }
  .reels-grid { grid-template-columns: repeat(2, 1fr); }
  .reels-grid .reel-placeholder:last-child { display: none; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .trust-bar { gap: 18px; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-contact { align-items: flex-start; }
  .photo-strip { grid-template-columns: repeat(2, 1fr); }
  .strip-photo { height: 140px; }
  .about-gallery { grid-template-columns: repeat(2, 1fr); }
  .about-gallery .gallery-photo:nth-child(n+3) { display: none; }
  .page-photo-banner { height: 200px; }
  .page-photo-banner.tall-banner { height: 260px; }
}
