:root {
  /* ATLANTIC CUSTOM WOODCRAFT — OFFICIAL BRAND GUIDE */
  --atlantic-navy: #0B1D33;
  --atlantic-gold: #D4AF37;
  --atlantic-cream: #F5F1E6;
  --atlantic-charcoal: #33363A;

  /* Semantic aliases intentionally reference only the official palette. */
  --navy-950: var(--atlantic-navy);
  --navy-900: var(--atlantic-navy);
  --navy-850: var(--atlantic-navy);
  --navy-800: var(--atlantic-navy);
  --cream-50: var(--atlantic-cream);
  --cream-100: var(--atlantic-cream);
  --cream-200: var(--atlantic-cream);
  --ink: var(--atlantic-charcoal);
  --muted: var(--atlantic-charcoal);
  --gold-500: var(--atlantic-gold);
  --gold-400: var(--atlantic-gold);
  --gold-300: var(--atlantic-gold);
  --white: #FFFFFF;

  --font-display: "Trajan Pro", "Trajan Pro 3", "Cinzel", Georgia, "Times New Roman", serif;
  --font-body: "Montserrat", Arial, Helvetica, sans-serif;

  --border-dark: rgb(212 175 55 / .30);
  --border-light: rgb(51 54 58 / .18);
  --shadow-lg: 0 28px 80px rgb(11 29 51 / .20);
  --shadow-md: 0 18px 40px rgb(11 29 51 / .14);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --container: 1240px;
  --header-h: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream-50);
  color: var(--ink);
  font-family: var(--font-body);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  transform: translateY(-140%);
  background: var(--gold-400);
  color: var(--navy-950);
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section { padding: 92px 0; }
.section-compact { padding: 64px 0; }
.section-dark {
  background:
    radial-gradient(circle at 20% 0%, rgb(212 175 55 / .09), transparent 32%),
    linear-gradient(145deg, var(--navy-900), var(--navy-950));
  color: var(--white);
}
.section-cream { background: var(--cream-100); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-400);
  text-transform: uppercase;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .2em;
}
.eyebrow::after {
  content: "";
  width: 46px;
  height: 1px;
  background: currentColor;
}
.display-title, .section-title, .page-title, .card-title {
  font-family: var(--font-display);
  letter-spacing: .015em;
}
.display-title {
  margin: 16px 0 20px;
  font-size: clamp(3.15rem, 6.8vw, 6.4rem);
  line-height: .92;
  color: var(--white);
  max-width: 760px;
}
.display-title .gold, .section-title .gold, .page-title .gold { color: var(--gold-400); }
.section-title {
  margin: 0;
  font-size: clamp(2.15rem, 4.4vw, 4rem);
  line-height: 1;
}
.section-title.center { text-align: center; }
.section-copy {
  margin: 18px 0 0;
  max-width: 720px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--muted);
}
.section-dark .section-copy { color: var(--atlantic-cream); }
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 42px;
}
.section-heading.center {
  text-align: center;
  display: block;
}
.section-heading.center .section-copy { margin-inline: auto; }
.small-note { color: var(--muted); font-size: .92rem; line-height: 1.65; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid var(--gold-500);
  background: var(--atlantic-gold);
  color: var(--navy-950);
  text-transform: uppercase;
  letter-spacing: .055em;
  font-size: .78rem;
  font-weight: 700;
  border-radius: 6px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgb(212 175 55 / .22); }
.button-outline {
  background: rgb(11 29 51 / .42);
  color: var(--white);
}
.button-outline:hover { background: rgb(212 175 55 / .12); }
.button-small { min-height: 42px; padding-inline: 18px; font-size: .7rem; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-500);
  font-weight: 700;
  text-transform: uppercase;
  font-size: .78rem;
  letter-spacing: .08em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgb(11 29 51 / .96);
  border-bottom: 1px solid rgb(212 175 55 / .15);
  backdrop-filter: blur(16px);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 26px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}
.brand-emblem { object-fit: cover; object-position: center; border-radius: 50%; }
.brand-wordmark {
  display: grid;
  line-height: 1;
}
.brand-wordmark strong {
  color: var(--gold-400);
  font-family: var(--font-display);
  font-size: 1.42rem;
  letter-spacing: .055em;
}
.brand-wordmark small {
  margin-top: 5px;
  color: var(--gold-300);
  font-size: .58rem;
  letter-spacing: .11em;
  font-weight: 800;
}
.brand-wordmark em {
  margin-top: 4px;
  color: var(--gold-300);
  font-family: var(--font-display);
  font-size: .50rem;
  line-height: 1;
  letter-spacing: .34em;
  font-style: normal;
  text-align: center;
}
.primary-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 24px;
}
.primary-nav a {
  color: var(--atlantic-cream);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-weight: 800;
  position: relative;
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -10px;
  height: 2px;
  background: var(--gold-400);
  transition: right .2s ease;
}
.primary-nav a:hover::after, .primary-nav a[aria-current="page"]::after { right: 0; }
.header-cta { margin-left: 8px; }
.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 1px solid rgb(212 175 55 / .35);
  background: transparent;
  border-radius: 8px;
  padding: 10px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  margin: 4px 0;
  transition: .2s ease;
}

.hero {
  min-height: calc(100vh - var(--header-h));
  background: var(--navy-950);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  min-height: calc(100vh - var(--header-h));
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 1fr);
}
.hero-copy {
  padding: clamp(72px, 8vw, 126px) max(32px, calc((100vw - var(--container))/2)) 70px max(32px, calc((100vw - var(--container))/2));
  padding-right: 70px;
  align-self: center;
  position: relative;
  z-index: 3;
}
.hero-copy::before {
  content: "";
  position: absolute;
  inset: 0 -120px 0 0;
  background: linear-gradient(90deg, rgb(11 29 51 / 1) 0%, rgb(11 29 51 / .98) 65%, rgb(11 29 51 / 0) 100%);
  z-index: -1;
}
.hero-copy p {
  max-width: 640px;
  color: var(--atlantic-cream);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.75;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-trust {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-300);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .09em;
  font-weight: 700;
}
.hero-trust-icon {
  width: 30px; height: 30px; border: 1px solid var(--gold-500); border-radius: 50%;
  display: grid; place-items: center;
}
.hero-media {
  position: relative;
  min-height: 620px;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(11 29 51 / .3), transparent 42%), linear-gradient(0deg, rgb(11 29 51 / .18), transparent 48%);
}
.hero-badge {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 28px;
  max-width: 260px;
  padding: 18px 20px;
  background: rgb(11 29 51 / .88);
  border: 1px solid rgb(212 175 55 / .45);
  border-radius: 14px;
  backdrop-filter: blur(12px);
}
.hero-badge strong { color: var(--gold-400); font-family: var(--font-display); font-size: 1.25rem; }
.hero-badge span { display:block; color:var(--atlantic-cream); margin-top:6px; font-size:.83rem; line-height:1.55; }

.trust-strip {
  background: var(--navy-900);
  color: var(--white);
  border-top: 1px solid rgb(212 175 55 / .22);
  border-bottom: 1px solid rgb(212 175 55 / .22);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
}
.trust-item {
  padding: 24px 26px;
  display: flex;
  gap: 14px;
  align-items: center;
  border-right: 1px solid rgb(212 175 55 / .22);
}
.trust-item:last-child { border-right: 0; }
.trust-icon {
  flex: 0 0 42px;
  width:42px; height:42px; border-radius:50%;
  display:grid; place-items:center; border:1px solid var(--gold-500); color:var(--gold-400); font-weight:900;
}
.trust-item strong { display:block; color:var(--gold-300); text-transform:uppercase; font-size:.72rem; letter-spacing:.08em; }
.trust-item span { display:block; color:var(--atlantic-cream); font-size:.78rem; margin-top:4px; line-height:1.45; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 20px;
}
.service-card {
  overflow: hidden;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(5,21,35,.06);
  transition: transform .22s ease, box-shadow .22s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.service-card-media { height: 210px; overflow:hidden; background:var(--atlantic-cream); position:relative; }
.service-card-media img { width:100%; height:100%; object-fit:cover; transition:transform .4s ease; }
.service-card:hover img { transform:scale(1.035); }
.concept-badge {
  position:absolute; top:12px; right:12px; z-index:2;
  background:rgb(11 29 51 / .86); color:var(--atlantic-gold); border:1px solid rgb(212 175 55 / .45);
  border-radius:999px; padding:6px 9px; font-size:.6rem; text-transform:uppercase; letter-spacing:.08em; font-weight:900;
}
.service-card-body { padding: 24px; }
.card-kicker { color:var(--gold-500); font-size:.68rem; font-weight:900; text-transform:uppercase; letter-spacing:.11em; }
.card-title { margin: 9px 0 9px; font-size:1.4rem; line-height:1.08; }
.card-copy { margin:0; color:var(--muted); line-height:1.7; font-size:.93rem; }

.project-grid {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:20px;
}
.project-card {
  min-height: 360px;
  border-radius: var(--radius-md);
  overflow:hidden;
  position:relative;
  border:1px solid rgb(212 175 55 / .34);
  background:var(--navy-850);
}
.project-card img { width:100%; height:100%; position:absolute; inset:0; object-fit:cover; }
.project-card::after {
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(0deg, rgb(11 29 51 / .96) 0%, rgb(11 29 51 / .15) 65%);
}
.project-content {
  position:absolute; z-index:2; left:26px; right:26px; bottom:24px;
}
.project-content h3 { margin:0 0 6px; color:var(--gold-300); font-family:Georgia,serif; font-size:1.48rem; }
.project-content p { margin:0; color:var(--atlantic-cream); }
.project-content .concept-badge { position:static; display:inline-flex; margin-bottom:12px; }

.feature-grid {
  display:grid; grid-template-columns:repeat(4,1fr); gap:16px;
}
.feature-card {
  padding:28px 22px;
  background:rgba(255,255,255,.04);
  border:1px solid rgb(212 175 55 / .22);
  border-radius:16px;
}
.feature-number { color:var(--gold-400); font-family:Georgia,serif; font-size:2rem; }
.feature-card h3 { color:white; margin:10px 0 8px; font-family:Georgia,serif; font-size:1.25rem; }
.feature-card p { color:var(--atlantic-cream); margin:0; line-height:1.65; font-size:.9rem; }

.split {
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  gap:60px;
  align-items:center;
}
.split-media {
  min-height:480px;
  border-radius:var(--radius-lg);
  overflow:hidden;
  position:relative;
  box-shadow:var(--shadow-lg);
}
.split-media img { width:100%; height:100%; object-fit:cover; position:absolute; inset:0; }
.split-media::after { content:""; position:absolute; inset:0; box-shadow:inset 0 0 0 1px rgb(212 175 55 / .32); border-radius:inherit; }
.check-list { display:grid; gap:13px; margin:26px 0 0; padding:0; list-style:none; }
.check-list li { display:flex; gap:12px; line-height:1.6; color:inherit; }
.check-list li::before { content:"✓"; color:var(--gold-500); font-weight:900; }

.process-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.process-card {
  padding:30px;
  background:white;
  border:1px solid var(--border-light);
  border-radius:var(--radius-md);
  position:relative;
}
.process-card .process-index {
  color:rgb(212 175 55 / .26);
  font-family:Georgia,serif;
  font-size:4rem;
  line-height:1;
  position:absolute;
  top:18px;
  right:22px;
}
.process-card h3 { margin:18px 0 8px; font-family:Georgia,serif; font-size:1.35rem; }
.process-card p { margin:0; color:var(--muted); line-height:1.7; }

.finishcalc-panel {
  border:1px solid rgb(212 175 55 / .3);
  border-radius:var(--radius-lg);
  overflow:hidden;
  background:var(--atlantic-navy);
  color:white;
  display:grid;
  grid-template-columns:.78fr 1.22fr;
  min-height:520px;
}
.finishcalc-media { background:var(--atlantic-navy); min-height:500px; overflow:hidden; }
.finishcalc-media img { width:100%; height:100%; object-fit:cover; object-position:center; }
.finishcalc-copy { padding:54px; align-self:center; }
.finishcalc-logo {
  width:72px; height:72px; border-radius:18px; border:1px solid var(--gold-500);
  display:grid; place-items:center; color:var(--gold-400); font-family:Georgia,serif; font-size:2rem; font-weight:800;
}
.finishcalc-copy h2 { margin:22px 0 14px; font-family:Georgia,serif; font-size:clamp(2.3rem,5vw,4rem); }
.finishcalc-copy p { color:var(--atlantic-cream); line-height:1.8; max-width:650px; }

.cta-band {
  background:
    radial-gradient(circle at 80% 20%, rgb(212 175 55 / .14), transparent 35%),
    linear-gradient(135deg, var(--navy-900), var(--navy-950));
  color:white;
  border-top:1px solid rgb(212 175 55 / .24);
  border-bottom:1px solid rgb(212 175 55 / .24);
}
.cta-inner {
  padding:58px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}
.cta-inner h2 { margin:0; font-family:Georgia,serif; font-size:clamp(2rem,4vw,3.8rem); }
.cta-inner p { margin:10px 0 0; color:var(--atlantic-cream); }

.page-hero {
  background:
    radial-gradient(circle at 80% 0%, rgb(212 175 55 / .12), transparent 32%),
    linear-gradient(145deg, var(--navy-900), var(--navy-950));
  color:white;
  padding:88px 0 72px;
  border-bottom:1px solid rgb(212 175 55 / .2);
}
.page-title { margin:14px 0 16px; font-size:clamp(3rem,7vw,6.2rem); line-height:.95; max-width:950px; }
.page-lead { color:var(--atlantic-cream); max-width:760px; line-height:1.8; font-size:1.08rem; }

.rich-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:24px; }
.rich-card {
  background:white; border:1px solid var(--border-light); border-radius:var(--radius-md); padding:30px;
}
.rich-card h2, .rich-card h3 { font-family:Georgia,serif; margin-top:0; }
.rich-card p { color:var(--muted); line-height:1.75; }
.rich-card ul { color:var(--muted); line-height:1.75; }

