/* ── Franklin Deck Pros — Styles ─────────────────────────────────────── */
:root {
  --navy:      #1B2A3B;
  --navy-dk:   #0F1A26;
  --gold:      #C9A84C;
  --gold-lt:   #E2C06A;
  --cream:     #FAF8F4;
  --warm-white:#FFFEF9;
  --charcoal:  #2A2A2A;
  --mid-gray:  #666;
  --light-gray:#E8E4DC;
  --shadow:    0 4px 24px rgba(0,0,0,.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.16);
  --radius:    8px;
  --transition:.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Source Sans 3', sans-serif; color: var(--charcoal); background: var(--warm-white); line-height: 1.65; font-size: 16px; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── TYPOGRAPHY ─────────────────────────────────────────────────────── */
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.2; color: var(--navy-dk); }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
p  { margin-bottom: 1rem; color: #444; }

.section-label { font-size: .8rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: .5rem; }
.section-title { margin-bottom: 1rem; }
.section-subtitle { color: var(--mid-gray); max-width: 620px; }
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ── LAYOUT ─────────────────────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-sm { padding: 56px 0; }

/* ── TOP BAR ────────────────────────────────────────────────────────── */
.top-bar { background: var(--navy-dk); color: #aaa; font-size: .82rem; padding: 7px 0; }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px; }
.top-bar a { color: var(--gold-lt); }
.top-bar a:hover { color: #fff; }

/* ── HEADER ─────────────────────────────────────────────────────────── */
header { background: #fff; position: sticky; top: 0; z-index: 999; box-shadow: 0 2px 12px rgba(0,0,0,.08); }
nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon { width: 48px; height: 48px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; }
.logo-text .brand { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: var(--navy-dk); }
.logo-text .tagline { font-size: .72rem; color: var(--mid-gray); letter-spacing: .05em; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: .92rem; font-weight: 600; color: var(--charcoal); transition: color var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-cta { background: var(--navy) !important; color: #fff !important; padding: 10px 22px; border-radius: var(--radius); transition: background var(--transition) !important; }
.nav-cta:hover { background: var(--navy-dk) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 26px; height: 2px; background: var(--charcoal); border-radius: 2px; }

/* ── HERO ───────────────────────────────────────────────────────────── */
.hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: url('images/hero.jpg') center/cover no-repeat; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.7) 0%, rgba(0,0,0,.2) 50%, rgba(0,0,0,0) 100%); }
.hero-content { position: relative; z-index: 2; padding: 0 0 56px; max-width: 680px; }
.hero-content .section-label { color: var(--gold-lt); }
.hero-content h1 { color: #fff; margin-bottom: 1rem; }
.hero-content .subtitle { color: rgba(255,255,255,.88); font-size: 1.15rem; margin-bottom: 2rem; }
.btn-group { display: flex; gap: 14px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: var(--radius); font-weight: 700; font-size: .95rem; cursor: pointer; transition: all var(--transition); border: 2px solid transparent; }
.btn-primary { background: var(--gold); color: #fff; }
.btn-primary:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,168,76,.4); }
.btn-outline { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.7); }
.btn-outline:hover { background: rgba(255,255,255,.22); border-color: #fff; }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-dk); transform: translateY(-2px); }
.hero-badges { position: relative; z-index: 2; margin-top: 1.5rem; display: flex; gap: 24px; flex-wrap: wrap; padding-bottom: 56px; }
.hero-badge { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.88); font-size: .88rem; }

/* ── INTRO STRIP ────────────────────────────────────────────────────── */
.intro-strip { background: var(--navy); color: #fff; padding: 28px 0; }
.intro-strip .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.intro-stat .number { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--gold-lt); display: block; }
.intro-stat .label { font-size: .82rem; color: rgba(255,255,255,.65); }

/* ── ABOUT ──────────────────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img { width: 100%; height: 460px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.about-quote { border-left: 3px solid var(--gold); padding-left: 16px; margin: 1.5rem 0; font-style: italic; color: var(--navy); font-size: 1.05rem; }

/* ── SERVICES ───────────────────────────────────────────────────────── */
.services { background: var(--cream); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 3rem; }
.service-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card-img { height: 200px; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-body { padding: 24px; }
.service-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.service-card p { font-size: .9rem; color: var(--mid-gray); margin-bottom: 0; }
.service-icon { font-size: 1.5rem; margin-bottom: 10px; }

/* ── WHY CHOOSE US ──────────────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 3rem; }
.why-item { display: flex; gap: 16px; padding: 24px; background: var(--cream); border-radius: var(--radius); }
.why-icon { width: 48px; height: 48px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.why-item h4 { margin-bottom: 4px; font-size: 1rem; }
.why-item p { font-size: .88rem; color: var(--mid-gray); margin: 0; }

/* ── PROCESS ────────────────────────────────────────────────────────── */
.process { background: var(--navy); }
.process .section-label { color: var(--gold-lt); }
.process .section-title { color: #fff; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 3rem; }
.process-step { text-align: center; }
.step-num { width: 56px; height: 56px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: #fff; margin: 0 auto 1rem; }
.process-step h4 { color: #fff; font-size: 1rem; margin-bottom: .5rem; }
.process-step p { color: rgba(255,255,255,.65); font-size: .88rem; margin: 0; }

/* ── GALLERY ────────────────────────────────────────────────────────── */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(2, 240px); gap: 12px; margin-top: 2.5rem; }
.gallery-item { overflow: hidden; border-radius: var(--radius); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item.span-2 { grid-column: span 2; }

/* ── TESTIMONIALS ───────────────────────────────────────────────────── */
.testimonials { background: var(--cream); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 3rem; }
.testimonial-card { background: #fff; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 12px; }
.testimonial-card p { font-style: italic; font-size: .95rem; color: #555; }
.reviewer { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.reviewer-avatar { width: 40px; height: 40px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-weight: 700; color: var(--gold-lt); font-size: 1rem; }
.reviewer-name { font-weight: 700; font-size: .9rem; }
.reviewer-loc { font-size: .78rem; color: var(--mid-gray); }

/* ── CTA BAND ───────────────────────────────────────────────────────── */
.cta-band { background: var(--gold); padding: 64px 0; text-align: center; }
.cta-band h2 { color: #fff; margin-bottom: .75rem; }
.cta-band p  { color: rgba(255,255,255,.9); margin-bottom: 2rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { background: var(--cream); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.8); }
.btn-outline-white:hover { background: rgba(255,255,255,.15); }

/* ── SERVICE AREA ───────────────────────────────────────────────────── */
.area-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 2rem; }
.area-tag { background: var(--cream); border: 1px solid var(--light-gray); border-radius: 4px; padding: 8px 12px; font-size: .85rem; text-align: center; }

/* ── FOOTER ─────────────────────────────────────────────────────────── */
footer { background: var(--navy-dk); color: rgba(255,255,255,.65); padding: 56px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand .brand { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: #fff; }
.footer-brand p { font-size: .88rem; margin-top: .75rem; color: rgba(255,255,255,.5); }
footer h4 { color: #fff; font-size: .95rem; margin-bottom: 1rem; font-family: 'Source Sans 3', sans-serif; font-weight: 700; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: .88rem; color: rgba(255,255,255,.55); transition: color var(--transition); }
.footer-links a:hover { color: var(--gold-lt); }
.footer-contact p { font-size: .88rem; margin-bottom: 8px; }
.footer-contact a { color: var(--gold-lt); }
.footer-bottom { padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; font-size: .8rem; }

/* ── INNER PAGES ────────────────────────────────────────────────────── */
.page-hero { background: linear-gradient(135deg, var(--navy-dk) 0%, var(--navy) 100%); padding: 80px 0 60px; text-align: center; color: #fff; }
.page-hero h1 { color: #fff; margin-bottom: .5rem; }
.page-hero p { color: rgba(255,255,255,.75); }
.breadcrumb { font-size: .82rem; color: rgba(255,255,255,.45); margin-bottom: .75rem; }
.breadcrumb a { color: var(--gold-lt); }
.service-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; padding: 56px 0; border-bottom: 1px solid var(--light-gray); }
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse .service-detail-img { order: 2; }
.service-detail.reverse .service-detail-content { order: 1; }
.service-detail-img img { width: 100%; height: 360px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.check-list { display: flex; flex-direction: column; gap: 10px; margin: 1.25rem 0; }
.check-item { display: flex; align-items: center; gap: 10px; font-size: .92rem; }
.check-item::before { content: '✓'; color: var(--gold); font-weight: 700; font-size: 1.1rem; flex-shrink: 0; }

/* ── CONTACT ────────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; margin-top: 3rem; }
.contact-form-wrap { background: #fff; border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 1.5px solid #ddd; border-radius: var(--radius); font-size: .95rem; font-family: 'Source Sans 3', sans-serif; transition: border-color var(--transition); background: #fff; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--navy); }
.form-group textarea { height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-info-box { background: var(--cream); border-radius: var(--radius); padding: 24px; margin-bottom: 16px; }
.contact-info-box h4 { margin-bottom: 12px; }
.info-row { display: flex; gap: 12px; margin-bottom: 10px; align-items: flex-start; }
.info-row .detail { font-size: .9rem; }
.info-row .detail strong { display: block; }
.info-row .detail a { color: var(--navy); font-weight: 600; }

/* ── COST GUIDE ─────────────────────────────────────────────────────── */
.cost-table { width: 100%; border-collapse: collapse; margin: 2rem 0; }
.cost-table th { background: var(--navy); color: #fff; padding: 12px 16px; text-align: left; font-weight: 600; }
.cost-table td { padding: 12px 16px; border-bottom: 1px solid var(--light-gray); font-size: .92rem; }
.cost-table tr:nth-child(even) td { background: var(--cream); }
.cost-factor { background: #fff; border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); margin-bottom: 16px; }
.cost-factor h4 { margin-bottom: 6px; color: var(--navy); }
.cost-factor p { font-size: .9rem; color: var(--mid-gray); margin: 0; }

/* ── THANK YOU ──────────────────────────────────────────────────────── */
.thankyou-hero { min-height: 80vh; display: flex; align-items: center; justify-content: center; text-align: center; background: var(--cream); }
.thankyou-box { max-width: 540px; padding: 40px; }
.check-circle { width: 80px; height: 80px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: #fff; margin: 0 auto 1.5rem; }

/* ── MOBILE ─────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero { min-height: unset !important; height: 220px !important; max-height: 220px !important; overflow: hidden; }
  .hero-content { padding: 0 0 12px; }
  .hero-content .section-label { font-size: .65rem; }
  .hero-content h1 { font-size: 1.3rem; }
  .hero-badges { display: none; }
  .hamburger { display: flex; }
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column; gap: 0; padding: 16px 0; box-shadow: 0 8px 24px rgba(0,0,0,.12); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 24px; width: 100%; }
  header { position: relative; }
  .intro-strip .container { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-img { height: 260px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item.span-2 { grid-column: span 1; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail.reverse .service-detail-img { order: 0; }
  .service-detail.reverse .service-detail-content { order: 0; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .intro-strip .container { grid-template-columns: 1fr; }
}
