/* ==========================================================================
   Nassau Roofing & Remodeling — Core Stylesheet
   Unified, deduplicated design system & components
   ========================================================================== */

:root {
  color-scheme: light;
  --navy: #11263F;
  --navy-deep: #0A1928;
  --navy-mid: #1B334F;
  --gold: #C9A06A;
  --gold-bright: #E4C696;
  --gold-deep: #B8894F;
  --tan-block: #CDA36C;
  --paper: #F4EFE4;
  --paper-deep: #EBE1CB;
  --ink: #16202C;
  --ink-soft: #57606B;
  --ink-faint: #8A8F86;
  --line: rgba(22, 32, 44, 0.13);
  --line-dark: rgba(244, 239, 228, 0.16);
  --serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --sans: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.55;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 700;
  margin: 0;
  text-wrap: balance;
  color: var(--ink);
}

em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-deep);
}

p {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

section {
  position: relative;
}

.wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding-inline: clamp(20px, 5vw, 64px);
}

.on-dark {
  color: var(--paper);
}

.on-dark h1,
.on-dark h2,
.on-dark h3,
.on-dark h4 {
  color: var(--paper);
}

.on-dark em {
  color: var(--gold-bright);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold-deep);
}

.on-dark .eyebrow {
  color: var(--gold-bright);
}

.on-dark .eyebrow::before {
  background: var(--gold-bright);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.9em 1.6em;
  border-radius: 3px;
  font-weight: 600;
  font-size: 0.93rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy-deep);
}

.btn-gold:hover {
  background: var(--gold-bright);
}

.btn-navy {
  background: var(--navy);
  color: var(--paper);
}

.btn-navy:hover {
  background: var(--navy-mid);
}

.btn-ghost-dark {
  border-color: var(--line-dark);
  color: var(--paper);
}

.btn-ghost-dark:hover {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

header {
  position: sticky;
  top: env(safe-area-inset-top, 0px);
  z-index: 50;
  background: var(--navy-deep);
  border-bottom: 1px solid var(--line-dark);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-block: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7em;
}

.badge {
  flex: none;
}

.brand-word {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.18rem;
  line-height: 1;
  color: var(--paper);
}

.brand-word .g {
  color: var(--gold-bright);
}

.brand-word small {
  display: block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.55rem;
  letter-spacing: 0.16em;
  color: rgba(244, 239, 228, 0.55);
  margin-top: 0.4em;
}

nav.links {
  display: flex;
  align-items: center;
  gap: 28px;
}

nav.links a {
  font-size: 0.87rem;
  font-weight: 500;
  color: rgba(244, 239, 228, 0.82);
  transition: color 0.2s;
  white-space: nowrap;
}

nav.links a:hover,
nav.links a.active {
  color: var(--gold-bright);
}

.nav-services.active > a {
  color: var(--gold-bright);
}

.nav-services {
  position: relative;
}

.nav-services > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.nav-services .caret {
  width: 9px;
  height: 9px;
  flex: none;
  transition: transform 0.2s;
}

.nav-services:hover .caret,
.nav-services:focus-within .caret {
  transform: rotate(180deg);
}

.services-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--navy-deep);
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  padding: 10px;
  width: 252px;
  box-shadow: 0 24px 48px -16px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 80;
}

.nav-services:hover .services-menu,
.nav-services:focus-within .services-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(2px);
}

.services-menu a {
  display: block;
  padding: 9px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(244, 239, 228, 0.82);
}

.services-menu a:hover,
.services-menu a.active {
  background: rgba(201, 160, 106, 0.18);
  color: var(--gold-bright);
  font-weight: 600;
}

.services-menu .sm-label {
  padding: 8px 12px 4px;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 239, 228, 0.4);
  display: block;
}

.services-menu .sm-divider {
  height: 1px;
  background: var(--line-dark);
  margin: 6px 6px;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}

.nav-phone {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1rem;
  color: var(--gold-bright);
  white-space: nowrap;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
  background: linear-gradient(165deg, var(--navy-mid), var(--navy) 55%, var(--navy-deep));
  padding-block: clamp(50px, 8vw, 84px) 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.9rem);
  line-height: 1.06;
  margin-top: 18px;
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  color: rgba(244, 239, 228, 0.78);
  max-width: 48ch;
  margin-top: 22px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hero-art-wrap {
  position: relative;
}

.hero-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  box-shadow: 0 40px 80px -30px rgba(3, 7, 15, 0.6);
}

.hero-card svg {
  display: block;
  width: 100%;
  height: auto;
}

.hero-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 900 / 700;
}

