:root {
  --fccl-navy: #0d1b2a;
  --fccl-navy-2: #13283d;
  --fccl-evergreen: #173c33;
  --fccl-evergreen-2: #225347;
  --fccl-gold: #d6ad60;
  --fccl-gold-light: #f0d79d;
  --fccl-ivory: #f8f6f1;
  --fccl-paper: #fffdf8;
  --fccl-ink: #18202a;
  --fccl-muted: #66707b;
  --fccl-line: rgba(13, 27, 42, 0.12);
  --fccl-white: #fff;
  --fccl-shadow: 0 24px 70px rgba(13, 27, 42, 0.14);
  --fccl-shadow-soft: 0 14px 36px rgba(13, 27, 42, 0.09);
  --fccl-radius: 28px;
  --fccl-radius-sm: 18px;
  --fccl-container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.fccl-site {
  margin: 0;
  color: var(--fccl-ink);
  background: var(--fccl-paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.admin-bar .fccl-header { top: 32px; }
@media (max-width: 782px) { body.admin-bar .fccl-header { top: 46px; } }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--fccl-gold); color: var(--fccl-navy); }
.screen-reader-text {
  border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%); height: 1px; margin: -1px;
  overflow: hidden; padding: 0; position: absolute; width: 1px; word-wrap: normal !important;
}
.fccl-skip-link {
  position: fixed; left: 16px; top: -100px; z-index: 99999; padding: 12px 18px; background: #fff;
  color: var(--fccl-navy); border-radius: 8px; box-shadow: var(--fccl-shadow-soft); text-decoration: none;
}
.fccl-skip-link:focus { top: 16px; }
.fccl-container { width: min(calc(100% - 40px), var(--fccl-container)); margin-inline: auto; }
.fccl-page-shell { min-height: 100vh; overflow: clip; }