.contact-grid { display:grid; grid-template-columns:.82fr 1.18fr; gap:36px; align-items:start; }
.contact-card {
  background:var(--navy-900); color:white; border-radius:var(--radius-lg); padding:34px;
  border:1px solid rgb(212 175 55 / .3);
}
.contact-card h2 { font-family:Georgia,serif; margin-top:0; }
.contact-list { list-style:none; padding:0; margin:24px 0 0; display:grid; gap:18px; }
.contact-list strong { display:block; color:var(--gold-300); font-size:.72rem; text-transform:uppercase; letter-spacing:.08em; }
.contact-list a, .contact-list span { display:block; margin-top:5px; color:var(--atlantic-cream); line-height:1.55; }
.estimate-form {
  background:white; border:1px solid var(--border-light); border-radius:var(--radius-lg); padding:34px; box-shadow:var(--shadow-md);
}
.form-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:18px; }
.field { display:grid; gap:8px; }
.field.full { grid-column:1/-1; }
.field label { font-size:.78rem; font-weight:900; text-transform:uppercase; letter-spacing:.06em; color:var(--atlantic-charcoal); }
.field input, .field select, .field textarea {
  width:100%; border:1px solid rgb(51 54 58 / .24); background:var(--atlantic-cream); border-radius:10px; padding:14px 15px; color:var(--atlantic-charcoal);
  outline:none; transition:border .2s, box-shadow .2s;
}
.field textarea { min-height:150px; resize:vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color:var(--gold-500); box-shadow:0 0 0 3px rgb(212 175 55 / .14); }
.form-status { margin:14px 0 0; color:var(--muted); font-size:.88rem; line-height:1.6; }

.legal-content { max-width:880px; }
.legal-content h2 { margin-top:38px; font-family:Georgia,serif; font-size:1.75rem; }
.legal-content p, .legal-content li { color:var(--atlantic-charcoal); line-height:1.8; }
.legal-content a { color:var(--atlantic-gold); text-decoration:underline; }

.site-footer {
  background:var(--atlantic-navy);
  color:var(--atlantic-cream);
  padding:64px 0 24px;
  border-top:1px solid rgb(212 175 55 / .22);
}
.footer-grid { display:grid; grid-template-columns:1.55fr repeat(3,1fr); gap:44px; }
.footer-brand p { color:var(--atlantic-cream); line-height:1.7; max-width:390px; }
.footer-tagline { color:var(--gold-300)!important; font-size:.76rem; text-transform:uppercase; letter-spacing:.09em; }
.footer-title { color:var(--gold-300); text-transform:uppercase; letter-spacing:.08em; font-size:.74rem; margin:0 0 18px; }
.footer-links { list-style:none; padding:0; margin:0; display:grid; gap:11px; }
.footer-links li, .footer-links a { color:var(--atlantic-cream); font-size:.9rem; line-height:1.5; }
.footer-links a:hover { color:var(--gold-300); }
.footer-bottom {
  margin-top:46px; padding-top:22px; border-top:1px solid rgba(255,255,255,.08);
  display:flex; justify-content:space-between; gap:20px; color:var(--atlantic-cream); font-size:.76rem;
}