.hero-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(10, 17, 29, 0.72);
  backdrop-filter: blur(4px);
  border: 1px solid var(--line-dark);
  border-radius: 3px;
  padding: 0.5em 0.9em;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.hero-rating {
  position: absolute;
  left: 22px;
  bottom: -26px;
  background: var(--paper);
  border-radius: 6px;
  padding: 16px 20px;
  box-shadow: 0 20px 40px -14px rgba(3, 7, 15, 0.4);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-rating .stars {
  color: var(--gold-deep);
  font-size: 0.85rem;
  letter-spacing: 2px;
}

.hero-rating .score {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--ink);
  line-height: 1;
}

.hero-rating .lbl {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  text-transform: uppercase;
}

/* ==========================================================================
   Trust Strip
   ========================================================================== */

.trust-strip {
  background: var(--navy-deep);
  margin-top: 56px;
  border-top: 1px solid var(--line-dark);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-block: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(244, 239, 228, 0.82);
}

.trust-item svg {
  flex: none;
  stroke: var(--gold-bright);
}

/* ==========================================================================
   Section Heads
   ========================================================================== */

.head-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 52px;
}

.head-split h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  margin-top: 14px;
}

.head-split p {
  color: var(--ink-soft);
  font-size: 1.02rem;
  max-width: 46ch;
}

.on-dark .head-split p {
  color: rgba(244, 239, 228, 0.72);
}

/* ==========================================================================
   Services Grid & Cards (Homepage)
   ========================================================================== */

.services {
  padding-block: clamp(70px, 9vw, 110px);
  background: var(--paper);
}

.svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.svc-card {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  aspect-ratio: 6 / 5;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--paper);
}

.svc-card .art {
  position: absolute;
  inset: 0;
}

.svc-card .art svg,
.svc-card .art img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.svc-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 13, 22, 0.92) 0%, rgba(8, 13, 22, 0.42) 46%, rgba(8, 13, 22, 0) 72%);
}

.svc-card .num {
  position: absolute;
  top: 18px;
  left: 20px;
  font-family: var(--serif);
  font-weight: 700;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold-bright);
  z-index: 2;
}

.svc-card .ic {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(244, 239, 228, 0.14);
  border: 1px solid var(--line-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.svc-card .ic svg {
  stroke: var(--paper);
}

.svc-body {
  position: relative;
  z-index: 2;
  padding: 22px 24px 24px;
}

.svc-body h3 {
  color: var(--paper);
  font-size: 1.4rem;
}

.svc-body p {
  font-size: 0.9rem;
  color: rgba(244, 239, 228, 0.8);
  margin-top: 8px;
  max-width: 34ch;
}

.svc-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.svc-tags span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(244, 239, 228, 0.12);
  border: 1px solid var(--line-dark);
  border-radius: 2px;
  padding: 0.4em 0.7em;
}

/* ==========================================================================
   Service Detail Cards (Subpages)
   ========================================================================== */

.rf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 48px;
}

.rf-card {
  background: var(--paper-deep);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 32px;
  position: relative;
}

.rf-card .rf-num {
  font-family: var(--serif);
  font-weight: 700;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold-deep);
}

.rf-card .rf-ic {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}

.rf-card .rf-ic svg {
  stroke: var(--gold-bright);
}

.rf-card h3 {
  margin-top: 18px;
  font-size: 1.25rem;
}

.rf-card p {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.rf-card .rf-more {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.9rem;
}

/* ==========================================================================
   Cost Factors & Budgeting Section (Subpages)
   ========================================================================== */

.factors {
  background: var(--paper);
  padding-block: clamp(70px, 9vw, 110px);
}

.factors-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 48px;
  margin-top: 40px;
}

.factor-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.factor-row .fnum {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--gold-deep);
  line-height: 1.1;
  flex: none;
}

.factor-row h4 {
  font-size: 1.08rem;
  color: var(--ink);
  margin-bottom: 6px;
}

.factor-row p {
  font-size: 0.94rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ==========================================================================
   Why Us Section
   ========================================================================== */

.why {
  background: var(--paper-deep);
  padding-block: clamp(70px, 9vw, 110px);
}

.why-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: center;
}

.why-art {
  position: relative;
}

.why-art .ring {
  position: absolute;
  inset: -24px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.why-art .frame {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px -30px rgba(22, 32, 44, 0.28);
}

.why-art .frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 500 / 560;
}

.why-copy p {
  color: var(--ink-soft);
  font-size: 1.03rem;
  max-width: 56ch;
  margin-top: 18px;
}

.why-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 30px;
  margin-top: 30px;
}

.why-points li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.94rem;
  color: var(--ink);
}

.why-points svg {
  flex: none;
  margin-top: 3px;
  stroke: var(--gold-deep);
}

/* ==========================================================================
   Process Section
   ========================================================================== */

.process {
  background: var(--paper);
  padding-block: clamp(70px, 9vw, 110px);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  top: 29px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: var(--line);
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.step .circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid var(--gold-deep);
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 700;
  color: var(--gold-deep);
  font-size: 1.15rem;
}