/* Top bar + header */
.fccl-topbar { background: var(--fccl-evergreen); color: rgba(255,255,255,.9); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.fccl-topbar-inner { min-height: 35px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.fccl-topbar a { color: #fff; text-decoration: none; font-weight: 800; letter-spacing: .05em; }
.fccl-header {
  position: sticky; top: 0; z-index: 1000; background: rgba(255,253,248,.94); border-bottom: 1px solid rgba(13,27,42,.08);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); transition: box-shadow .25s ease, background .25s ease;
}
.fccl-header.is-scrolled { box-shadow: 0 10px 35px rgba(13,27,42,.08); background: rgba(255,253,248,.98); }
.fccl-header-inner { min-height: 84px; display: flex; align-items: center; gap: 28px; }
.fccl-brand { display: inline-flex; align-items: center; flex: 0 0 auto; text-decoration: none; }
.fccl-brand img, .fccl-brand .custom-logo { width: 224px; max-height: 68px; object-fit: contain; }
.fccl-brand .custom-logo-link { display: block; }
.fccl-nav { margin-left: auto; }
.fccl-nav-list { list-style: none; padding: 0; margin: 0; display: flex; align-items: center; gap: 5px; }
.fccl-nav-list li { position: relative; }
.fccl-nav-list a {
  display: inline-flex; align-items: center; padding: 12px 13px; text-decoration: none; color: #25313d; font-size: 14px; font-weight: 750;
  border-radius: 999px; transition: color .2s ease, background .2s ease;
}
.fccl-nav-list a:hover, .fccl-nav-list a:focus-visible { color: var(--fccl-evergreen); background: rgba(23,60,51,.07); outline: none; }
.fccl-nav-list .sub-menu {
  position: absolute; min-width: 220px; left: 0; top: calc(100% + 12px); list-style: none; margin: 0; padding: 9px;
  background: #fff; border: 1px solid var(--fccl-line); border-radius: 16px; box-shadow: var(--fccl-shadow-soft); opacity: 0; visibility: hidden;
  transform: translateY(8px); transition: .2s ease;
}
.fccl-nav-list li:hover > .sub-menu, .fccl-nav-list li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.fccl-nav-list .sub-menu a { display: block; border-radius: 10px; }
.fccl-menu-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--fccl-line); background: #fff; border-radius: 14px; padding: 11px; }
.fccl-menu-toggle > span:not(.screen-reader-text) { display: block; height: 2px; background: var(--fccl-navy); margin: 5px 0; transition: transform .2s ease, opacity .2s ease; }
.fccl-menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.fccl-menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
.fccl-menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Shared buttons + headings */
.fccl-button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 0 23px; border-radius: 999px;
  border: 1px solid var(--fccl-gold); background: var(--fccl-gold); color: var(--fccl-navy); text-decoration: none; font-weight: 850; font-size: 14px;
  letter-spacing: .01em; box-shadow: 0 10px 26px rgba(214,173,96,.24); transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.fccl-button:hover, .fccl-button:focus-visible { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(214,173,96,.32); outline: none; background: var(--fccl-gold-light); }
.fccl-button-small { min-height: 44px; padding: 0 18px; font-size: 13px; }
.fccl-button-dark { background: var(--fccl-evergreen); border-color: var(--fccl-evergreen); color: #fff; box-shadow: 0 12px 30px rgba(23,60,51,.18); }
.fccl-button-dark:hover, .fccl-button-dark:focus-visible { background: var(--fccl-evergreen-2); }
.fccl-button-light { background: #fff; border-color: #fff; color: var(--fccl-navy); box-shadow: none; }
.fccl-button-light:hover, .fccl-button-light:focus-visible { background: var(--fccl-ivory); }
.fccl-button-ghost, .fccl-button-outline-light { background: transparent; border-color: rgba(255,255,255,.55); color: #fff; box-shadow: none; }
.fccl-button-ghost:hover, .fccl-button-outline-light:hover { background: rgba(255,255,255,.1); }
.fccl-text-link { color: #fff; font-size: 14px; font-weight: 800; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.45); padding-bottom: 2px; }
.fccl-text-link-dark { color: var(--fccl-evergreen); border-bottom-color: rgba(23,60,51,.35); }
.fccl-kicker { margin: 0 0 16px; color: var(--fccl-evergreen); font-size: 12px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; display: flex; gap: 10px; align-items: center; }
.fccl-kicker > span { width: 28px; height: 1px; background: var(--fccl-gold); }
.fccl-kicker-light { color: var(--fccl-gold-light); }
.fccl-section { padding: 104px 0; }
.fccl-section-heading { max-width: 760px; margin-bottom: 44px; }
.fccl-heading-center { text-align: center; margin-inline: auto; }
.fccl-heading-center .fccl-kicker { justify-content: center; }
.fccl-section-heading h2, .fccl-split-copy h2, .fccl-area-grid h2, .fccl-faq-heading h2, .fccl-final-inner h2, .fccl-inner-hero h1 {
  margin: 0; color: var(--fccl-navy); font-family: Georgia, "Times New Roman", serif; font-weight: 700; line-height: 1.02; letter-spacing: -.035em;
}
.fccl-section-heading h2, .fccl-split-copy h2, .fccl-area-grid h2, .fccl-faq-heading h2 { font-size: clamp(36px, 5vw, 58px); }
.fccl-section-heading > p:last-child { margin: 18px auto 0; color: var(--fccl-muted); max-width: 690px; font-size: 17px; }

/* Hero */
.fccl-hero { position: relative; min-height: 690px; display: flex; align-items: center; padding: 82px 0 94px; color: #fff; background: linear-gradient(135deg, #0d1b2a 0%, #122b35 48%, #173c33 100%); overflow: hidden; }
.fccl-hero::before {
  content: ""; position: absolute; inset: 0; opacity: .08; background-image: linear-gradient(rgba(255,255,255,.22) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.22) 1px, transparent 1px); background-size: 58px 58px;
}
.fccl-hero-glow { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.fccl-hero-glow-one { width: 530px; height: 530px; right: -220px; top: -230px; background: radial-gradient(circle, rgba(214,173,96,.27), rgba(214,173,96,0) 68%); }
.fccl-hero-glow-two { width: 470px; height: 470px; left: -280px; bottom: -250px; background: radial-gradient(circle, rgba(80,150,125,.22), rgba(80,150,125,0) 68%); }
.fccl-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); gap: 70px; align-items: center; }
.fccl-hero .fccl-kicker { color: var(--fccl-gold-light); }
.fccl-hero h1 { margin: 0; max-width: 680px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(48px, 6vw, 76px); line-height: .98; letter-spacing: -.045em; color: #fff; }
.fccl-hero-subtitle { margin: 18px 0 0; color: var(--fccl-gold-light); font-size: clamp(19px, 2vw, 26px); font-weight: 700; }
.fccl-hero-text { max-width: 650px; margin: 22px 0 0; color: rgba(255,255,255,.78); font-size: 17px; }
.fccl-hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; margin-top: 32px; }
.fccl-trust-row { display: flex; flex-wrap: wrap; gap: 12px 20px; margin-top: 34px; color: rgba(255,255,255,.75); font-size: 12px; font-weight: 750; text-transform: uppercase; letter-spacing: .09em; }
.fccl-trust-row span { display: inline-flex; align-items: center; gap: 8px; }
.fccl-trust-row span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--fccl-gold); box-shadow: 0 0 0 4px rgba(214,173,96,.12); }
.fccl-hero-visual { position: relative; padding: 26px 0 35px 36px; }
.fccl-hero-image-frame { position: relative; border-radius: 42px 10px 42px 10px; overflow: hidden; min-height: 530px; box-shadow: 0 35px 80px rgba(0,0,0,.35); border: 1px solid rgba(255,255,255,.12); }
.fccl-hero-image-frame::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(13,27,42,.02), rgba(13,27,42,.26)); }
.fccl-hero-image-frame img { width: 100%; height: 560px; object-fit: cover; }
.fccl-hero-visual::before { content: ""; position: absolute; left: 0; top: 0; width: 120px; height: 120px; border-left: 1px solid rgba(214,173,96,.75); border-top: 1px solid rgba(214,173,96,.75); }
.fccl-hero-badge { position: absolute; left: -2px; bottom: 0; z-index: 3; min-width: 260px; padding: 19px 22px; background: var(--fccl-paper); color: var(--fccl-navy); border-radius: 6px 20px 6px 20px; box-shadow: var(--fccl-shadow); }
.fccl-hero-badge strong, .fccl-hero-badge span { display: block; }
.fccl-hero-badge strong { font-family: Georgia, "Times New Roman", serif; font-size: 22px; }
.fccl-hero-badge span { color: var(--fccl-muted); margin-top: 3px; font-size: 12px; font-weight: 700; }
.fccl-hero-bottom-line { position: absolute; bottom: 0; left: 0; width: 100%; height: 5px; background: linear-gradient(90deg, var(--fccl-gold), transparent 33%, var(--fccl-gold) 70%, transparent); opacity: .7; }