@media (max-width: 1100px) {
  .header-cta { display:none; }
  .primary-nav { gap:17px; }
  .hero-grid { grid-template-columns:1fr 1fr; }
  .hero-copy { padding-left:32px; }
  .trust-grid { grid-template-columns:repeat(2,1fr); }
  .trust-item:nth-child(2) { border-right:0; }
  .trust-item:nth-child(-n+2) { border-bottom:1px solid rgb(212 175 55 / .22); }
  .service-grid { grid-template-columns:repeat(2,1fr); }
  .feature-grid { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:1.5fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column:2/4; }
}
@media (max-width: 860px) {
  :root { --header-h: 72px; }
  .container { width:min(calc(100% - 28px), var(--container)); }
  .menu-toggle { display:block; margin-left:auto; }
  .primary-nav {
    position:fixed;
    inset:var(--header-h) 0 auto 0;
    background:var(--atlantic-navy);
    display:grid;
    padding:22px 24px 30px;
    gap:0;
    transform:translateY(-130%);
    opacity:0;
    pointer-events:none;
    transition:.24s ease;
    border-bottom:1px solid rgb(212 175 55 / .25);
  }
  .primary-nav a { padding:14px 0; border-bottom:1px solid rgba(255,255,255,.07); font-size:.9rem; }
  .primary-nav a::after { display:none; }
  body.nav-open .primary-nav { transform:translateY(0); opacity:1; pointer-events:auto; }
  body.nav-open .menu-toggle span:nth-child(1) { transform:translateY(6px) rotate(45deg); }
  body.nav-open .menu-toggle span:nth-child(2) { opacity:0; }
  body.nav-open .menu-toggle span:nth-child(3) { transform:translateY(-6px) rotate(-45deg); }
  .brand-wordmark strong { font-size:1.18rem; }
  .brand-wordmark small { font-size:.5rem; }
  .brand-emblem { width:52px; height:48px; }
  .hero-grid { grid-template-columns:1fr; }
  .hero-copy { min-height:620px; padding:84px 24px 72px; background:linear-gradient(0deg, rgb(11 29 51 / .94), rgb(11 29 51 / .70)), url('/assets/images/hero-craftsmanship.webp') center/cover; }
  .hero-copy::before { display:none; }
  .hero-media { display:none; }
  .section { padding:74px 0; }
  .section-heading { display:block; }
  .section-heading .text-link { margin-top:18px; }
  .split, .finishcalc-panel, .contact-grid { grid-template-columns:1fr; }
  .split-media { min-height:380px; order:-1; }
  .finishcalc-media { min-height:380px; }
  .finishcalc-copy { padding:36px 28px; }
  .process-grid { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .footer-grid > div:last-child { grid-column:auto; }
  .footer-brand { grid-column:1/-1; }
}
@media (max-width: 620px) {
  .display-title { font-size:clamp(3rem,15vw,4.6rem); }
  .hero-copy { min-height:calc(100vh - var(--header-h)); display:flex; flex-direction:column; justify-content:center; }
  .hero-actions { display:grid; width:100%; }
  .button { width:100%; }
  .trust-grid, .service-grid, .project-grid, .feature-grid, .process-grid, .rich-grid, .form-grid, .footer-grid { grid-template-columns:1fr; }
  .trust-item { border-right:0; border-bottom:1px solid rgb(212 175 55 / .22)!important; }
  .trust-item:last-child { border-bottom:0!important; }
  .project-card { min-height:320px; }
  .split-media { min-height:310px; }
  .cta-inner { display:grid; }
  .cta-inner .button { width:100%; }
  .footer-brand { grid-column:auto; }
  .footer-bottom { display:grid; }
  .field.full { grid-column:auto; }
  .estimate-form, .contact-card { padding:26px 20px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *, *::before, *::after { animation-duration:.01ms!important; animation-iteration-count:1!important; transition-duration:.01ms!important; }
}


/* =========================================================
   ATLANTIC OFFICIAL BRAND GUIDE — fidelity layer
   Palette: #0B1D33 · #D4AF37 · #F5F1E6 · #33363A
   Display: Trajan Pro (licensed/local when available)
   Body/UI: Montserrat
   ========================================================= */
html { background: var(--atlantic-navy); }
body { background: var(--atlantic-cream); color: var(--atlantic-charcoal); }

.site-header,
.section-dark,
.trust-strip,
.page-hero,
.site-footer,
.cta-band {
  background-color: var(--atlantic-navy);
}

.brand-wordmark strong,
.display-title,
.section-title,
.page-title,
.card-title,
.project-content h3,
.feature-card h3,
.feature-number,
.process-index,
.finishcalc-copy h2,
.cta-inner h2,
.footer-title {
  font-family: var(--font-display);
  font-weight: 500;
}

.brand-wordmark strong {
  letter-spacing: .06em;
  color: var(--atlantic-gold);
}
.brand-wordmark small {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: .10em;
  color: var(--atlantic-cream);
}
.brand-wordmark em { color: var(--atlantic-gold); }

.primary-nav a,
.button,
.text-link,
.eyebrow,
.card-kicker,
.hero-trust,
.trust-item strong,
input,
textarea,
select,
label {
  font-family: var(--font-body);
}

.display-title {
  letter-spacing: .012em;
  font-weight: 500;
}
.section-title,
.page-title {
  letter-spacing: .018em;
  font-weight: 500;
}
.gold,
.display-title .gold,
.section-title .gold,
.page-title .gold {
  color: var(--atlantic-gold);
}

.button {
  border-color: var(--atlantic-gold);
  background: var(--atlantic-gold);
  color: var(--atlantic-navy);
  border-radius: 2px;
  box-shadow: none;
}
.button:hover {
  background: var(--atlantic-cream);
  color: var(--atlantic-navy);
  border-color: var(--atlantic-gold);
  box-shadow: 0 10px 24px rgb(11 29 51 / .16);
}
.button-outline {
  background: transparent;
  color: var(--atlantic-cream);
}
.button-outline:hover {
  background: var(--atlantic-gold);
  color: var(--atlantic-navy);
}

.service-card,
.process-card,
.form-card,
.info-card {
  background: var(--atlantic-cream);
}

.hero-copy p,
.hero-badge span,
.section-dark .section-copy,
.trust-item span,
.project-content p,
.feature-card p,
.site-footer,
.site-footer p,
.footer-links,
.footer-links a {
  color: var(--atlantic-cream);
}

.hero-badge {
  background: rgb(11 29 51 / .94);
  border-color: rgb(212 175 55 / .52);
  border-radius: 4px;
}

.hero-media::after {
  background:
    linear-gradient(90deg, rgb(11 29 51 / .42), transparent 46%),
    linear-gradient(0deg, rgb(11 29 51 / .18), transparent 50%);
}

.hero-copy::before {
  background: linear-gradient(
    90deg,
    rgb(11 29 51 / 1) 0%,
    rgb(11 29 51 / .98) 64%,
    rgb(11 29 51 / 0) 100%
  );
}

.trust-item,
.feature-card,
.project-card,
.site-footer {
  border-color: rgb(212 175 55 / .28);
}

.service-card,
.process-card {
  border-color: rgb(51 54 58 / .16);
}

.brand-emblem {
  border-radius: 0;
}

@media (max-width: 860px) {
  .brand-wordmark strong { font-size: 1.16rem; }
  .brand-wordmark small { font-size: .49rem; }
  .brand-wordmark em { font-size: .44rem; }
}


/* =========================================================
   PREMIUM LAYOUT v3 — approved mockup proportions
   Official Atlantic brand guide remains the source of truth.
   ========================================================= */

:root {
  --container: 1380px;
  --header-h: 82px;
}

/* Typography fidelity */
.project-content h3,
.feature-number,
.feature-card h3,
.process-card .process-index,
.process-card h2,
.finishcalc-logo,
.finishcalc-copy h2,
.cta-inner h2,
.rich-card h2,
.rich-card h3,
.contact-card h2,
.legal-content h2 {
  font-family: var(--font-display);
  font-weight: 500;
}

/* Header — quieter, more luxury, more like approved mockup */
.site-header { height: var(--header-h); }
.header-inner { gap: 22px; }
.brand { gap: 12px; }
.brand-emblem {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 50%;
}
.brand-wordmark strong {
  font-size: 1.52rem;
  line-height: .94;
}
.brand-wordmark small {
  font-family: var(--font-body);
  font-size: .56rem;
  line-height: 1.15;
  letter-spacing: .12em;
  color: var(--atlantic-cream);
}
.brand-wordmark em {
  font-size: .47rem;
  margin-top: 3px;
}
.primary-nav { gap: 28px; }
.primary-nav a { font-size: .72rem; }
.header-cta {
  margin-left: 10px;
  min-height: 44px;
  padding-inline: 20px;
}

/* Home hero — intentionally NOT full viewport height */
.hero,
.hero-grid {
  min-height: 560px;
}
.hero-grid {
  grid-template-columns: minmax(520px, .88fr) minmax(640px, 1.12fr);
}
.hero-copy {
  min-height: 560px;
  padding-top: 74px;
  padding-bottom: 66px;
  padding-right: 52px;
}
.hero-copy::before { inset: 0 -92px 0 0; }
.display-title {
  margin: 14px 0 18px;
  max-width: 650px;
  font-size: clamp(3.3rem, 4.25vw, 4.8rem);
  line-height: .98;
  letter-spacing: .01em;
}
.hero-copy p {
  max-width: 610px;
  font-size: 1rem;
  line-height: 1.72;
}
.hero-actions { margin-top: 26px; }
.hero-trust { margin-top: 24px; font-size: .70rem; }
.hero-media { min-height: 560px; }
.hero-badge {
  right: 24px;
  bottom: 24px;
  max-width: 245px;
  padding: 15px 17px;
}

/* Value strip uses the brand-guide visual language */
.trust-grid {
  width: min(100%, 1536px);
  margin-inline: auto;
}
.trust-item {
  min-height: 104px;
  padding: 20px 30px;
}
.trust-icon {
  width: 48px;
  height: 48px;
  flex-basis: 48px;
  border: 0;
  border-radius: 0;
}
.trust-icon svg {
  width: 43px;
  height: 43px;
  fill: none;
  stroke: var(--atlantic-gold);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.trust-item strong { font-size: .71rem; }
.trust-item span { font-size: .75rem; }

/* Home sections use lower vertical rhythm like the approved layout */
.section { padding: 74px 0; }
.section-compact { padding: 54px 0; }
.section-heading { margin-bottom: 32px; }
.section-title {
  font-size: clamp(2.15rem, 3vw, 3.25rem);
  line-height: 1.03;
}
.section-copy {
  margin-top: 14px;
  font-size: .98rem;
  line-height: 1.72;
}

/* Six service cards on wide desktop */
.service-grid-home {
  grid-template-columns: repeat(6, minmax(0,1fr));
  gap: 14px;
}
.service-grid-home .service-card { border-radius: 8px; }
.service-grid-home .service-card-media { height: 145px; }
.service-grid-home .service-card-body { padding: 17px 15px 19px; text-align: center; }
.service-grid-home .card-kicker { display: none; }
.service-grid-home .card-title { font-size: .93rem; line-height: 1.17; margin: 2px 0 8px; }
.service-grid-home .card-copy { font-size: .73rem; line-height: 1.52; }

/* Four project cards on wide desktop */
.project-grid-home {
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 14px;
}
.project-grid-home .project-card {
  min-height: 245px;
  border-radius: 6px;
}
.project-grid-home .project-content {
  left: 16px;
  right: 16px;
  bottom: 15px;
}
.project-grid-home .project-content h3 { font-size: 1rem; }
.project-grid-home .project-content p { font-size: .76rem; }

/* Interior page heroes: premium and compact instead of oversized empty panels */
.page-hero {
  padding: 70px 0 62px;
  min-height: 350px;
  display: flex;
  align-items: center;
}
.page-hero .container { width: min(calc(100% - 64px), 1380px); }
.page-title {
  margin: 13px 0 16px;
  max-width: 1050px;
  font-size: clamp(3.25rem, 4.9vw, 5rem);
  line-height: .98;
  letter-spacing: .012em;
}
.page-lead {
  max-width: 810px;
  font-size: 1rem;
  line-height: 1.7;
}

/* Services page remains spacious without becoming oversized */
.service-grid:not(.service-grid-home) {
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 22px;
}
.service-grid:not(.service-grid-home) .service-card-media { height: 220px; }

/* Project and process pages */
.project-grid:not(.project-grid-home) { gap: 22px; }
.process-card { padding: 28px; }

/* Development labels no longer sit over the premium visual.
   The project page still contains a written disclosure until real photos replace concepts. */
.concept-badge { display: none; }

/* FinishCalc and contact are already structurally strong; refine proportions only */
.finishcalc-panel { min-height: 470px; }
.finishcalc-media { min-height: 470px; }
.finishcalc-copy { padding: 48px; }
.finishcalc-copy h2 { font-size: clamp(2.55rem, 4vw, 3.8rem); }
.contact-grid { gap: 32px; }
.estimate-form, .contact-card { border-radius: 16px; }

/* Responsive progression */
@media (max-width: 1320px) {
  .container { width: min(calc(100% - 46px), 1240px); }
  .primary-nav { gap: 20px; }
  .service-grid-home { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
  .service-grid-home .service-card-media { height: 185px; }
  .project-grid-home { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
  .project-grid-home .project-card { min-height: 310px; }
  .hero-grid { grid-template-columns: minmax(470px,.9fr) minmax(520px,1.1fr); }
}

@media (max-width: 1100px) {
  .hero, .hero-grid { min-height: 520px; }
  .hero-copy { min-height: 520px; }
  .display-title { font-size: clamp(3rem,5.4vw,4.1rem); }
  .page-title { font-size: clamp(3rem,6.2vw,4.6rem); }
}

@media (max-width: 860px) {
  :root { --header-h: 72px; }
  .brand-emblem { width: 50px; height: 50px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero, .hero-grid { min-height: calc(100vh - var(--header-h)); }
  .hero-copy {
    min-height: calc(100vh - var(--header-h));
    padding: 82px 24px 64px;
  }
  .display-title { font-size: clamp(3rem, 11vw, 4.4rem); }
  .page-hero { min-height: 310px; padding: 64px 0 56px; }
  .page-title { font-size: clamp(2.8rem, 10vw, 4.2rem); }
  .service-grid-home { grid-template-columns: repeat(2,1fr); }
  .project-grid-home { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 30px), var(--container)); }
  .brand-wordmark strong { font-size: 1.06rem; }
  .brand-wordmark small { font-size: .43rem; }
  .brand-wordmark em { font-size: .39rem; }
  .display-title { font-size: clamp(2.7rem, 13.4vw, 4rem); }
  .page-hero .container { width: min(calc(100% - 30px), 1380px); }
  .page-title { font-size: clamp(2.65rem, 12vw, 3.8rem); }
  .service-grid-home { grid-template-columns: 1fr; }
  .service-grid-home .service-card-media { height: 220px; }
}


/* =========================================================
   HEADER BRAND SCALE v3.1
   Requested refinement: stronger Atlantic brand presence.
   Desktop logo grows without compromising tablet/mobile nav.
   ========================================================= */
@media (min-width: 1321px) {
  :root { --header-h: 94px; }

  .brand { gap: 14px; }

  .brand-emblem {
    width: 76px;
    height: 76px;
  }

  .brand-wordmark strong {
    font-size: 1.84rem;
    line-height: .94;
  }

  .brand-wordmark small {
    font-size: .64rem;
    line-height: 1.15;
    letter-spacing: .12em;
  }

  .brand-wordmark em {
    font-size: .52rem;
    margin-top: 4px;
  }
}

@media (min-width: 861px) and (max-width: 1320px) {
  :root { --header-h: 88px; }

  .brand { gap: 12px; }

  .brand-emblem {
    width: 66px;
    height: 66px;
  }

  .brand-wordmark strong {
    font-size: 1.60rem;
  }

  .brand-wordmark small {
    font-size: .56rem;
  }

  .brand-wordmark em {
    font-size: .46rem;
  }
}


/* =========================================================
   HEADER LOGO CROP FIX v3.2
   Removes the unwanted vertical guide lines visible in the
   source brand-mark crop without altering the source image.
   The circular frame clips everything outside the official
   social emblem and keeps the mark centered on all screens.
   ========================================================= */

.brand-emblem-frame {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 76px;
  height: 76px;
  overflow: hidden;
  border-radius: 50%;
  line-height: 0;
}

.brand-emblem-frame .brand-emblem {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 96px;
  height: 96px;
  max-width: none;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  transform: translate(-50%, -50%) scale(1.02);
}

/* Prevent older logo sizing rules from changing the cropped image itself. */
.brand > .brand-emblem {
  display: none;
}

@media (min-width: 1321px) {
  .brand-emblem-frame {
    width: 78px;
    height: 78px;
  }

  .brand-emblem-frame .brand-emblem {
    width: 100px;
    height: 100px;
  }
}

@media (min-width: 861px) and (max-width: 1320px) {
  .brand-emblem-frame {
    width: 68px;
    height: 68px;
  }

  .brand-emblem-frame .brand-emblem {
    width: 88px;
    height: 88px;
  }
}

@media (max-width: 860px) {
  .brand-emblem-frame {
    width: 50px;
    height: 50px;
  }

  .brand-emblem-frame .brand-emblem {
    width: 66px;
    height: 66px;
  }
}

@media (max-width: 620px) {
  .brand {
    gap: 10px;
  }

  .brand-emblem-frame {
    width: 48px;
    height: 48px;
  }

  .brand-emblem-frame .brand-emblem {
    width: 64px;
    height: 64px;
  }
}


/* =========================================================
   HOME HERO PHOTO CROP FIX v3.3
   The current concept photo contains leftover mockup artwork
   at its far-left edge. This code crops that edge out inside
   the website layout; no image file is modified or replaced.
   ========================================================= */

@media (min-width: 861px) {
  .hero-media {
    overflow: hidden;
    isolation: isolate;
  }

  .hero-media > img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: right center;
    transform: scale(1.12);
    transform-origin: right center;
  }

  .hero-media::after,
  .hero-badge {
    z-index: 2;
  }
}


/* =========================================================
   SERVICES PAGE v3.4
   Expanded Interior Finish Carpentry service catalog.
   Scoped to .services-page so approved Home styling is not
   changed by this release.
   ========================================================= */

.services-page .services-heading {
  align-items: end;
  margin-bottom: 44px;
}

.services-page .services-heading .section-copy {
  max-width: 610px;
  margin: 0;
}

.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.service-detail-card {
  position: relative;
  overflow: hidden;
  padding: 32px;
  background: var(--white);
  border: 1px solid rgb(51 54 58 / .16);
  border-radius: 3px;
  box-shadow: 0 12px 34px rgb(11 29 51 / .07);
}

.service-detail-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--atlantic-gold);
  transform: scaleY(.34);
  transform-origin: top;
  transition: transform .24s ease;
}

.service-detail-card:hover::before {
  transform: scaleY(1);
}

.service-detail-top {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.service-detail-index {
  font-family: var(--font-display);
  color: var(--atlantic-gold);
  font-size: 1.65rem;
  line-height: 1;
  letter-spacing: .02em;
  padding-top: 3px;
}

.service-detail-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--atlantic-gold);
  font-size: .66rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.service-detail-card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.45rem, 2vw, 1.92rem);
  line-height: 1.08;
  color: var(--atlantic-navy);
}

.service-detail-card > p {
  margin: 20px 0 0 72px;
  color: var(--atlantic-charcoal);
  line-height: 1.72;
  font-size: .94rem;
  max-width: 650px;
}

.service-detail-list {
  list-style: none;
  margin: 22px 0 0 72px;
  padding: 20px 0 0;
  border-top: 1px solid rgb(51 54 58 / .13);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 24px;
  row-gap: 10px;
}