.step h4 {
  font-size: 1.08rem;
}

.step p {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* ==========================================================================
   Reviews Section
   ========================================================================== */

.reviews {
  background: var(--navy);
  padding-block: clamp(70px, 9vw, 110px);
}

.review-card {
  background: var(--navy-deep);
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  padding: clamp(30px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: end;
}

.review-quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  color: var(--paper);
  line-height: 1.35;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--line-dark);
}

.review-meta .stars {
  color: var(--gold-bright);
  font-size: 0.85rem;
  letter-spacing: 2px;
}

.review-who b {
  display: block;
  color: var(--paper);
  font-size: 0.95rem;
}

.review-who span {
  font-size: 0.8rem;
  color: rgba(244, 239, 228, 0.6);
}

.review-nav {
  display: flex;
  gap: 10px;
}

.review-nav button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line-dark);
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s;
}

.review-nav button:hover {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
}

.review-nav button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ==========================================================================
   Photo Band
   ========================================================================== */

.photo-band {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 21 / 8;
  margin-top: 56px;
  box-shadow: 0 30px 60px -30px rgba(22, 32, 44, 0.28);
}

.photo-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-band .pb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 13, 22, 0.85) 0%, rgba(8, 13, 22, 0.35) 55%, rgba(8, 13, 22, 0) 100%);
}

.photo-band .pb-text {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  max-width: 380px;
}

.photo-band .pb-text p.eyebrow {
  color: var(--gold-bright);
}

.photo-band .pb-text h3 {
  color: var(--paper);
  font-size: 1.5rem;
  margin-top: 12px;
  line-height: 1.2;
}

.photo-band .pb-text p.pb-sub {
  color: rgba(244, 239, 228, 0.8);
  font-size: 0.92rem;
  margin-top: 10px;
  max-width: 34ch;
}

/* ==========================================================================
   FAQ Accordion (<details>)
   ========================================================================== */

.faq-list {
  margin-top: 8px;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary .chev {
  transition: transform 0.2s;
  flex: none;
  stroke: var(--gold-deep);
}

.faq-item[open] summary .chev {
  transform: rotate(180deg);
}

.faq-item .faq-a {
  padding-bottom: 22px;
  margin-top: -6px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  max-width: 64ch;
}

/* ==========================================================================
   CTA & Form Section
   ========================================================================== */

.cta {
  background: var(--tan-block);
  padding-block: clamp(64px, 8vw, 96px);
}

.cta-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
  align-items: start;
}

.cta-copy h2 {
  color: var(--navy-deep);
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
}

.cta-copy p {
  color: rgba(10, 25, 40, 0.72);
  margin-top: 16px;
  max-width: 40ch;
}

.cta-contacts {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}

.cta-contacts a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--navy-deep);
  font-size: 1rem;
}

.cta-contacts .ic {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(10, 25, 40, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-card {
  background: var(--paper);
  border-radius: 6px;
  padding: clamp(26px, 3vw, 36px);
  box-shadow: 0 30px 60px -30px rgba(10, 25, 40, 0.35);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.74rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 0.75em 0.85em;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--ink);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--gold-deep);
  outline-offset: 1px;
}

.form-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: 18px;
}

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-top: 12px;
}

/* Simple CTA Band (Subpages) */
.cta-band {
  background: var(--tan-block);
  padding-block: clamp(56px, 7vw, 84px);
}

.cta-band-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.cta-band h2 {
  color: var(--navy-deep);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  max-width: 22ch;
}

.cta-band p {
  color: rgba(10, 25, 40, 0.72);
  margin-top: 10px;
  max-width: 52ch;
  font-size: 0.98rem;
}

.cta-band p a {
  font-weight: 700;
  color: var(--navy-deep);
}

/* ==========================================================================
   Story, Values & Service Areas (About Page)
   ========================================================================== */

.story {
  background: var(--paper-deep);
  padding-block: clamp(70px, 9vw, 110px);
}

.story-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: center;
}

.story-art {
  position: relative;
}

.story-art .frame {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px -30px rgba(22, 32, 44, 0.28);
  aspect-ratio: 500 / 560;
}

.story-art .frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-badge {
  position: absolute;
  left: -18px;
  bottom: -22px;
  background: var(--paper);
  border-radius: 6px;
  padding: 14px 18px;
  box-shadow: 0 20px 40px -14px rgba(3, 7, 15, 0.28);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 230px;
}