/* Services */
.fccl-services { background: var(--fccl-ivory); }
.fccl-service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.fccl-service-card { position: relative; min-height: 310px; padding: 32px 27px 28px; background: #fff; border: 1px solid rgba(13,27,42,.08); border-radius: 22px; overflow: hidden; box-shadow: 0 10px 30px rgba(13,27,42,.04); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.fccl-service-card:hover { transform: translateY(-8px); box-shadow: var(--fccl-shadow-soft); border-color: rgba(214,173,96,.45); }
.fccl-service-card::after { content: ""; position: absolute; width: 160px; height: 160px; right: -90px; bottom: -90px; border-radius: 50%; background: radial-gradient(circle, rgba(214,173,96,.18), rgba(214,173,96,0) 70%); }
.fccl-service-number { position: absolute; right: 22px; top: 20px; color: rgba(13,27,42,.12); font-family: Georgia, serif; font-size: 42px; line-height: 1; font-weight: 700; }
.fccl-service-icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 16px; background: var(--fccl-evergreen); color: var(--fccl-gold-light); font-size: 22px; }
.fccl-service-card h3 { margin: 24px 0 11px; font-family: Georgia, serif; font-size: 28px; color: var(--fccl-navy); }
.fccl-service-card p { margin: 0; color: var(--fccl-muted); font-size: 14px; }