.service-detail-list li {
  position: relative;
  padding-left: 16px;
  color: var(--atlantic-charcoal);
  font-size: .84rem;
  line-height: 1.45;
}

.service-detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .58em;
  width: 6px;
  height: 6px;
  border: 1px solid var(--atlantic-gold);
  transform: rotate(45deg);
}

.services-project-fit .section-title {
  max-width: 920px;
  margin-inline: auto;
}

.services-page .cta-band {
  border-top: 1px solid rgb(212 175 55 / .24);
}

@media (max-width: 1050px) {
  .services-detail-grid {
    grid-template-columns: 1fr;
  }

  .services-page .services-heading {
    display: grid;
    align-items: start;
  }

  .services-page .services-heading .section-copy {
    margin-top: 18px;
  }
}

@media (max-width: 620px) {
  .service-detail-card {
    padding: 26px 22px;
  }

  .service-detail-top {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
  }

  .service-detail-index {
    font-size: 1.35rem;
  }

  .service-detail-card > p,
  .service-detail-list {
    margin-left: 0;
  }

  .service-detail-list {
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   ABOUT PAGE v3.5
   Premium company story and craftsmanship philosophy.
   Scoped to .about-page so approved Home / Services remain
   unchanged by this release.
   ========================================================= */

.about-page .about-hero .page-lead {
  max-width: 860px;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(460px, 1.08fr);
  gap: clamp(52px, 7vw, 96px);
  align-items: center;
}

.about-intro-copy .section-title {
  max-width: 710px;
}

.about-intro-copy .section-copy + .section-copy {
  margin-top: 12px;
}

.about-signature {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
}

.about-signature-line {
  width: 54px;
  height: 1px;
  background: var(--atlantic-gold);
  flex: 0 0 auto;
}

.about-signature strong {
  display: block;
  color: var(--atlantic-navy);
  font-family: var(--font-display);
  font-size: .80rem;
  letter-spacing: .10em;
}

.about-signature div span {
  display: block;
  margin-top: 6px;
  color: var(--atlantic-charcoal);
  font-size: .73rem;
  text-transform: uppercase;
  letter-spacing: .10em;
}

.about-visual {
  position: relative;
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  background: var(--atlantic-navy);
  border: 1px solid rgb(212 175 55 / .35);
  box-shadow: 0 24px 60px rgb(11 29 51 / .14);
}

.about-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgb(11 29 51 / .68) 0%, transparent 34%);
  pointer-events: none;
}

.about-visual figcaption {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 20px;
  color: var(--atlantic-cream);
  font-size: .68rem;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: .10em;
}

.about-principle-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.about-principle {
  position: relative;
  min-height: 270px;
  padding: 30px 26px;
  border: 1px solid rgb(212 175 55 / .28);
  background: rgb(245 241 230 / .025);
}

.about-principle-number {
  display: block;
  color: var(--atlantic-gold);
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.about-principle h3 {
  margin: 40px 0 12px;
  color: var(--atlantic-cream);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.55rem;
}

.about-principle p {
  margin: 0;
  color: var(--atlantic-cream);
  font-size: .88rem;
  line-height: 1.7;
}

.about-foundation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.about-foundation-card {
  min-height: 300px;
  padding: 32px;
  border: 1px solid rgb(51 54 58 / .16);
  background: var(--white);
  box-shadow: 0 12px 34px rgb(11 29 51 / .06);
}

.about-foundation-card-large {
  grid-column: 1 / -1;
  min-height: 280px;
  display: grid;
  grid-template-columns: minmax(260px, .75fr) minmax(0, 1.25fr);
  column-gap: 60px;
  align-items: end;
}

.about-card-label {
  display: block;
  color: var(--atlantic-gold);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.about-foundation-card h3 {
  margin: 0;
  color: var(--atlantic-navy);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.7rem, 2.5vw, 2.5rem);
  line-height: 1.08;
}

.about-foundation-card p {
  margin: 18px 0 0;
  color: var(--atlantic-charcoal);
  font-size: .94rem;
  line-height: 1.75;
}

.about-foundation-card-large > p {
  margin: 0;
  font-size: 1rem;
}

.about-values-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 13px 20px;
}

.about-values-list li {
  position: relative;
  padding: 12px 0 12px 18px;
  border-bottom: 1px solid rgb(51 54 58 / .12);
  color: var(--atlantic-charcoal);
  font-size: .86rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.about-values-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 6px;
  height: 6px;
  border: 1px solid var(--atlantic-gold);
  transform: rotate(45deg);
}

.about-foundation-card .text-link {
  margin-top: 24px;
}

.about-trade-tech-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 70px;
  align-items: center;
}

.about-trade-tech .section-copy {
  max-width: 760px;
}

.about-trade-tech .button {
  margin-top: 28px;
}

.about-trade-tech-mark {
  width: 260px;
  height: 260px;
  justify-self: end;
  border: 1px solid var(--atlantic-gold);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  place-items: center;
  align-items: center;
  padding: 28px;
  background: var(--atlantic-navy);
  color: var(--atlantic-gold);
}

.about-trade-tech-mark span {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: .05em;
}

.about-trade-tech-mark strong {
  color: var(--atlantic-cream);
  font-weight: 400;
  font-size: 1.1rem;
}

@media (max-width: 1050px) {
  .about-intro-grid {
    grid-template-columns: 1fr;
  }

  .about-visual {
    min-height: 470px;
  }

  .about-principle-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-trade-tech-grid {
    grid-template-columns: 1fr 220px;
    gap: 42px;
  }

  .about-trade-tech-mark {
    width: 210px;
    height: 210px;
  }
}

@media (max-width: 760px) {
  .about-foundation-grid,
  .about-foundation-card-large {
    grid-template-columns: 1fr;
  }

  .about-foundation-card-large {
    grid-column: auto;
    row-gap: 22px;
  }

  .about-foundation-card-large > p {
    margin: 0;
  }

  .about-trade-tech-grid {
    grid-template-columns: 1fr;
  }

  .about-trade-tech-mark {
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .about-principle-grid {
    grid-template-columns: 1fr;
  }

  .about-principle {
    min-height: 230px;
  }

  .about-visual {
    min-height: 360px;
  }

  .about-values-list {
    grid-template-columns: 1fr;
  }

  .about-foundation-card {
    min-height: 0;
    padding: 26px 22px;
  }

  .about-trade-tech-mark {
    width: 180px;
    height: 180px;
  }
}


/* =========================================================
   ABOUT PAGE REFINEMENT v3.6
   Visual-only refinement requested after page review:
   - balanced Company Foundation grid
   - cleaner About image crop
   - more compact Craft + Technology section
   - refined ACW × FCP relationship mark
   ========================================================= */

/* Remove the dark band / unwanted top edge from the representative About image
   through layout crop only. The image asset itself is not changed. */
.about-page .about-visual {
  min-height: 530px;
}

.about-page .about-visual img {
  object-position: center 58%;
  transform: scale(1.08);
  transform-origin: center center;
}

/* Foundation: Mission spans the row, then Vision / Values / Service Area
   share one balanced three-column row on wide screens. */
.about-page .about-foundation-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.about-page .about-foundation-card-large {
  grid-column: 1 / -1;
}

.about-page .about-foundation-card:not(.about-foundation-card-large) {
  min-height: 330px;
}

.about-page .about-foundation-card h3 {
  font-size: clamp(1.55rem, 2.15vw, 2.25rem);
}

.about-page .about-values-list {
  grid-template-columns: 1fr;
  gap: 8px;
}

.about-page .about-values-list li {
  padding-top: 9px;
  padding-bottom: 9px;
}

.about-page .about-values-list li::before {
  top: 14px;
}

/* Craft + Technology: reduce excess vertical space and make the relationship
   feel like a finished brand bridge rather than a placeholder square. */
.about-page .about-trade-tech {
  padding-top: 66px;
  padding-bottom: 66px;
}

.about-page .about-trade-tech-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(44px, 6vw, 86px);
}

.about-page .about-trade-tech .section-title {
  max-width: 780px;
}

.about-page .about-trade-tech-mark {
  width: 100%;
  height: auto;
  min-height: 170px;
  justify-self: stretch;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: 1fr auto;
  gap: 18px 20px;
  padding: 30px 28px 22px;
  background: var(--atlantic-navy);
  border: 1px solid var(--atlantic-gold);
  color: var(--atlantic-gold);
}

.about-page .about-tech-brand {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 8px;
  min-width: 0;
}

.about-page .about-tech-abbr {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2vw, 2rem);
  line-height: 1;
  letter-spacing: .06em;
  color: var(--atlantic-gold);
}

.about-page .about-tech-brand small {
  max-width: 150px;
  color: var(--atlantic-cream);
  font-family: var(--font-body);
  font-size: .55rem;
  line-height: 1.45;
  font-weight: 600;
  letter-spacing: .11em;
  text-align: center;
}

.about-page .about-tech-connector {
  align-self: center;
  color: var(--atlantic-cream);
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.about-page .about-trade-tech-mark em {
  grid-column: 1 / -1;
  padding-top: 15px;
  border-top: 1px solid rgb(212 175 55 / .30);
  color: var(--atlantic-gold);
  font-family: var(--font-body);
  font-size: .56rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: .10em;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 1120px) {
  .about-page .about-foundation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-page .about-foundation-card-large {
    grid-column: 1 / -1;
  }

  .about-page .about-foundation-card:not(.about-foundation-card-large):last-child {
    grid-column: 1 / -1;
    min-height: 0;
  }

  .about-page .about-trade-tech-grid {
    grid-template-columns: minmax(0, 1fr) 340px;
  }
}

@media (max-width: 760px) {
  .about-page .about-foundation-grid {
    grid-template-columns: 1fr;
  }

  .about-page .about-foundation-card-large,
  .about-page .about-foundation-card:not(.about-foundation-card-large):last-child {
    grid-column: auto;
  }

  .about-page .about-trade-tech {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .about-page .about-trade-tech-grid {
    grid-template-columns: 1fr;
  }

  .about-page .about-trade-tech-mark {
    max-width: 460px;
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .about-page .about-visual {
    min-height: 340px;
  }

  .about-page .about-visual img {
    object-position: center 60%;
    transform: scale(1.10);
  }

  .about-page .about-foundation-card:not(.about-foundation-card-large) {
    min-height: 0;
  }

  .about-page .about-trade-tech-mark {
    grid-template-columns: 1fr auto 1fr;
    gap: 14px 12px;
    padding: 24px 18px 18px;
  }

  .about-page .about-tech-brand small {
    font-size: .48rem;
  }
}


/* =========================================================
   PROJECTS PAGE v3.7
   Premium portfolio framework with representative imagery.
   Scoped to .projects-page so approved Home, Services and
   About styling remain unchanged.
   ========================================================= */

.projects-page .projects-hero .page-lead {
  max-width: 860px;
}

.projects-page .projects-heading {
  align-items: end;
  margin-bottom: 46px;
}

.projects-page .projects-heading > div:first-child {
  max-width: 670px;
}

.projects-page .projects-heading-copy {
  max-width: 610px;
}

.projects-page .projects-heading-copy .section-copy {
  margin-top: 0;
}

.projects-photo-note {
  display: flex;
  gap: 10px;
  margin: 18px 0 0;
  color: var(--atlantic-charcoal);
  font-size: .72rem;
  line-height: 1.6;
}

.projects-photo-note > span {
  flex: 0 0 auto;
  color: var(--atlantic-gold);
}

.projects-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.portfolio-card {
  display: grid;
  grid-template-rows: 340px 1fr;
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgb(51 54 58 / .16);
  box-shadow: 0 16px 40px rgb(11 29 51 / .08);
}

.portfolio-card-wide {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.22fr) minmax(380px, .78fr);
  grid-template-rows: 520px;
}

.portfolio-card-wide.portfolio-card-reverse {
  grid-template-columns: minmax(380px, .78fr) minmax(0, 1.22fr);
}

.portfolio-card-wide.portfolio-card-reverse .portfolio-media {
  order: 2;
}

.portfolio-media {
  position: relative;
  overflow: hidden;
  min-width: 0;
  background: var(--atlantic-navy);
}

.portfolio-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgb(11 29 51 / .34), transparent 44%);
  pointer-events: none;
}

.portfolio-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.portfolio-card:hover .portfolio-media img {
  transform: scale(1.025);
}