.story-badge .bic {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(201, 160, 106, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-badge .bic svg {
  stroke: var(--gold-deep);
}

.story-badge b {
  display: block;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.15;
}

.story-badge span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  text-transform: uppercase;
}

.story-copy p {
  color: var(--ink-soft);
  font-size: 1.03rem;
  max-width: 56ch;
  margin-top: 18px;
}

.values {
  background: var(--paper);
  padding-block: clamp(70px, 9vw, 110px);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.value-card {
  background: var(--paper-deep);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 28px 24px;
}

.value-card .vic {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201, 160, 106, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.value-card .vic svg {
  stroke: var(--gold-deep);
}

.value-card h4 {
  font-size: 1.08rem;
}

.value-card p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin-top: 10px;
}

.areas {
  background: var(--paper-deep);
  padding-block: clamp(70px, 9vw, 110px);
}

.areas-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: start;
}

.areas-layout p {
  color: var(--ink-soft);
  font-size: 1.03rem;
  max-width: 52ch;
}

.area-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 30px;
  margin-top: 28px;
}

.area-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-block: 14px;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
}

.area-item svg {
  stroke: var(--gold-deep);
  flex: none;
}

.areas-cta {
  margin-top: 32px;
}

/* ==========================================================================
   Footer
   ========================================================================== */

footer {
  background: var(--navy-deep);
  color: rgba(244, 239, 228, 0.7);
  padding-block: 52px 26px;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr;
  gap: 40px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line-dark);
}

.foot-grid h5 {
  font-family: var(--sans);
  font-size: 0.76rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 14px;
}

.foot-grid ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 0.9rem;
}

.foot-grid ul a:hover {
  color: var(--gold-bright);
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 20px;
  font-size: 0.8rem;
}

/* ==========================================================================
   Animations
   ========================================================================== */

.rise {
  animation: rise 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.rise-1 { animation-delay: 0.05s; }
.rise-2 { animation-delay: 0.15s; }
.rise-3 { animation-delay: 0.25s; }
.rise-4 { animation-delay: 0.35s; }

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rise {
    animation: none;
  }
}


/* ==========================================================================
   Mobile Navigation Drawer & Toggle
   ========================================================================== */

.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line-dark);
  border-radius: 4px;
  color: var(--paper);
  padding: 8px 10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s;
  flex-shrink: 0;
}

.mobile-toggle:hover {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
}

.mobile-toggle .ic-close {
  display: none;
}

body.nav-open .mobile-toggle .ic-menu {
  display: none;
}

body.nav-open .mobile-toggle .ic-close {
  display: block;
}

.mobile-drawer {
  display: none;
  background: var(--navy-deep);
  border-bottom: 1px solid var(--line-dark);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.25s ease;
  opacity: 0;
}

body.nav-open .mobile-drawer {
  max-height: 85vh;
  overflow-y: auto;
  opacity: 1;
}

.mobile-drawer-inner {
  padding-block: 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mob-link {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--paper);
  padding-block: 6px;
  border-bottom: 1px solid var(--line-dark);
  display: block;
}

.mob-link:hover,
.mob-link.active {
  color: var(--gold-bright);
}

.mob-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-block: 4px;
  border-bottom: 1px solid var(--line-dark);
}

.mob-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 239, 228, 0.45);
  margin-top: 4px;
}

.mob-sublink {
  font-size: 0.95rem;
  color: rgba(244, 239, 228, 0.85);
  padding: 6px 12px;
  border-radius: 4px;
  display: block;
}

.mob-sublink:hover,
.mob-sublink.active {
  color: var(--gold-bright);
  background: rgba(201, 160, 106, 0.15);
}

.mob-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 14px;
}

.mob-phone {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-bright);
}

/* ==========================================================================
   Consolidated Responsive Breakpoints
   ========================================================================== */

@media (max-width: 900px) {
  nav.links,
  .nav-phone {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
  .mobile-drawer {
    display: block;
  }
  .nav-cta .btn {
    padding: 0.7em 1.1em;
    font-size: 0.84rem;
  }
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-rating {
    position: static;
    margin-top: -40px;
    margin-left: 18px;
    width: fit-content;
  }
  .cta-layout {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-layout,
  .why-points,
  .story-layout,
  .areas-layout {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  .steps::before {
    display: none;
  }
  .story-art {
    margin-bottom: 36px;
  }
}

@media (max-width: 800px) {
  .head-split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .svc-grid,
  .rf-grid,
  .factors-grid,
  .foot-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .review-card {
    grid-template-columns: 1fr;
  }
  .photo-band {
    aspect-ratio: 3 / 4;
  }
  .photo-band .pb-text {
    max-width: 80%;
    left: 24px;
  }
}

@media (max-width: 520px) {
  .steps,
  .form-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .brand-word {
    font-size: 1.02rem;
  }
  .brand-word small {
    display: none;
  }
  .nav-cta .btn {
    display: none;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero-rating {
    margin-top: -30px;
    padding: 12px 16px;
  }
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .svc-card {
    aspect-ratio: 1 / 1;
  }
  .review-quote {
    font-size: 1.25rem;
  }
  .area-list {
    grid-template-columns: 1fr;
  }
}