/* Split sections */
.fccl-custom-lighting, .fccl-commercial { background: #fff; }
.fccl-residential { background: var(--fccl-ivory); }
.fccl-split-grid { display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(0, .97fr); gap: 78px; align-items: center; }
.fccl-split-reverse { grid-template-columns: minmax(0, .97fr) minmax(0, 1.03fr); }
.fccl-split-copy > p:not(.fccl-kicker) { color: var(--fccl-muted); font-size: 16px; margin: 20px 0; }
.fccl-split-copy .fccl-button { margin-top: 12px; }
.fccl-media-stack { position: relative; min-height: 620px; }
.fccl-media-main { width: 78%; height: 510px; object-fit: cover; border-radius: 12px 48px 12px 48px; box-shadow: var(--fccl-shadow); }
.fccl-media-accent { position: absolute; width: 52%; height: 320px; object-fit: cover; right: 0; bottom: 20px; border: 9px solid var(--fccl-paper); border-radius: 34px 8px 34px 8px; box-shadow: var(--fccl-shadow-soft); }
.fccl-media-caption { position: absolute; left: 38px; bottom: 0; width: 260px; padding: 18px 20px; background: var(--fccl-evergreen); color: #fff; border-radius: 6px 18px 6px 18px; box-shadow: var(--fccl-shadow-soft); }
.fccl-media-caption span, .fccl-media-caption strong { display: block; }
.fccl-media-caption span { color: var(--fccl-gold-light); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; font-weight: 850; }
.fccl-media-caption strong { font-family: Georgia, serif; font-size: 20px; margin-top: 4px; line-height: 1.25; }
.fccl-check-list { list-style: none; padding: 0; margin: 28px 0; display: grid; gap: 18px; }
.fccl-check-list li { display: grid; grid-template-columns: 32px 1fr; gap: 14px; align-items: start; }
.fccl-check-list > li > span { width: 30px; height: 30px; border-radius: 50%; background: rgba(23,60,51,.1); color: var(--fccl-evergreen); display: grid; place-items: center; font-weight: 900; }
.fccl-check-list strong { display: block; color: var(--fccl-navy); }
.fccl-check-list p { margin: 2px 0 0; color: var(--fccl-muted); font-size: 14px; }
.fccl-single-media { position: relative; }
.fccl-single-media > img { width: 100%; aspect-ratio: 1.12 / 1; object-fit: cover; border-radius: 46px 12px 46px 12px; box-shadow: var(--fccl-shadow); }
.fccl-corner-card { position: absolute; right: -24px; bottom: 24px; width: min(310px, 70%); padding: 18px 20px; border-radius: 8px 18px 8px 18px; background: var(--fccl-evergreen); color: #fff; box-shadow: var(--fccl-shadow-soft); }
.fccl-corner-card span, .fccl-corner-card strong { display: block; }
.fccl-corner-card span { color: var(--fccl-gold-light); font-size: 11px; text-transform: uppercase; letter-spacing: .13em; font-weight: 850; }
.fccl-corner-card strong { margin-top: 5px; font-family: Georgia, serif; font-size: 19px; line-height: 1.25; }
.fccl-corner-card-gold { background: var(--fccl-gold); color: var(--fccl-navy); }
.fccl-corner-card-gold span { color: rgba(13,27,42,.65); }
.fccl-inline-cta { display: flex; align-items: center; flex-wrap: wrap; gap: 20px; margin-top: 28px; }

/* Feature band */
.fccl-feature-band { background: linear-gradient(135deg, var(--fccl-evergreen), #0f2c2a); color: #fff; }
.fccl-feature-band .fccl-section-heading h2 { color: #fff; }
.fccl-detail-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.16); border-left: 1px solid rgba(255,255,255,.16); }
.fccl-detail-grid article { min-height: 260px; padding: 31px 27px; border-right: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); transition: background .2s ease; }
.fccl-detail-grid article:hover { background: rgba(255,255,255,.05); }
.fccl-detail-mark { color: var(--fccl-gold-light); font-size: 32px; }
.fccl-detail-grid h3 { margin: 48px 0 10px; font-family: Georgia, serif; font-size: 25px; }
.fccl-detail-grid p { margin: 0; color: rgba(255,255,255,.67); font-size: 14px; }

/* Gallery */
.fccl-gallery { background: #fff; }
.fccl-gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 210px; gap: 14px; }
.fccl-gallery-card { position: relative; margin: 0; grid-column: span 4; grid-row: span 2; overflow: hidden; border-radius: 20px; background: var(--fccl-navy); }
.fccl-gallery-card-large { grid-column: span 8; }
.fccl-gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.7,.2,1), filter .4s ease; }
.fccl-gallery-card:hover img { transform: scale(1.05); filter: brightness(.86); }
.fccl-gallery-card figcaption { position: absolute; inset: auto 0 0 0; display: flex; justify-content: space-between; align-items: end; gap: 18px; padding: 50px 18px 18px; background: linear-gradient(transparent, rgba(8,18,27,.8)); color: #fff; }
.fccl-gallery-card figcaption span { font-family: Georgia, serif; font-size: 21px; }
.fccl-gallery-card figcaption button { border: 1px solid rgba(255,255,255,.45); background: rgba(255,255,255,.08); color: #fff; border-radius: 999px; padding: 8px 13px; font-size: 12px; font-weight: 800; }
.fccl-gallery-card figcaption button:hover, .fccl-gallery-card figcaption button:focus-visible { background: #fff; color: var(--fccl-navy); outline: none; }

/* Countdown */
.fccl-countdown-section { padding: 76px 0; background: var(--fccl-navy); color: #fff; }
.fccl-countdown-grid { display: grid; grid-template-columns: 1fr 1.2fr; align-items: center; gap: 70px; }
.fccl-countdown-grid h2 { margin: 0; font-family: Georgia, serif; font-size: clamp(34px, 4vw, 50px); line-height: 1.05; }
.fccl-countdown-grid p:last-child { color: rgba(255,255,255,.65); }
.fccl-countdown { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid rgba(255,255,255,.14); }
.fccl-countdown > div { min-height: 132px; display: grid; place-items: center; align-content: center; border-right: 1px solid rgba(255,255,255,.14); }
.fccl-countdown > div:last-child { border-right: 0; }
.fccl-countdown strong { font-family: Georgia, serif; font-size: clamp(38px, 4vw, 58px); line-height: 1; color: var(--fccl-gold-light); }
.fccl-countdown span { margin-top: 8px; color: rgba(255,255,255,.6); font-size: 10px; text-transform: uppercase; letter-spacing: .14em; font-weight: 800; }

/* Service area */
.fccl-area-section { background: var(--fccl-ivory); }
.fccl-area-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: start; }
.fccl-area-grid > div:first-child > p:not(.fccl-kicker) { color: var(--fccl-muted); margin: 20px 0 26px; }
.fccl-area-list { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--fccl-line); }
.fccl-area-list span { min-height: 65px; display: flex; align-items: center; gap: 16px; border-bottom: 1px solid var(--fccl-line); padding: 10px 16px; font-weight: 750; color: #2c3742; }
.fccl-area-list i { color: var(--fccl-gold); font-family: Georgia, serif; font-style: normal; font-size: 18px; }

/* FAQ */
.fccl-faq-section { background: #fff; }
.fccl-faq-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 80px; align-items: start; }
.fccl-faq-heading { position: sticky; top: 130px; }
.fccl-faq-heading p:not(.fccl-kicker) { color: var(--fccl-muted); margin-top: 20px; }
.fccl-faq-list { border-top: 1px solid var(--fccl-line); }
.fccl-faq-item { border-bottom: 1px solid var(--fccl-line); }
.fccl-faq-item summary { list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 22px; padding: 24px 2px; cursor: pointer; color: var(--fccl-navy); font-weight: 800; }
.fccl-faq-item summary::-webkit-details-marker { display: none; }
.fccl-faq-item summary i { flex: 0 0 34px; width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid var(--fccl-line); border-radius: 50%; color: var(--fccl-evergreen); font-style: normal; transition: transform .2s ease, background .2s ease; }
.fccl-faq-item[open] summary i { transform: rotate(45deg); background: var(--fccl-evergreen); color: #fff; }
.fccl-faq-item > div { padding: 0 55px 24px 2px; }
.fccl-faq-item p { margin: 0; color: var(--fccl-muted); }

/* Final CTA */
.fccl-final-cta { position: relative; min-height: 530px; display: grid; place-items: center; overflow: hidden; color: #fff; }
.fccl-final-bg, .fccl-final-overlay { position: absolute; inset: 0; }
.fccl-final-bg { background-size: cover; background-position: center; transform: scale(1.03); }
.fccl-final-overlay { background: linear-gradient(90deg, rgba(13,27,42,.96), rgba(13,27,42,.77) 48%, rgba(23,60,51,.58)); }
.fccl-final-inner { position: relative; z-index: 2; max-width: 760px; text-align: center; }
.fccl-final-inner .fccl-kicker { justify-content: center; }
.fccl-final-inner h2 { color: #fff; font-size: clamp(42px, 6vw, 66px); }
.fccl-final-inner > p:not(.fccl-kicker) { max-width: 600px; margin: 18px auto 28px; color: rgba(255,255,255,.77); font-size: 17px; }
.fccl-final-inner > div { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }

/* Footer */
.fccl-footer { padding: 74px 0 22px; background: #08131e; color: rgba(255,255,255,.7); }
.fccl-footer-grid { display: grid; grid-template-columns: 1.6fr .8fr .8fr 1.1fr; gap: 58px; }
.fccl-footer-brand img { width: 250px; filter: brightness(1.3); }
.fccl-footer-brand p { max-width: 360px; margin: 18px 0 16px; font-size: 14px; }
.fccl-footer-phone { color: var(--fccl-gold-light); text-decoration: none; font-weight: 850; }
.fccl-footer h2 { margin: 0 0 18px; color: #fff; font-family: Georgia, serif; font-size: 19px; }
.fccl-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.fccl-footer a:not(.fccl-button):not(.fccl-footer-phone) { color: rgba(255,255,255,.67); text-decoration: none; font-size: 14px; }
.fccl-footer a:not(.fccl-button):hover { color: #fff; }
.fccl-footer p { font-size: 14px; }
.fccl-footer-bottom { margin-top: 55px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 20px; font-size: 12px; }
.fccl-mobile-call { display: none; }

/* Lightbox */
.fccl-lightbox[hidden] { display: none; }
.fccl-lightbox { position: fixed; inset: 0; z-index: 9999; display: grid; place-items: center; padding: 30px; }
.fccl-lightbox-backdrop { position: absolute; inset: 0; border: 0; background: rgba(5,13,20,.91); }
.fccl-lightbox-dialog { position: relative; z-index: 2; width: min(1100px, 94vw); max-height: 90vh; display: grid; place-items: center; }
.fccl-lightbox-dialog img { max-width: 100%; max-height: 84vh; border-radius: 12px; box-shadow: 0 30px 90px rgba(0,0,0,.55); }
.fccl-lightbox-close { position: absolute; right: -12px; top: -48px; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; background: rgba(255,255,255,.08); color: #fff; font-size: 26px; }

/* Interior pages */
.fccl-inner-main { min-height: 65vh; background: var(--fccl-paper); }
.fccl-inner-hero { padding: 86px 0 72px; background: linear-gradient(135deg, var(--fccl-navy), var(--fccl-evergreen)); color: #fff; }
.fccl-inner-hero h1 { color: #fff; font-size: clamp(42px, 6vw, 68px); max-width: 930px; }
.fccl-inner-hero .fccl-kicker { color: var(--fccl-gold-light); }
.fccl-content-wrap { padding: 78px 0 105px; }
.fccl-prose { width: min(calc(100% - 40px), 860px); }
.fccl-prose > *:first-child { margin-top: 0; }
.fccl-prose h2, .fccl-prose h3, .fccl-prose h4 { color: var(--fccl-navy); font-family: Georgia, serif; line-height: 1.15; }
.fccl-prose h2 { margin-top: 50px; font-size: 38px; }
.fccl-prose h3 { margin-top: 36px; font-size: 29px; }
.fccl-prose p, .fccl-prose li { color: #4f5963; }
.fccl-prose a { color: var(--fccl-evergreen); font-weight: 750; }
.fccl-prose img { border-radius: 18px; }
.fccl-prose iframe { max-width: 100%; }
.fccl-single-featured { margin: 0 0 38px; }
.fccl-post-grid { padding-top: 70px; padding-bottom: 95px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.fccl-post-card { overflow: hidden; border: 1px solid var(--fccl-line); border-radius: 20px; background: #fff; box-shadow: 0 10px 28px rgba(13,27,42,.05); }
.fccl-post-image { display: block; aspect-ratio: 16 / 10; overflow: hidden; }
.fccl-post-image img { width: 100%; height: 100%; object-fit: cover; }
.fccl-post-card > div { padding: 24px; }
.fccl-post-meta { color: var(--fccl-gold); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; font-weight: 850; }
.fccl-post-card h2 { margin: 9px 0 11px; font-family: Georgia, serif; font-size: 27px; line-height: 1.15; }
.fccl-post-card h2 a { text-decoration: none; }
.fccl-post-card p { color: var(--fccl-muted); font-size: 14px; }
.fccl-error-page { min-height: 65vh; display: grid; place-items: center; text-align: center; padding: 80px 0; background: var(--fccl-ivory); }
.fccl-error-page h1 { margin: 0; color: var(--fccl-navy); font-family: Georgia, serif; font-size: clamp(44px, 7vw, 76px); }
.fccl-error-page p:not(.fccl-kicker) { color: var(--fccl-muted); }
.fccl-error-page > div > div { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

/* Motion */
@media (prefers-reduced-motion: no-preference) {
  .fccl-service-card, .fccl-gallery-card, .fccl-single-media, .fccl-media-stack, .fccl-split-copy { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
  .fccl-in-view { opacity: 1 !important; transform: none !important; }
}

/* Tablet */
@media (max-width: 1080px) {
  .fccl-header-cta { display: none; }
  .fccl-nav-list a { padding-inline: 9px; font-size: 13px; }
  .fccl-hero-grid, .fccl-split-grid, .fccl-split-reverse, .fccl-area-grid, .fccl-faq-layout, .fccl-countdown-grid { gap: 48px; }
  .fccl-hero-grid { grid-template-columns: 1fr 1fr; }
  .fccl-service-grid { grid-template-columns: repeat(2, 1fr); }
  .fccl-detail-grid { grid-template-columns: repeat(2, 1fr); }
  .fccl-footer-grid { grid-template-columns: 1.3fr .7fr .7fr; }
  .fccl-footer-grid > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  body.admin-bar .fccl-header { top: 46px; }
  .fccl-container { width: min(calc(100% - 30px), var(--fccl-container)); }
  .fccl-topbar-inner { min-height: 31px; font-size: 10px; letter-spacing: .08em; }
  .fccl-topbar-inner span { display: none; }
  .fccl-topbar-inner { justify-content: center; }
  .fccl-header-inner { min-height: 72px; }
  .fccl-brand img, .fccl-brand .custom-logo { width: 185px; max-height: 56px; }
  .fccl-menu-toggle { display: block; margin-left: auto; }
  .fccl-nav { position: absolute; left: 15px; right: 15px; top: calc(100% + 8px); padding: 13px; background: #fff; border: 1px solid var(--fccl-line); border-radius: 18px; box-shadow: var(--fccl-shadow); opacity: 0; visibility: hidden; transform: translateY(-6px); transition: .2s ease; }
  .fccl-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .fccl-nav-list { display: grid; gap: 2px; }
  .fccl-nav-list a { width: 100%; padding: 12px 13px; border-radius: 10px; }
  .fccl-nav-list .sub-menu { position: static; min-width: 0; padding: 0 0 0 14px; border: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; }
  .fccl-hero { min-height: auto; padding: 64px 0 72px; }
  .fccl-hero-grid, .fccl-split-grid, .fccl-split-reverse, .fccl-area-grid, .fccl-faq-layout, .fccl-countdown-grid { grid-template-columns: 1fr; }
  .fccl-hero-grid { gap: 48px; }
  .fccl-hero h1 { max-width: 750px; }
  .fccl-hero-visual { padding-left: 22px; max-width: 680px; }
  .fccl-hero-image-frame { min-height: 430px; }
  .fccl-hero-image-frame img { height: 460px; }
  .fccl-section { padding: 78px 0; }
  .fccl-split-grid, .fccl-split-reverse { gap: 50px; }
  .fccl-split-reverse .fccl-split-media { order: -1; }
  .fccl-media-stack { max-width: 680px; }
  .fccl-gallery-grid { grid-auto-rows: 180px; }
  .fccl-gallery-card, .fccl-gallery-card-large { grid-column: span 6; }
  .fccl-countdown-grid { gap: 28px; }
  .fccl-faq-heading { position: static; }
  .fccl-area-list { margin-top: -10px; }
  .fccl-footer-grid { grid-template-columns: repeat(2, 1fr); }
  .fccl-footer-grid > div:last-child { grid-column: auto; }
  .fccl-post-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .fccl-container { width: min(calc(100% - 24px), var(--fccl-container)); }
  .fccl-brand img, .fccl-brand .custom-logo { width: 165px; }
  .fccl-hero { padding-top: 54px; }
  .fccl-hero h1 { font-size: clamp(44px, 14vw, 60px); }
  .fccl-hero-subtitle { font-size: 19px; }
  .fccl-hero-actions { align-items: stretch; flex-direction: column; }
  .fccl-hero-actions .fccl-button { width: 100%; }
  .fccl-hero-actions .fccl-text-link { text-align: center; align-self: center; }
  .fccl-trust-row { gap: 10px 16px; }
  .fccl-hero-visual { padding: 18px 0 28px 15px; }
  .fccl-hero-visual::before { width: 85px; height: 85px; }
  .fccl-hero-image-frame { min-height: 360px; border-radius: 28px 8px 28px 8px; }
  .fccl-hero-image-frame img { height: 380px; }
  .fccl-hero-badge { left: 0; min-width: 0; width: calc(100% - 22px); }
  .fccl-service-grid, .fccl-detail-grid, .fccl-area-list, .fccl-footer-grid, .fccl-post-grid { grid-template-columns: 1fr; }
  .fccl-service-card { min-height: 250px; }
  .fccl-media-stack { min-height: 520px; }
  .fccl-media-main { width: 88%; height: 400px; }
  .fccl-media-accent { width: 58%; height: 250px; border-width: 6px; }
  .fccl-media-caption { left: 12px; width: 230px; }
  .fccl-corner-card { right: 10px; bottom: 10px; }
  .fccl-gallery-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .fccl-gallery-card, .fccl-gallery-card-large { grid-column: auto; grid-row: auto; aspect-ratio: 4 / 3; }
  .fccl-countdown { grid-template-columns: repeat(2, 1fr); }
  .fccl-countdown > div:nth-child(2) { border-right: 0; }
  .fccl-countdown > div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.14); }
  .fccl-final-cta { min-height: 500px; }
  .fccl-final-inner > div { align-items: stretch; flex-direction: column; }
  .fccl-footer-grid { gap: 36px; }
  .fccl-footer-bottom { flex-direction: column; gap: 4px; }
  .fccl-mobile-call { position: fixed; z-index: 980; left: 12px; right: 12px; bottom: 12px; display: flex; align-items: center; justify-content: center; gap: 9px; min-height: 50px; border-radius: 999px; background: var(--fccl-gold); color: var(--fccl-navy); text-decoration: none; font-weight: 900; box-shadow: 0 14px 40px rgba(13,27,42,.25); }
  .fccl-footer { padding-bottom: 88px; }
  .fccl-inner-hero { padding: 64px 0 54px; }
  .fccl-content-wrap { padding: 58px 0 80px; }
  .fccl-prose { width: min(calc(100% - 24px), 860px); }
}

/* Estimate form */
.fccl-estimate-section { background: var(--fccl-ivory); }
.fccl-estimate-grid, .fccl-quote-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 70px; align-items: start; }
.fccl-estimate-copy, .fccl-quote-copy { position: sticky; top: 130px; }
.fccl-estimate-copy h2, .fccl-quote-copy h2 { margin: 0; color: var(--fccl-navy); font-family: Georgia, serif; font-size: clamp(38px, 5vw, 56px); line-height: 1.02; letter-spacing: -.035em; }
.fccl-estimate-copy > p:not(.fccl-kicker), .fccl-quote-copy > p:not(.fccl-kicker) { color: var(--fccl-muted); margin: 20px 0; }
.fccl-estimate-contact, .fccl-quote-contact-card { margin-top: 28px; padding: 20px 22px; border-radius: 18px; background: var(--fccl-evergreen); color: #fff; box-shadow: var(--fccl-shadow-soft); }
.fccl-estimate-contact span, .fccl-quote-contact-card span, .fccl-quote-contact-card small { display: block; }
.fccl-estimate-contact span, .fccl-quote-contact-card span { color: var(--fccl-gold-light); font-size: 11px; text-transform: uppercase; letter-spacing: .14em; font-weight: 850; }
.fccl-estimate-contact a, .fccl-quote-contact-card a { display: inline-block; margin-top: 4px; color: #fff; text-decoration: none; font-family: Georgia, serif; font-size: 28px; font-weight: 700; }
.fccl-quote-contact-card small { margin-top: 9px; color: rgba(255,255,255,.65); }
.fccl-form-shell { padding: 10px; background: #fff; border: 1px solid var(--fccl-line); border-radius: 24px; box-shadow: var(--fccl-shadow); overflow: hidden; }
.fccl-form-shell iframe { display: block; background: #fff; }
.fccl-quote-section { padding: 86px 0 108px; background: var(--fccl-ivory); }

@media (max-width: 860px) {
  .fccl-estimate-grid, .fccl-quote-grid { grid-template-columns: 1fr; gap: 38px; }
  .fccl-estimate-copy, .fccl-quote-copy { position: static; }
}
@media (max-width: 620px) {
  .fccl-form-shell { padding: 4px; border-radius: 16px; }
  .fccl-form-shell iframe { min-height: 720px; }
  .fccl-quote-section { padding: 60px 0 80px; }
}