.portfolio-image-note {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 16px;
  padding: 7px 9px;
  color: var(--atlantic-cream);
  background: rgb(11 29 51 / .82);
  border: 1px solid rgb(212 175 55 / .38);
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.portfolio-copy {
  position: relative;
  padding: 30px 30px 32px;
}

.portfolio-card-wide .portfolio-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 44px;
}

.portfolio-index {
  position: absolute;
  top: 26px;
  right: 28px;
  color: rgb(212 175 55 / .34);
  font-family: var(--font-display);
  font-size: 3.2rem;
  line-height: 1;
}

.portfolio-kicker {
  display: block;
  padding-right: 54px;
  color: var(--atlantic-gold);
  font-size: .64rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.portfolio-copy h2 {
  margin: 12px 0 15px;
  padding-right: 42px;
  color: var(--atlantic-navy);
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.7vw, 2.8rem);
  line-height: 1.02;
  font-weight: 500;
}

.portfolio-copy p {
  margin: 0;
  color: var(--atlantic-charcoal);
  font-size: .91rem;
  line-height: 1.72;
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.portfolio-tags span {
  padding: 7px 9px;
  border: 1px solid rgb(212 175 55 / .42);
  color: var(--atlantic-navy);
  background: var(--atlantic-cream);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.projects-page .projects-scope .section-title {
  max-width: 900px;
  margin-inline: auto;
}

.project-scope-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgb(212 175 55 / .28);
  border-left: 1px solid rgb(212 175 55 / .28);
}

.project-scope-item {
  min-height: 190px;
  padding: 28px 26px;
  border-right: 1px solid rgb(212 175 55 / .28);
  border-bottom: 1px solid rgb(212 175 55 / .28);
  transition: background .22s ease, color .22s ease;
}

.project-scope-item:hover {
  background: rgb(245 241 230 / .06);
}

.project-scope-item > span {
  display: block;
  margin-bottom: 30px;
  color: var(--atlantic-gold);
  font-family: var(--font-display);
  font-size: 1.45rem;
}

.project-scope-item strong {
  display: block;
  color: var(--atlantic-cream);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
}

.project-scope-item small {
  display: block;
  margin-top: 10px;
  color: var(--atlantic-cream);
  font-size: .76rem;
  line-height: 1.55;
}

.projects-photo-plan-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}

.projects-page .projects-photo-plan .section-copy {
  margin-top: 0;
}

@media (max-width: 1050px) {
  .projects-page .projects-heading {
    display: grid;
    align-items: start;
  }

  .projects-page .projects-heading-copy {
    margin-top: 18px;
  }

  .portfolio-card-wide,
  .portfolio-card-wide.portfolio-card-reverse {
    grid-template-columns: 1fr;
    grid-template-rows: 420px auto;
  }

  .portfolio-card-wide.portfolio-card-reverse .portfolio-media {
    order: 0;
  }

  .portfolio-card-wide .portfolio-copy {
    padding: 34px 30px 36px;
  }

  .project-scope-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .projects-showcase {
    grid-template-columns: 1fr;
  }

  .portfolio-card-wide {
    grid-column: auto;
  }

  .projects-photo-plan-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 620px) {
  .portfolio-card {
    grid-template-rows: 270px auto;
  }

  .portfolio-card-wide,
  .portfolio-card-wide.portfolio-card-reverse {
    grid-template-rows: 290px auto;
  }

  .portfolio-copy,
  .portfolio-card-wide .portfolio-copy {
    padding: 26px 22px 28px;
  }

  .portfolio-index {
    top: 22px;
    right: 20px;
    font-size: 2.6rem;
  }

  .portfolio-copy h2 {
    padding-right: 28px;
  }

  .project-scope-grid {
    grid-template-columns: 1fr;
  }

  .project-scope-item {
    min-height: 160px;
  }
}


/* =========================================================
   PROCESS PAGE v3.8
   Six-step premium finish-carpentry workflow.
   Scoped to .process-page so approved Home, Services,
   About and Projects remain unchanged.
   ========================================================= */

.process-page .process-hero .page-lead {
  max-width: 900px;
}

.process-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(50px, 7vw, 100px);
  align-items: start;
}

.process-page .process-intro .section-copy {
  margin-top: 0;
}

.process-intro-note {
  display: flex;
  gap: 10px;
  margin: 18px 0 0;
  color: var(--atlantic-charcoal);
  font-size: .72rem;
  line-height: 1.6;
}

.process-intro-note > span {
  color: var(--atlantic-gold);
  flex: 0 0 auto;
}

.process-timeline {
  max-width: 1120px;
  margin-inline: auto;
}

.process-step {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 34px;
  min-height: 280px;
}

.process-step-rail {
  position: relative;
  display: flex;
  justify-content: center;
}

.process-step-number {
  position: relative;
  z-index: 2;
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border: 1px solid var(--atlantic-gold);
  background: var(--atlantic-cream);
  color: var(--atlantic-gold);
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1;
}

.process-step-line {
  position: absolute;
  top: 74px;
  bottom: 0;
  width: 1px;
  background: linear-gradient(var(--atlantic-gold), rgb(212 175 55 / .22));
}

.process-step-copy {
  position: relative;
  margin-bottom: 24px;
  padding: 4px 42px 38px 0;
  border-bottom: 1px solid rgb(51 54 58 / .14);
}

.process-step-final .process-step-copy {
  border-bottom: 0;
  margin-bottom: 0;
}

.process-step-kicker {
  display: block;
  color: var(--atlantic-gold);
  font-size: .65rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.process-step-copy h2 {
  margin: 12px 0 14px;
  color: var(--atlantic-navy);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.1vw, 3.2rem);
  line-height: 1;
  font-weight: 500;
}

.process-step-copy > p {
  max-width: 780px;
  margin: 0;
  color: var(--atlantic-charcoal);
  font-size: .95rem;
  line-height: 1.75;
}

.process-step-copy ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
}

.process-step-copy li {
  padding: 7px 10px;
  border: 1px solid rgb(212 175 55 / .42);
  background: var(--white);
  color: var(--atlantic-navy);
  font-size: .58rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.process-page .process-principles .section-title {
  max-width: 900px;
  margin-inline: auto;
}

.process-principle-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgb(212 175 55 / .28);
  border-left: 1px solid rgb(212 175 55 / .28);
}

.process-principle-card {
  min-height: 250px;
  padding: 30px 26px;
  border-right: 1px solid rgb(212 175 55 / .28);
  border-bottom: 1px solid rgb(212 175 55 / .28);
}

.process-principle-card > span {
  display: block;
  margin-bottom: 42px;
  color: var(--atlantic-gold);
  font-family: var(--font-display);
  font-size: 1.7rem;
}

.process-principle-card h3 {
  margin: 0;
  color: var(--atlantic-cream);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
}

.process-principle-card p {
  margin: 12px 0 0;
  color: var(--atlantic-cream);
  font-size: .82rem;
  line-height: 1.65;
}

.process-next-step-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(52px, 8vw, 110px);
  align-items: start;
}

.process-prep-list {
  border-top: 1px solid rgb(51 54 58 / .18);
}

.process-prep-list > div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgb(51 54 58 / .18);
}

.process-prep-list > div > span {
  color: var(--atlantic-gold);
  font-family: var(--font-display);
  font-size: 1rem;
}

.process-prep-list p {
  margin: 0;
}

.process-prep-list strong {
  display: block;
  color: var(--atlantic-navy);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
}

.process-prep-list small {
  display: block;
  margin-top: 6px;
  color: var(--atlantic-charcoal);
  font-size: .76rem;
  line-height: 1.55;
}

@media (max-width: 1000px) {
  .process-intro-grid,
  .process-next-step-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .process-principle-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .process-step {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 18px;
    min-height: 0;
  }

  .process-step-number {
    width: 54px;
    height: 54px;
    font-size: 1.1rem;
  }

  .process-step-line {
    top: 54px;
  }

  .process-step-copy {
    padding-right: 0;
    padding-bottom: 30px;
    margin-bottom: 20px;
  }

  .process-step-copy h2 {
    font-size: clamp(1.8rem, 9vw, 2.5rem);
  }
}

@media (max-width: 620px) {
  .process-principle-grid {
    grid-template-columns: 1fr;
  }

  .process-principle-card {
    min-height: 210px;
  }

  .process-step {
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 14px;
  }

  .process-step-number {
    width: 48px;
    height: 48px;
    font-size: 1rem;
  }

  .process-step-line {
    top: 48px;
  }

  .process-step-copy ul {
    gap: 6px;
  }

  .process-step-copy li {
    font-size: .52rem;
  }

  .process-prep-list > div {
    grid-template-columns: 38px 1fr;
  }
}


/* =========================================================
   FINISHCALC PRO PAGE v3.9
   Premium product page for Atlantic's finish-carpentry app.
   Scoped to .finishcalc-page so previously approved company
   pages remain unchanged.
   ========================================================= */

.finishcalc-page .finishcalc-hero .page-lead {
  max-width: 850px;
}

.finishcalc-product-panel {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(420px, .9fr) minmax(0, 1.1fr);
  border: 1px solid rgb(212 175 55 / .34);
  background: var(--atlantic-navy);
}

.finishcalc-product-media {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border-right: 1px solid rgb(212 175 55 / .26);
  background: var(--atlantic-navy);
}

.finishcalc-product-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.finishcalc-product-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgb(11 29 51 / .34), transparent 42%);
  pointer-events: none;
}

.finishcalc-product-label {
  position: absolute;
  z-index: 2;
  left: 22px;
  bottom: 20px;
  padding: 7px 10px;
  border: 1px solid rgb(212 175 55 / .42);
  background: rgb(11 29 51 / .86);
  color: var(--atlantic-cream);
  font-size: .57rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.finishcalc-product-copy {
  align-self: center;
  padding: clamp(46px, 6vw, 82px);
}

.finishcalc-monogram {
  width: 82px;
  height: 82px;
  margin-top: 28px;
  display: grid;
  place-items: center;
  border: 1px solid var(--atlantic-gold);
  color: var(--atlantic-gold);
  font-family: var(--font-display);
  font-size: 2rem;
}

.finishcalc-product-copy h2 {
  margin: 24px 0 18px;
  color: var(--atlantic-cream);
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 4.7vw, 5rem);
  line-height: .98;
  font-weight: 500;
}

.finishcalc-product-copy > p {
  max-width: 680px;
  margin: 0;
  color: var(--atlantic-cream);
  font-size: .96rem;
  line-height: 1.8;
}

.finishcalc-status {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 28px;
  padding: 17px 18px;
  border-top: 1px solid rgb(212 175 55 / .28);
  border-bottom: 1px solid rgb(212 175 55 / .28);
}

.finishcalc-status-dot {
  width: 11px;
  height: 11px;
  flex: 0 0 auto;
  border: 1px solid var(--atlantic-gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgb(212 175 55 / .08);
}

.finishcalc-status strong {
  display: block;
  color: var(--atlantic-gold);
  font-family: var(--font-display);
  font-size: .84rem;
  font-weight: 500;
  letter-spacing: .06em;
}

.finishcalc-status small {
  display: block;
  margin-top: 5px;
  color: var(--atlantic-cream);
  font-size: .70rem;
  line-height: 1.5;
}

.finishcalc-product-actions,
.finishcalc-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.finishcalc-tools-heading {
  align-items: end;
}

.finishcalc-tools-heading > div:first-child {
  max-width: 720px;
}

.finishcalc-tools-heading .section-copy {
  max-width: 610px;
  margin-top: 0;
}

.finishcalc-tool-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.finishcalc-tool-card {
  position: relative;
  min-height: 285px;
  padding: 28px 26px;
  overflow: hidden;
  border: 1px solid rgb(51 54 58 / .16);
  background: var(--white);
  box-shadow: 0 12px 30px rgb(11 29 51 / .06);
}

.finishcalc-tool-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--atlantic-gold);
  transform: scaleY(.28);
  transform-origin: top;
  transition: transform .22s ease;
}

.finishcalc-tool-card:hover::before {
  transform: scaleY(1);
}

.finishcalc-tool-card-featured {
  grid-column: span 3;
  min-height: 235px;
}

.finishcalc-tool-index {
  position: absolute;
  top: 24px;
  right: 24px;
  color: rgb(212 175 55 / .34);
  font-family: var(--font-display);
  font-size: 2.9rem;
  line-height: 1;
}

.finishcalc-tool-kicker {
  display: block;
  color: var(--atlantic-gold);
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.finishcalc-tool-card h3 {
  max-width: 290px;
  margin: 34px 0 14px;
  padding-right: 24px;
  color: var(--atlantic-navy);
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1.08;
  font-weight: 500;
}

.finishcalc-tool-card p {
  max-width: 560px;
  margin: 0;
  color: var(--atlantic-charcoal);
  font-size: .84rem;
  line-height: 1.7;
}

.finishcalc-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgb(51 54 58 / .16);
  border-left: 1px solid rgb(51 54 58 / .16);
}

.finishcalc-feature {
  min-height: 235px;
  padding: 28px 25px;
  border-right: 1px solid rgb(51 54 58 / .16);
  border-bottom: 1px solid rgb(51 54 58 / .16);
  background: var(--white);
}

.finishcalc-feature > span {
  display: block;
  margin-bottom: 38px;
  color: var(--atlantic-gold);
  font-family: var(--font-display);
  font-size: 1.55rem;
}

.finishcalc-feature h3 {
  margin: 0;
  color: var(--atlantic-navy);
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 500;
}

.finishcalc-feature p {
  margin: 11px 0 0;
  color: var(--atlantic-charcoal);
  font-size: .80rem;
  line-height: 1.65;
}

.finishcalc-brand-bridge-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, .8fr);
  gap: clamp(54px, 8vw, 110px);
  align-items: center;
}

.finishcalc-page .finishcalc-brand-bridge .section-copy {
  color: var(--atlantic-cream);
}

.finishcalc-brand-lockup {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 30px;
  border: 1px solid var(--atlantic-gold);
  background: rgb(245 241 230 / .025);
}

.finishcalc-brand-lockup-mark {
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid var(--atlantic-gold);
  color: var(--atlantic-gold);
  font-family: var(--font-display);
  font-size: 1.8rem;
}

.finishcalc-brand-lockup strong {
  display: block;
  color: var(--atlantic-cream);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: .05em;
}

.finishcalc-brand-lockup span {
  display: block;
  margin-top: 8px;
  color: var(--atlantic-gold);
  font-size: .56rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: .10em;
}

.finishcalc-distribution-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, .85fr);
  gap: clamp(52px, 8vw, 110px);
  align-items: center;
}

.finishcalc-store-status {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgb(51 54 58 / .18);
  border-left: 1px solid rgb(51 54 58 / .18);
}

.finishcalc-store-status > div {
  min-height: 170px;
  padding: 26px 22px;
  border-right: 1px solid rgb(51 54 58 / .18);
  border-bottom: 1px solid rgb(51 54 58 / .18);
  background: var(--white);
}

.finishcalc-store-status span {
  display: block;
  color: var(--atlantic-gold);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.finishcalc-store-status strong {
  display: block;
  margin-top: 32px;
  color: var(--atlantic-navy);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
}

.finishcalc-store-status small {
  display: block;
  margin-top: 8px;
  color: var(--atlantic-charcoal);
  font-size: .69rem;
  line-height: 1.5;
}

.finishcalc-page .cta-inner .finishcalc-cta-actions {
  margin-top: 0;
  flex: 0 0 auto;
}

@media (max-width: 1100px) {
  .finishcalc-product-panel {
    grid-template-columns: 1fr;
  }

  .finishcalc-product-media {
    min-height: 520px;
    border-right: 0;
    border-bottom: 1px solid rgb(212 175 55 / .26);
  }

  .finishcalc-tool-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .finishcalc-tool-card-featured {
    grid-column: span 2;
  }

  .finishcalc-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .finishcalc-brand-bridge-grid,
  .finishcalc-distribution-grid {
    grid-template-columns: 1fr;
  }

  .finishcalc-brand-lockup {
    max-width: 560px;
  }

  .finishcalc-store-status {
    max-width: 640px;
  }
}

@media (max-width: 760px) {
  .finishcalc-tools-heading {
    display: grid;
    align-items: start;
  }

  .finishcalc-tools-heading .section-copy {
    margin-top: 18px;
  }
}

@media (max-width: 620px) {
  .finishcalc-product-media {
    min-height: 390px;
  }

  .finishcalc-product-copy {
    padding: 34px 22px 38px;
  }

  .finishcalc-monogram {
    width: 68px;
    height: 68px;
    font-size: 1.65rem;
  }

  .finishcalc-tool-grid {
    grid-template-columns: 1fr;
  }

  .finishcalc-tool-card-featured {
    grid-column: auto;
  }

  .finishcalc-tool-card {
    min-height: 240px;
  }

  .finishcalc-feature-grid {
    grid-template-columns: 1fr;
  }

  .finishcalc-brand-lockup {
    align-items: flex-start;
    padding: 24px 20px;
  }

  .finishcalc-store-status {
    grid-template-columns: 1fr;
  }

  .finishcalc-page .cta-inner .finishcalc-cta-actions {
    width: 100%;
  }
}


/* =========================================================
   FINISHCALC PRO COMPACT REFINEMENT v3.9.1
   Reduces the oversized product presentation seen on desktop.
   No image asset is changed.
   ========================================================= */

.finishcalc-page .finishcalc-product {
  padding-top: 56px;
  padding-bottom: 56px;
}

.finishcalc-page .finishcalc-product .container {
  width: min(calc(100% - 40px), 1120px);
}

.finishcalc-page .finishcalc-product-panel {
  grid-template-columns: minmax(360px, .86fr) minmax(0, 1.14fr);
  min-height: 0;
}

.finishcalc-page .finishcalc-product-media {
  min-height: 500px;
}

.finishcalc-page .finishcalc-product-media img {
  object-fit: contain;
  object-position: center;
  padding: 18px;
  background: var(--atlantic-navy);
}

.finishcalc-page .finishcalc-product-copy {
  padding: 48px 50px;
}

.finishcalc-page .finishcalc-monogram {
  width: 64px;
  height: 64px;
  margin-top: 20px;
  font-size: 1.55rem;
}

.finishcalc-page .finishcalc-product-copy h2 {
  margin: 18px 0 16px;
  font-size: clamp(2.35rem, 3.8vw, 3.85rem);
  line-height: .98;
}

.finishcalc-page .finishcalc-product-copy > p {
  font-size: .90rem;
  line-height: 1.72;
}

.finishcalc-page .finishcalc-status {
  margin-top: 22px;
  padding: 14px 0;
}

.finishcalc-page .finishcalc-product-actions {
  margin-top: 22px;
}

.finishcalc-page .finishcalc-product-actions .button {
  min-height: 44px;
  padding-inline: 20px;
}

@media (max-width: 1100px) {
  .finishcalc-page .finishcalc-product .container {
    width: min(calc(100% - 32px), 940px);
  }

  .finishcalc-page .finishcalc-product-panel {
    grid-template-columns: 1fr;
  }

  .finishcalc-page .finishcalc-product-media {
    min-height: 420px;
  }

  .finishcalc-page .finishcalc-product-media img {
    padding: 24px;
  }

  .finishcalc-page .finishcalc-product-copy {
    padding: 40px 36px 44px;
  }
}

@media (max-width: 620px) {
  .finishcalc-page .finishcalc-product {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .finishcalc-page .finishcalc-product .container {
    width: min(calc(100% - 24px), 560px);
  }

  .finishcalc-page .finishcalc-product-media {
    min-height: 330px;
  }

  .finishcalc-page .finishcalc-product-media img {
    padding: 14px;
  }

  .finishcalc-page .finishcalc-product-copy {
    padding: 30px 22px 34px;
  }

  .finishcalc-page .finishcalc-product-copy h2 {
    font-size: clamp(2.1rem, 10.5vw, 3rem);
  }
}


/* =========================================================
   FINISHCALC PRO EXPLAINER v3.9.2
   Adds a clear, benefit-led explanation of what the product
   is and how it supports professional finish carpentry.
   ========================================================= */

.finishcalc-page .finishcalc-explainer {
  padding-top: 72px;
  padding-bottom: 72px;
}

.finishcalc-explainer-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(52px, 7vw, 96px);
  align-items: start;
}

.finishcalc-explainer-heading .section-title {
  max-width: 650px;
}

.finishcalc-explainer-copy {
  max-width: 700px;
}

.finishcalc-explainer-copy p {
  margin: 0;
  color: var(--atlantic-charcoal);
  font-size: .96rem;
  line-height: 1.78;
}

.finishcalc-explainer-copy p + p {
  margin-top: 16px;
}

.finishcalc-explainer-copy strong {
  color: var(--atlantic-navy);
  font-weight: 700;
}

.finishcalc-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 52px;
  border-top: 1px solid rgb(51 54 58 / .16);
  border-left: 1px solid rgb(51 54 58 / .16);
}

.finishcalc-benefit {
  min-height: 245px;
  padding: 27px 24px;
  background: var(--white);
  border-right: 1px solid rgb(51 54 58 / .16);
  border-bottom: 1px solid rgb(51 54 58 / .16);
}

.finishcalc-benefit-number {
  display: block;
  margin-bottom: 36px;
  color: var(--atlantic-gold);
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1;
}

.finishcalc-benefit h3 {
  margin: 0;
  color: var(--atlantic-navy);
  font-family: var(--font-display);
  font-size: 1.18rem;
  line-height: 1.15;
  font-weight: 500;
}

.finishcalc-benefit p {
  margin: 12px 0 0;
  color: var(--atlantic-charcoal);
  font-size: .79rem;
  line-height: 1.66;
}

@media (max-width: 1000px) {
  .finishcalc-explainer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .finishcalc-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .finishcalc-page .finishcalc-explainer {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .finishcalc-benefit-grid {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .finishcalc-benefit {
    min-height: 0;
  }
}


/* =========================================================
   FINISHCALC PRO DISTRIBUTION REFINEMENT v3.9.3
   Replaces the administrative store copy with a benefit-led
   coming-soon section and prepares future direct store links.
   ========================================================= */

.finishcalc-page .finishcalc-distribution {
  padding-top: 72px;
  padding-bottom: 72px;
}

.finishcalc-page .finishcalc-distribution-grid {
  grid-template-columns: minmax(0, 1fr) minmax(430px, .9fr);
  gap: clamp(56px, 8vw, 110px);
  align-items: center;
}

.finishcalc-distribution-copy .section-title {
  max-width: 700px;
}

.finishcalc-distribution-copy .section-copy {
  max-width: 700px;
}

.finishcalc-distribution-lead {
  max-width: 700px;
  margin: 18px 0 0;
  color: var(--atlantic-navy);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.35;
}

.finishcalc-see-tools {
  display: inline-flex;
  margin-top: 24px;
}

.finishcalc-store-wrap {
  min-width: 0;
}

.finishcalc-page .finishcalc-store-status {
  max-width: none;
}

.finishcalc-page .finishcalc-store-card {
  position: relative;
  min-height: 205px;
  padding: 28px 24px;
  background: var(--white);
}

.finishcalc-page .finishcalc-store-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--atlantic-gold);
  transform: scaleY(.34);
  transform-origin: top;
}

.finishcalc-page .finishcalc-store-card span {
  color: var(--atlantic-gold);
}

.finishcalc-page .finishcalc-store-card strong {
  margin-top: 34px;
  font-size: 1.25rem;
}

.finishcalc-page .finishcalc-store-card em {
  display: block;
  margin-top: 8px;
  color: var(--atlantic-navy);
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
}

.finishcalc-page .finishcalc-store-card small {
  margin-top: 14px;
  color: var(--atlantic-gold);
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.finishcalc-store-note {
  margin: 14px 0 0;
  color: var(--atlantic-charcoal);
  font-size: .68rem;
  line-height: 1.55;
}

@media (max-width: 1100px) {
  .finishcalc-page .finishcalc-distribution-grid {
    grid-template-columns: 1fr;
  }

  .finishcalc-store-wrap {
    max-width: 700px;
  }
}

@media (max-width: 620px) {
  .finishcalc-page .finishcalc-distribution {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .finishcalc-distribution-lead {
    font-size: 1.2rem;
  }

  .finishcalc-page .finishcalc-store-card {
    min-height: 180px;
  }
}


/* =========================================================
   FINISHCALC / FOOTER POLISH v3.9.4
   - Keeps Trajan-style display headings where appropriate.
   - Uses Montserrat for the sentence-style distribution CTA
     so it reads naturally instead of visually all-caps.
   - Rebuilds the footer logo lockup from the same Atlantic
     code/asset treatment used in the header.
   ========================================================= */

/* The official display face is cap-oriented. This particular line is a
   sentence-style product CTA, so Montserrat gives it natural mixed case. */
.finishcalc-page .finishcalc-distribution-copy .section-title {
  max-width: 690px;
  font-family: var(--font-body);
  font-size: clamp(2.15rem, 3.6vw, 3.35rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.025em;
  text-transform: none;
}

.finishcalc-page .finishcalc-distribution-lead {
  max-width: 650px;
  font-family: var(--font-body);
  font-size: clamp(1.02rem, 1.45vw, 1.22rem);
  font-weight: 500;
  line-height: 1.58;
  letter-spacing: 0;
  text-transform: none;
}

/* Footer brand lockup: same circular Atlantic emblem treatment as the header. */
.footer-brand-lockup {
  gap: 14px;
  align-items: center;
}

.footer-emblem-frame {
  position: relative;
  display: block;
  width: 70px;
  height: 70px;
  flex: 0 0 70px;
  overflow: hidden;
  border-radius: 50%;
  line-height: 0;
}

.footer-emblem {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 90px;
  height: 90px;
  max-width: none;
  object-fit: contain;
  transform: translate(-50%, -50%) scale(1.02);
}

.footer-wordmark strong {
  font-size: 1.52rem;
}

.footer-wordmark small {
  font-size: .60rem;
}

.footer-wordmark em {
  font-size: .50rem;
}

.footer-brand > p:first-of-type {
  margin-top: 24px;
}

@media (max-width: 620px) {
  .finishcalc-page .finishcalc-distribution-copy .section-title {
    font-size: clamp(1.9rem, 8.8vw, 2.7rem);
  }

  .footer-emblem-frame {
    width: 60px;
    height: 60px;
    flex-basis: 60px;
  }

  .footer-emblem {
    width: 78px;
    height: 78px;
  }

  .footer-wordmark strong {
    font-size: 1.3rem;
  }
}


/* =========================================================
   CONTACT PAGE v3.10
   Premium project-contact and estimate-request experience.
   Scoped to .contact-page so previously approved pages stay
   unchanged.
   ========================================================= */

.contact-page .contact-hero .page-lead {
  max-width: 880px;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: minmax(330px, .78fr) minmax(0, 1.22fr);
  gap: 34px;
  align-items: start;
}

.contact-project-card {
  position: sticky;
  top: 122px;
  padding: 36px 34px;
  background: var(--atlantic-navy);
  color: var(--atlantic-cream);
  border: 1px solid rgb(212 175 55 / .34);
}

.contact-project-card h2 {
  margin: 12px 0 14px;
  color: var(--atlantic-cream);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1;
  font-weight: 500;
}

.contact-project-intro {
  margin: 0;
  color: var(--atlantic-cream);
  font-size: .88rem;
  line-height: 1.7;
}

.contact-detail-list {
  margin-top: 30px;
  border-top: 1px solid rgb(212 175 55 / .28);
}

.contact-detail {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid rgb(212 175 55 / .22);
}

.contact-detail > span {
  color: var(--atlantic-gold);
  font-family: var(--font-display);
  font-size: .90rem;
}

.contact-detail strong {
  display: block;
  color: var(--atlantic-gold);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-detail a,
.contact-detail p {
  display: block;
  margin: 6px 0 0;
  color: var(--atlantic-cream);
  font-size: .84rem;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.contact-project-note {
  display: flex;
  gap: 11px;
  margin-top: 26px;
  padding-top: 22px;
  color: var(--atlantic-cream);
}

.contact-project-note > span {
  color: var(--atlantic-gold);
  flex: 0 0 auto;
}

.contact-project-note p {
  margin: 0;
  font-size: .70rem;
  line-height: 1.6;
}

.contact-page .contact-estimate-form {
  padding: 38px;
  border-radius: 0;
}

.contact-form-heading {
  margin-bottom: 26px;
}

.contact-form-heading .section-title {
  margin: 10px 0 10px;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
}

.contact-form-heading > p {
  margin: 0;
  color: var(--atlantic-charcoal);
  font-size: .82rem;
  line-height: 1.6;
}

.contact-page .field label span {
  color: var(--atlantic-gold);
  font-size: .55rem;
  letter-spacing: .08em;
  margin-left: 5px;
}

.contact-page .field input,
.contact-page .field select,
.contact-page .field textarea {
  border-radius: 0;
  min-height: 52px;
}

.contact-page .field textarea {
  min-height: 175px;
}

.contact-form-actions {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 20px;
  align-items: center;
  margin-top: 22px;
}

.contact-page .form-status {
  margin: 0;
  color: var(--atlantic-charcoal);
  font-size: .66rem;
  line-height: 1.55;
}

.contact-page .contact-help .section-title,
.contact-page .contact-next .section-title {
  max-width: 900px;
  margin-inline: auto;
}

.contact-help-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgb(51 54 58 / .16);
  border-left: 1px solid rgb(51 54 58 / .16);
}

.contact-help-card {
  min-height: 240px;
  padding: 28px 24px;
  background: var(--white);
  border-right: 1px solid rgb(51 54 58 / .16);
  border-bottom: 1px solid rgb(51 54 58 / .16);
}

.contact-help-card > span {
  display: block;
  margin-bottom: 38px;
  color: var(--atlantic-gold);
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.contact-help-card h3 {
  margin: 0;
  color: var(--atlantic-navy);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
}

.contact-help-card p {
  margin: 11px 0 0;
  color: var(--atlantic-charcoal);
  font-size: .80rem;
  line-height: 1.65;
}

.contact-next-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgb(212 175 55 / .28);
  border-left: 1px solid rgb(212 175 55 / .28);
}

.contact-next-grid article {
  min-height: 235px;
  padding: 30px 26px;
  border-right: 1px solid rgb(212 175 55 / .28);
  border-bottom: 1px solid rgb(212 175 55 / .28);
}

.contact-next-grid article > span {
  display: block;
  margin-bottom: 38px;
  color: var(--atlantic-gold);
  font-family: var(--font-display);
  font-size: 1.55rem;
}

.contact-next-grid h3 {
  margin: 0;
  color: var(--atlantic-cream);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
}

.contact-next-grid p {
  margin: 12px 0 0;
  color: var(--atlantic-cream);
  font-size: .81rem;
  line-height: 1.66;
}

@media (max-width: 1050px) {
  .contact-main-grid {
    grid-template-columns: 1fr;
  }

  .contact-project-card {
    position: static;
  }

  .contact-help-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .contact-form-actions {
    grid-template-columns: 1fr;
  }

  .contact-form-actions .button {
    justify-self: start;
  }

  .contact-next-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .contact-page .contact-estimate-form,
  .contact-project-card {
    padding: 28px 22px;
  }

  .contact-page .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-page .field.full {
    grid-column: auto;
  }

  .contact-help-grid {
    grid-template-columns: 1fr;
  }

  .contact-help-card,
  .contact-next-grid article {
    min-height: 0;
  }
}


/* =========================================================
   SUPPORT PAGE v3.11
   Dedicated FinishCalc Pro support destination.
   ========================================================= */
.support-page .support-hero .page-lead { max-width: 840px; }

.support-start-grid {
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(330px,.72fr);
  gap:clamp(54px,8vw,110px);
  align-items:center;
}
.support-primary .section-title,
.support-primary .section-copy { max-width:700px; }
.support-email-button { margin-top:26px; }
.support-email-note {
  max-width:650px; margin:16px 0 0; color:var(--atlantic-charcoal);
  font-size:.67rem; line-height:1.55;
}
.support-email-note a {
  color:var(--atlantic-navy); text-decoration:underline;
  text-decoration-color:rgb(212 175 55 / .55); text-underline-offset:3px;
}
.support-version-card {
  padding:32px; background:var(--atlantic-navy); color:var(--atlantic-cream);
  border:1px solid var(--atlantic-gold);
}
.support-version-label {
  display:block; color:var(--atlantic-gold); font-size:.61rem; font-weight:700;
  letter-spacing:.13em; text-transform:uppercase;
}
.support-version-mark {
  width:72px; height:72px; margin-top:24px; display:grid; place-items:center;
  border:1px solid var(--atlantic-gold); color:var(--atlantic-gold);
  font-family:var(--font-display); font-size:1.75rem;
}
.support-version-card h2 {
  margin:20px 0 0; color:var(--atlantic-cream); font-family:var(--font-display);
  font-size:2rem; font-weight:500;
}
.support-version-card dl { margin:26px 0; border-top:1px solid rgb(212 175 55 / .27); }
.support-version-card dl > div {
  display:grid; grid-template-columns:100px 1fr; gap:18px; padding:13px 0;
  border-bottom:1px solid rgb(212 175 55 / .22);
}
.support-version-card dt {
  color:var(--atlantic-gold); font-size:.58rem; font-weight:700;
  letter-spacing:.10em; text-transform:uppercase;
}
.support-version-card dd { margin:0; color:var(--atlantic-cream); font-size:.76rem; }

.support-info-grid {
  display:grid; grid-template-columns:repeat(4,minmax(0,1fr));
  border-top:1px solid rgb(51 54 58 / .16); border-left:1px solid rgb(51 54 58 / .16);
}
.support-info-card {
  min-height:255px; padding:28px 24px; background:var(--white);
  border-right:1px solid rgb(51 54 58 / .16); border-bottom:1px solid rgb(51 54 58 / .16);
}
.support-info-card > span,
.support-topic-card > span {
  display:block; margin-bottom:38px; color:var(--atlantic-gold);
  font-family:var(--font-display); font-size:1.5rem;
}
.support-info-card h3,
.support-topic-card h3 {
  margin:0; font-family:var(--font-display); font-size:1.22rem; font-weight:500;
}
.support-info-card h3 { color:var(--atlantic-navy); }
.support-info-card p {
  margin:11px 0 0; color:var(--atlantic-charcoal); font-size:.80rem; line-height:1.65;
}

.support-page .support-topics .section-title { max-width:820px; margin-inline:auto; }
.support-topic-grid {
  display:grid; grid-template-columns:repeat(4,minmax(0,1fr));
  border-top:1px solid rgb(212 175 55 / .28); border-left:1px solid rgb(212 175 55 / .28);
}
.support-topic-card {
  min-height:235px; padding:28px 24px;
  border-right:1px solid rgb(212 175 55 / .28); border-bottom:1px solid rgb(212 175 55 / .28);
}
.support-topic-card h3 { color:var(--atlantic-cream); }
.support-topic-card p {
  margin:11px 0 0; color:var(--atlantic-cream); font-size:.79rem; line-height:1.65;
}

.support-privacy-grid,
.support-other-grid {
  display:grid; grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);
  gap:clamp(50px,8vw,110px); align-items:start;
}
.support-page .support-privacy .section-copy { margin-top:0; }
.support-page .support-privacy .section-copy + .section-copy { margin-top:15px; }
.support-privacy-links { display:flex; flex-wrap:wrap; gap:24px; margin-top:24px; }
.support-other-grid { align-items:center; }
.support-other-action { display:flex; flex-direction:column; align-items:flex-start; gap:20px; }

@media (max-width:1000px) {
  .support-start-grid,.support-privacy-grid,.support-other-grid { grid-template-columns:1fr; gap:30px; }
  .support-version-card { max-width:560px; }
  .support-info-grid,.support-topic-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width:620px) {
  .support-info-grid,.support-topic-grid { grid-template-columns:1fr; }
  .support-info-card,.support-topic-card { min-height:0; }
  .support-version-card { padding:28px 22px; }
  .support-version-card dl > div { grid-template-columns:86px 1fr; }
}


/* =========================================================
   PRIVACY POLICY PAGE v3.12
   Website + FinishCalc Pro privacy policy presentation.
   Scoped to .privacy-page so approved pages remain intact.
   ========================================================= */

.privacy-page .privacy-hero .page-lead {
  max-width: 820px;
}

.privacy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 24px;
  color: var(--atlantic-gold);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.privacy-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(50px, 8vw, 105px);
  align-items: start;
}

.privacy-page .privacy-intro .section-copy {
  margin-top: 0;
}

.privacy-review-note {
  display: flex;
  gap: 10px;
  margin: 18px 0 0;
  color: var(--atlantic-charcoal);
  font-size: .70rem;
  line-height: 1.6;
}

.privacy-review-note > span {
  flex: 0 0 auto;
  color: var(--atlantic-gold);
}

.privacy-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgb(51 54 58 / .16);
  border-left: 1px solid rgb(51 54 58 / .16);
}

.privacy-summary-card {
  min-height: 260px;
  padding: 28px 24px;
  background: var(--white);
  border-right: 1px solid rgb(51 54 58 / .16);
  border-bottom: 1px solid rgb(51 54 58 / .16);
}

.privacy-summary-card > span {
  display: block;
  margin-bottom: 38px;
  color: var(--atlantic-gold);
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.privacy-summary-card h3 {
  margin: 0;
  color: var(--atlantic-navy);
  font-family: var(--font-display);
  font-size: 1.18rem;
  line-height: 1.15;
  font-weight: 500;
}

.privacy-summary-card p {
  margin: 12px 0 0;
  color: var(--atlantic-charcoal);
  font-size: .79rem;
  line-height: 1.65;
}

.privacy-layout {
  display: grid;
  grid-template-columns: 245px minmax(0, 1fr);
  gap: clamp(50px, 7vw, 95px);
  align-items: start;
}

.privacy-toc {
  position: sticky;
  top: 122px;
  display: grid;
  border-top: 1px solid rgb(51 54 58 / .18);
}

.privacy-toc-label {
  padding: 15px 0;
  color: var(--atlantic-gold);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  border-bottom: 1px solid rgb(51 54 58 / .18);
}

.privacy-toc a {
  padding: 10px 0;
  color: var(--atlantic-charcoal);
  font-size: .68rem;
  line-height: 1.4;
  border-bottom: 1px solid rgb(51 54 58 / .10);
}

.privacy-toc a:hover {
  color: var(--atlantic-gold);
}

.privacy-legal-content {
  max-width: 900px;
}

.privacy-legal-content > section {
  position: relative;
  padding: 0 0 38px 58px;
  margin-bottom: 38px;
  border-bottom: 1px solid rgb(51 54 58 / .14);
  scroll-margin-top: 125px;
}

.privacy-legal-content > section:last-child {
  margin-bottom: 0;
}

.privacy-section-number {
  position: absolute;
  left: 0;
  top: 3px;
  color: var(--atlantic-gold);
  font-family: var(--font-display);
  font-size: 1rem;
}

.privacy-legal-content h2 {
  margin: 0 0 16px;
  color: var(--atlantic-navy);
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.5vw, 2.35rem);
  line-height: 1.08;
  font-weight: 500;
}

.privacy-legal-content p {
  margin: 0;
  color: var(--atlantic-charcoal);
  font-size: .88rem;
  line-height: 1.78;
}

.privacy-legal-content p + p {
  margin-top: 14px;
}

.privacy-legal-content a {
  color: var(--atlantic-navy);
  text-decoration: underline;
  text-decoration-color: rgb(212 175 55 / .60);
  text-underline-offset: 3px;
}

@media (max-width: 1000px) {
  .privacy-intro-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .privacy-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .privacy-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .privacy-toc {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
  }

  .privacy-toc-label {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .privacy-summary-grid,
  .privacy-toc {
    grid-template-columns: 1fr;
  }

  .privacy-summary-card {
    min-height: 0;
  }

  .privacy-legal-content > section {
    padding-left: 42px;
  }

  .privacy-meta {
    display: grid;
  }
}


/* =========================================================
   TERMS OF USE PAGE v3.13
   Website + FinishCalc Pro terms presentation.
   Scoped to .terms-page so approved pages remain intact.
   ========================================================= */

.terms-page .terms-hero .page-lead {
  max-width: 820px;
}

.terms-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 24px;
  color: var(--atlantic-gold);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.terms-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(50px, 8vw, 105px);
  align-items: start;
}

.terms-page .terms-intro .section-copy {
  margin-top: 0;
}

.terms-note {
  display: flex;
  gap: 10px;
  margin: 18px 0 0;
  color: var(--atlantic-charcoal);
  font-size: .70rem;
  line-height: 1.6;
}

.terms-note > span {
  flex: 0 0 auto;
  color: var(--atlantic-gold);
}

.terms-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgb(51 54 58 / .16);
  border-left: 1px solid rgb(51 54 58 / .16);
}

.terms-summary-card {
  min-height: 260px;
  padding: 28px 24px;
  background: var(--white);
  border-right: 1px solid rgb(51 54 58 / .16);
  border-bottom: 1px solid rgb(51 54 58 / .16);
}

.terms-summary-card > span {
  display: block;
  margin-bottom: 38px;
  color: var(--atlantic-gold);
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.terms-summary-card h3 {
  margin: 0;
  color: var(--atlantic-navy);
  font-family: var(--font-display);
  font-size: 1.18rem;
  line-height: 1.15;
  font-weight: 500;
}

.terms-summary-card p {
  margin: 12px 0 0;
  color: var(--atlantic-charcoal);
  font-size: .79rem;
  line-height: 1.65;
}

.terms-layout {
  display: grid;
  grid-template-columns: 255px minmax(0, 1fr);
  gap: clamp(50px, 7vw, 95px);
  align-items: start;
}

.terms-toc {
  position: sticky;
  top: 122px;
  display: grid;
  border-top: 1px solid rgb(51 54 58 / .18);
}

.terms-toc-label {
  padding: 15px 0;
  color: var(--atlantic-gold);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  border-bottom: 1px solid rgb(51 54 58 / .18);
}

.terms-toc a {
  padding: 9px 0;
  color: var(--atlantic-charcoal);
  font-size: .66rem;
  line-height: 1.35;
  border-bottom: 1px solid rgb(51 54 58 / .10);
}

.terms-toc a:hover {
  color: var(--atlantic-gold);
}

.terms-legal-content {
  max-width: 900px;
}

.terms-legal-content > section {
  position: relative;
  padding: 0 0 38px 58px;
  margin-bottom: 38px;
  border-bottom: 1px solid rgb(51 54 58 / .14);
  scroll-margin-top: 125px;
}

.terms-legal-content > section:last-child {
  margin-bottom: 0;
}

.terms-section-number {
  position: absolute;
  left: 0;
  top: 3px;
  color: var(--atlantic-gold);
  font-family: var(--font-display);
  font-size: 1rem;
}

.terms-legal-content h2 {
  margin: 0 0 16px;
  color: var(--atlantic-navy);
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.5vw, 2.35rem);
  line-height: 1.08;
  font-weight: 500;
}

.terms-legal-content p {
  margin: 0;
  color: var(--atlantic-charcoal);
  font-size: .88rem;
  line-height: 1.78;
}

.terms-legal-content p + p {
  margin-top: 14px;
}

.terms-legal-content a {
  color: var(--atlantic-navy);
  text-decoration: underline;
  text-decoration-color: rgb(212 175 55 / .60);
  text-underline-offset: 3px;
}

@media (max-width: 1000px) {
  .terms-intro-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .terms-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .terms-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .terms-toc {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
  }

  .terms-toc-label {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .terms-summary-grid,
  .terms-toc {
    grid-template-columns: 1fr;
  }

  .terms-summary-card {
    min-height: 0;
  }

  .terms-legal-content > section {
    padding-left: 42px;
  }

  .terms-meta {
    display: grid;
  }
}


/* =========================================================
   LEGAL + COMPETITIVE REFINEMENT v3.14
   - Conditional contractor registration display
   - Services FAQ inspired by market best practices
   - No copied competitor design/text
   ========================================================= */

.footer-registration {
  display: grid;
  gap: 5px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgb(212 175 55 / .20);
  color: var(--atlantic-gold);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.services-faq-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: start;
}

.services-faq-heading {
  position: sticky;
  top: 122px;
}

.services-faq-list {
  border-top: 1px solid rgb(51 54 58 / .16);
}

.services-faq-list details {
  border-bottom: 1px solid rgb(51 54 58 / .16);
}

.services-faq-list summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding: 22px 52px 22px 0;
  color: var(--atlantic-navy);
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.8vw, 1.32rem);
  line-height: 1.25;
  font-weight: 500;
}

.services-faq-list summary::-webkit-details-marker {
  display: none;
}

.services-faq-list summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 20px;
  color: var(--atlantic-gold);
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 500;
}

.services-faq-list details[open] summary::after {
  content: "–";
}

.services-faq-list details p {
  max-width: 760px;
  margin: -4px 52px 22px 0;
  color: var(--atlantic-charcoal);
  font-size: .82rem;
  line-height: 1.72;
}

@media (max-width: 900px) {
  .services-faq-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .services-faq-heading {
    position: static;
  }
}

@media (max-width: 620px) {
  .services-faq-list summary {
    padding-right: 38px;
  }

  .services-faq-list details p {
    margin-right: 0;
  }
}


/* =========================================================
   REAL ATLANTIC PROJECT PHOTOGRAPHY v3.15
   Replaces representative imagery and adds a real-work gallery.
   ========================================================= */

.real-work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.real-work-card {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  background: var(--atlantic-navy);
  border: 1px solid rgb(212 175 55 / .26);
  box-shadow: 0 18px 42px rgb(11 29 51 / .08);
}

.real-work-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.real-work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgb(11 29 51 / .90) 0%, rgb(11 29 51 / .08) 58%);
  pointer-events: none;
}

.real-work-card:hover img {
  transform: scale(1.025);
}

.real-work-card figcaption {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 22px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.real-work-card figcaption strong {
  color: var(--atlantic-cream);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.15;
}

.real-work-card figcaption span {
  flex: 0 0 auto;
  color: var(--atlantic-gold);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.real-work-note {
  max-width: 900px;
  margin: 24px 0 0;
  color: var(--atlantic-charcoal);
  font-size: .72rem;
  line-height: 1.65;
}

@media (max-width: 760px) {
  .real-work-grid {
    grid-template-columns: 1fr;
  }

  .real-work-card {
    min-height: 320px;
  }

  .real-work-card figcaption {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }
}


/* =========================================================
   DYNAMIC PROJECT PORTFOLIO + EXTERIOR WORK v3.16
   ========================================================= */
.dynamic-project-grid .project-link-card { display:block; text-decoration:none; }
.project-link-card .project-card-copy { display:grid; gap:4px; min-width:0; }
.project-link-card .project-card-copy small {
  color:var(--atlantic-gold); font-size:.56rem; font-weight:700;
  letter-spacing:.11em; line-height:1.35; text-transform:uppercase;
}
.project-link-card .project-card-copy strong { color:var(--atlantic-cream); }
.project-detail-hero .page-title { max-width:920px; }
.project-back-link {
  display:inline-flex; margin-bottom:24px; color:var(--atlantic-cream);
  font-size:.66rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase;
}
.project-back-link:hover { color:var(--atlantic-gold); }
.project-detail-meta {
  display:flex; flex-wrap:wrap; gap:10px 20px; margin-top:24px;
  color:var(--atlantic-gold); font-size:.62rem; font-weight:700;
  letter-spacing:.10em; text-transform:uppercase;
}
.project-detail-intro-grid {
  display:grid; grid-template-columns:minmax(0,.85fr) minmax(0,1.15fr);
  gap:clamp(46px,8vw,110px); align-items:start;
}
.project-detail-tags { margin-top:22px; }
.project-detail-photo-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:20px; }
.project-detail-photo {
  position:relative; margin:0; overflow:hidden; background:var(--atlantic-navy);
  border:1px solid rgb(51 54 58 / .12); box-shadow:0 18px 42px rgb(11 29 51 / .08);
}
.project-detail-photo img { display:block; width:100%; aspect-ratio:4/3; object-fit:cover; }
.project-detail-photo figcaption {
  padding:13px 16px; color:var(--atlantic-charcoal); background:var(--white);
  font-size:.60rem; font-weight:700; letter-spacing:.10em; text-transform:uppercase;
}
@media (max-width:820px) {
  .project-detail-intro-grid, .project-detail-photo-grid { grid-template-columns:1fr; }
}


/* =========================================================
   PRE-PUBLICATION SEO + SEMANTIC POLISH v3.17
   ========================================================= */
.project-link-card .project-card-caption {
  position:absolute;
  z-index:2;
  left:24px;
  right:24px;
  bottom:22px;
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:20px;
}
.project-link-card .project-card-status {
  flex:0 0 auto;
  color:var(--atlantic-gold);
  font-size:.58rem;
  font-weight:700;
  letter-spacing:.11em;
  text-transform:uppercase;
}
@media (max-width:620px) {
  .project-link-card .project-card-caption {
    left:18px;
    right:18px;
    bottom:18px;
  }
}
