/* ===================================================================
   Allagash Timber & Logging Co.
   Rugged north-woods heritage — dark pine/bark over kraft/birch,
   ultra-bold Anton stencil headlines, stamped timber-tag cards,
   log-ring + woodgrain motifs, blaze-orange safety pop.
   =================================================================== */

:root {
  --pine:    #1F3322;   /* deep pine green, dark base */
  --pine-2:  #16261A;   /* darker pine for footer/bands */
  --bark:    #3A2C20;   /* bark brown */
  --tan:     #C79A5B;   /* timber tan accent */
  --tan-2:   #B0894C;
  --cream:   #EFE7D6;   /* birch cream light surface */
  --cream-2: #E3D8C2;   /* slightly deeper kraft */
  --blaze:   #E2622A;   /* blaze orange safety pop */
  --blaze-2: #CC531F;
  --ink:     #14160F;   /* near-black */
  --ink-soft:#2A2A22;

  --kraft:   #DDCDAE;   /* kraft paper */
  --line-cream: rgba(20,22,15,.14);
  --line-dark:  rgba(239,231,214,.16);

  --maxw: 1180px;
  --gap: clamp(1rem, 3vw, 2rem);
  --r: 4px;                 /* tight, stamped corners — not soft */
  --shadow: 0 10px 30px rgba(20,22,15,.18);
  --shadow-lg: 0 24px 60px rgba(20,22,15,.34);

  --ff-display: 'Anton', 'Arial Narrow', sans-serif;
  --ff-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

/* ---------- reset ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { margin: 0 0 .4em; line-height: 1.02; }
p { margin: 0 0 1rem; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2.2rem); }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--blaze); color: #fff; padding: .6rem 1rem; font-weight: 600;
}
.skip-link:focus { left: .5rem; top: .5rem; }

/* ---------- display type / stencil headlines ---------- */
.display {
  font-family: var(--ff-display);
  font-weight: 400;
  letter-spacing: .01em;
  text-transform: uppercase;
  line-height: .94;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--ff-body); font-weight: 700;
  font-size: .98rem; letter-spacing: .02em;
  padding: .85rem 1.5rem; border-radius: var(--r);
  text-decoration: none; cursor: pointer; border: 2px solid transparent;
  transition: transform .12s ease, background .15s ease, color .15s ease, box-shadow .15s ease;
  text-transform: uppercase;
}
.btn .ic { width: 18px; height: 18px; }
.btn-primary { background: var(--blaze); color: #fff; }
.btn-primary:hover { background: var(--blaze-2); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(226,98,42,.4); }
.btn-line { background: transparent; color: var(--cream); border-color: var(--cream); }
.btn-line:hover { background: var(--cream); color: var(--pine); }
.btn-dark { background: var(--pine); color: var(--cream); }
.btn-dark:hover { background: var(--pine-2); transform: translateY(-2px); }
.btn-tan { background: var(--tan); color: var(--ink); }
.btn-tan:hover { background: var(--tan-2); transform: translateY(-2px); }
.btn-lg { padding: 1.05rem 1.9rem; font-size: 1.05rem; }
.btn-block { width: 100%; justify-content: center; }

.btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible, .gal-tile:focus-visible {
  outline: 3px solid var(--blaze);
  outline-offset: 3px;
}

/* ---------- eyebrow / tag plate ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--ff-body); font-weight: 700;
  font-size: .76rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--blaze);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: ""; width: 26px; height: 3px; background: var(--blaze); display: inline-block;
}
.eyebrow.on-dark { color: var(--tan); }
.eyebrow.on-dark::before { background: var(--tan); }

/* woodgrain rule between sections */
.grain-rule {
  height: 6px;
  background:
    repeating-linear-gradient(90deg, var(--bark) 0 2px, transparent 2px 7px),
    var(--tan);
  opacity: .9;
}

/* ===================================================================
   TOPBAR
   =================================================================== */
.topbar { background: var(--ink); color: var(--cream); font-size: .82rem; }
.topbar-in { display: flex; justify-content: space-between; align-items: center; gap: 1rem; min-height: 38px; padding-block: .35rem; }
.tb-item { display: inline-flex; align-items: center; gap: .45rem; }
.tb-tag { color: var(--kraft); letter-spacing: .04em; }
.tb-phone { color: var(--tan); font-weight: 700; text-decoration: none; white-space: nowrap; }
.tb-phone:hover { color: var(--blaze); }
.tb-phone .ic { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2; }
@media (max-width: 620px){ .tb-tag { display: none; } .topbar-in { justify-content: center; } }

/* ===================================================================
   HEADER / NAV
   =================================================================== */
.site-head {
  position: sticky; top: 0; z-index: 100;
  background: var(--pine);
  border-bottom: 3px solid var(--tan);
  box-shadow: 0 2px 14px rgba(20,22,15,.3);
}
.head-in { display: flex; align-items: center; gap: 1.2rem; min-height: 74px; }
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; color: var(--cream); margin-right: auto; }
.brand-mark svg { width: 38px; height: 38px; fill: none; stroke: var(--tan); stroke-width: 1.6; display: block; }
.brand-words { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--ff-display); font-size: 1.35rem; letter-spacing: .03em; text-transform: uppercase; color: var(--cream); }
.brand-sub { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--tan); margin-top: .2rem; }

.nav { display: flex; gap: .3rem; }
.nav a {
  font-weight: 600; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--cream); text-decoration: none; padding: .5rem .7rem; border-radius: var(--r);
  position: relative;
}
.nav a:hover { color: var(--tan); }
.nav a.active { color: var(--blaze); }
.nav a.active::after {
  content: ""; position: absolute; left: .7rem; right: .7rem; bottom: .1rem; height: 2px; background: var(--blaze);
}
.head-cta .btn { padding: .65rem 1.1rem; font-size: .82rem; }
.nav-cta { display: none; }
.menu-btn { display: none; background: none; border: 0; cursor: pointer; padding: .4rem; margin-left: .3rem; }
.menu-btn svg { width: 30px; height: 30px; fill: none; stroke: var(--cream); stroke-width: 2; stroke-linecap: round; }

@media (max-width: 940px) {
  .nav, .head-cta { display: none; }
  .menu-btn { display: inline-flex; }
  .site-head.open .nav {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--pine-2); border-bottom: 3px solid var(--tan); padding: .6rem 1rem 1.2rem; gap: .1rem;
  }
  .site-head.open .nav a { padding: .85rem .6rem; border-bottom: 1px solid var(--line-dark); font-size: .95rem; }
  .site-head.open .nav .nav-cta { display: inline-flex; justify-content: center; width: 100%; margin-top: .9rem; padding: .9rem; font-size: .95rem; border-bottom: 0; }
}

/* ===================================================================
   SECTION SHELL
   =================================================================== */
.section { padding-block: clamp(3.2rem, 7vw, 6rem); }
.band-pine { background: var(--pine); color: var(--cream); }
.band-pine-2 { background: var(--pine-2); color: var(--cream); }
.band-bark { background: var(--bark); color: var(--cream); }
.band-cream { background: var(--cream); color: var(--ink); }
.band-kraft {
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 30%, rgba(58,44,32,.05) 0, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(58,44,32,.05) 0, transparent 40%),
    var(--cream-2);
}

.sec-head { max-width: 760px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head h2 {
  font-family: var(--ff-display); text-transform: uppercase;
  font-size: clamp(1.9rem, 4.6vw, 3.2rem); letter-spacing: .01em; line-height: .96;
}
.band-pine .sec-head h2, .band-pine-2 .sec-head h2, .band-bark .sec-head h2 { color: var(--cream); }
.sec-sub { font-size: 1.08rem; color: inherit; opacity: .9; max-width: 60ch; }
.band-cream .sec-sub, .band-kraft .sec-sub { color: #4A4436; opacity: 1; }

/* ===================================================================
   HERO
   =================================================================== */
.hero { position: relative; min-height: clamp(560px, 84vh, 760px); display: flex; align-items: center; color: var(--cream); overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; background-color: var(--pine-2);
  z-index: 0;
}
.hero-veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(95deg, rgba(20,22,15,.88) 0%, rgba(20,22,15,.6) 42%, rgba(20,22,15,.12) 78%),
    linear-gradient(0deg, rgba(31,51,34,.55), rgba(31,51,34,0) 45%);
}
.hero-in { position: relative; z-index: 2; padding-block: 3rem; max-width: 820px; }
.hero h1 {
  font-family: var(--ff-display); text-transform: uppercase;
  font-size: clamp(2.7rem, 8.5vw, 6.3rem); letter-spacing: .005em; line-height: .9;
  color: var(--cream); margin-bottom: .35em;
  text-shadow: 0 4px 30px rgba(0,0,0,.4);
}
.hero h1 .hl-orange { color: var(--blaze); }
.hero-sub { font-size: clamp(1.15rem, 2.4vw, 1.5rem); font-weight: 600; color: var(--tan); max-width: 30ch; margin-bottom: .8rem; }
.hero-body { font-size: 1.06rem; max-width: 54ch; color: rgba(239,231,214,.92); }
.hero-btns { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.8rem; }
/* blaze CTA bar grounding the hero */
.hero-bar {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  background: var(--blaze); color: #fff;
  display: flex; justify-content: center; gap: clamp(1rem,4vw,3rem); flex-wrap: wrap;
  padding: .7rem 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; font-size: .82rem;
}
.hero-bar span { display: inline-flex; align-items: center; gap: .5rem; }
.hero-bar span::before { content: "▲"; font-size: .6rem; transform: rotate(0deg); }

/* page-hero (interior pages) */
.page-hero { position: relative; color: var(--cream); overflow: hidden; padding-block: clamp(3rem, 9vw, 6rem); display: flex; align-items: center; min-height: 320px; }
.page-hero .hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-color: var(--pine-2); z-index: 0; }
.page-hero-veil { position: absolute; inset: 0; z-index: 1; background: linear-gradient(95deg, rgba(20,22,15,.9) 0%, rgba(20,22,15,.62) 55%, rgba(20,22,15,.3) 100%); }
.page-hero-in { position: relative; z-index: 2; max-width: 780px; }
.page-hero h1 { font-family: var(--ff-display); text-transform: uppercase; font-size: clamp(2.2rem, 6vw, 4.2rem); letter-spacing: .01em; color: var(--cream); }
.page-hero-sub { font-size: 1.12rem; color: rgba(239,231,214,.92); max-width: 58ch; }

/* ===================================================================
   TRUST STRIP — stamped timber-tags
   =================================================================== */
.trust { background: var(--ink); color: var(--cream); border-block: 3px solid var(--tan); }
.trust-in { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; padding-block: 0; }
.trust-item {
  padding: 1.6rem 1.2rem; text-align: center;
  border-right: 1px solid var(--line-dark);
}
.trust-item:last-child { border-right: 0; }
.trust-item b { display: block; font-family: var(--ff-display); text-transform: uppercase; font-size: 1.7rem; letter-spacing: .02em; color: var(--tan); line-height: 1; margin-bottom: .35rem; }
.trust-item span { font-size: .82rem; color: var(--kraft); letter-spacing: .03em; }
@media (max-width: 740px){ .trust-in { grid-template-columns: 1fr 1fr; } .trust-item:nth-child(2n){ border-right: 0; } .trust-item:nth-child(-n+2){ border-bottom: 1px solid var(--line-dark); } }
@media (max-width: 420px){ .trust-in { grid-template-columns: 1fr; } .trust-item { border-right: 0; border-bottom: 1px solid var(--line-dark); } .trust-item:last-child { border-bottom: 0; } }

/* ===================================================================
   TIMBER-TAG CARDS (services / equipment)
   =================================================================== */
.tag-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
@media (max-width: 900px){ .tag-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .tag-grid { grid-template-columns: 1fr; } }

.tag-card {
  background: var(--cream);
  border: 1.5px solid var(--bark);
  border-radius: var(--r);
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform .15s ease, box-shadow .15s ease;
}
.tag-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
/* punched tag hole + string motif */
.tag-card::before {
  content: ""; position: absolute; top: 12px; left: 14px; z-index: 3;
  width: 13px; height: 13px; border-radius: 50%;
  background: var(--cream); border: 2px solid var(--bark);
}
.tag-img { aspect-ratio: 1/1; overflow: hidden; background: var(--pine-2); }
.tag-img img { width: 100%; height: 100%; object-fit: cover; }
.tag-body { padding: 1.3rem 1.35rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.tag-num { font-family: var(--ff-display); font-size: .85rem; color: var(--blaze); letter-spacing: .12em; margin-bottom: .5rem; }
.tag-card h3 { font-family: var(--ff-display); text-transform: uppercase; font-size: 1.35rem; letter-spacing: .015em; color: var(--pine); margin-bottom: .55rem; }
.tag-card p { font-size: .96rem; color: #4A4436; margin-bottom: 1rem; }
.tag-card .tag-link { margin-top: auto; font-weight: 700; text-transform: uppercase; font-size: .8rem; letter-spacing: .06em; color: var(--blaze); text-decoration: none; display: inline-flex; gap: .4rem; align-items: center; }
.tag-card .tag-link:hover { gap: .7rem; }

/* full timber-tag plate (used on services detail) */
.plate {
  background: var(--cream);
  border: 1.5px solid var(--bark);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid; grid-template-columns: 1.05fr 1fr;
}
.plate:nth-child(even) { grid-template-columns: 1fr 1.05fr; }
.plate:nth-child(even) .plate-img { order: 2; }
.plate-img { background: var(--pine-2); min-height: 260px; }
.plate-img img { width: 100%; height: 100%; object-fit: cover; }
.plate-body { padding: clamp(1.5rem, 3vw, 2.4rem); }
.plate-body .tag-num { font-size: 1rem; }
.plate-body h3 { font-family: var(--ff-display); text-transform: uppercase; font-size: clamp(1.4rem,3vw,2rem); color: var(--pine); }
.plate-body ul { list-style: none; padding: 0; margin: 1rem 0 0; }
.plate-body li { padding-left: 1.5rem; position: relative; margin-bottom: .55rem; font-size: .96rem; color: #4A4436; }
.plate-body li::before { content: ""; position: absolute; left: 0; top: .55em; width: 9px; height: 9px; background: var(--blaze); }
@media (max-width: 760px){ .plate, .plate:nth-child(even){ grid-template-columns: 1fr; } .plate:nth-child(even) .plate-img { order: 0; } .plate-img { min-height: 220px; } }

/* ===================================================================
   LANDOWNER SIGNATURE SECTION
   =================================================================== */
.signature { position: relative; overflow: hidden; }
.sig-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
@media (max-width: 880px){ .sig-grid { grid-template-columns: 1fr; } }
.sig-media { border: 3px solid var(--tan); border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; }
.sig-media img { width: 100%; height: 100%; object-fit: cover; }
.sig-copy h2 { font-family: var(--ff-display); text-transform: uppercase; font-size: clamp(2rem, 4.6vw, 3.2rem); color: var(--cream); }
.sig-copy .sig-lead { font-size: 1.15rem; color: var(--tan); font-weight: 600; margin-bottom: 1.1rem; }
.sig-copy p { color: rgba(239,231,214,.92); }
.sig-list { list-style: none; padding: 0; margin: 1.6rem 0; display: grid; gap: 1rem; }
.sig-list li { display: grid; grid-template-columns: auto 1fr; gap: .9rem; align-items: start; }
.sig-axe {
  width: 34px; height: 34px; flex: none; border-radius: var(--r);
  background: var(--blaze); display: grid; place-items: center; margin-top: .15rem;
}
.sig-axe svg { width: 20px; height: 20px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.sig-list b { display: block; font-family: var(--ff-display); text-transform: uppercase; font-size: 1.05rem; letter-spacing: .02em; color: var(--cream); }
.sig-list span { font-size: .95rem; color: rgba(239,231,214,.85); }

/* ===================================================================
   WHY / VALUES
   =================================================================== */
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.6rem; }
@media (max-width: 820px){ .why-grid { grid-template-columns: 1fr; } }
.why-card { background: var(--cream); border-top: 5px solid var(--blaze); border-radius: var(--r); padding: 1.8rem 1.6rem; box-shadow: var(--shadow); }
.why-card .why-ring { display: inline-flex; width: 46px; height: 46px; margin-bottom: 1rem; }
.why-card .why-ring svg { width: 100%; height: 100%; fill: none; stroke: var(--tan); stroke-width: 1.5; }
.why-card h3 { font-family: var(--ff-display); text-transform: uppercase; font-size: 1.35rem; color: var(--pine); }
.why-card p { font-size: .98rem; color: #4A4436; margin: 0; }

/* ===================================================================
   PROCESS — numbered ridgeline steps
   =================================================================== */
.proc-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.2rem; counter-reset: step; }
@media (max-width: 860px){ .proc-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px){ .proc-grid { grid-template-columns: 1fr; } }
.proc-step { position: relative; padding-top: 1.5rem; }
.proc-step .proc-n { font-family: var(--ff-display); font-size: 3.4rem; line-height: .8; color: var(--tan); opacity: .55; }
.band-cream .proc-step .proc-n, .band-kraft .proc-step .proc-n { color: var(--bark); opacity: .25; }
.proc-step h3 { font-family: var(--ff-display); text-transform: uppercase; font-size: 1.2rem; margin-top: .4rem; color: inherit; }
.band-pine .proc-step h3, .band-pine-2 .proc-step h3 { color: var(--cream); }
.proc-step p { font-size: .95rem; opacity: .9; margin: 0; }
.band-cream .proc-step p { color: #4A4436; }

/* ===================================================================
   ABOUT / STORY
   =================================================================== */
.about-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
@media (max-width: 860px){ .about-grid { grid-template-columns: 1fr; } }
.about-media { border: 3px solid var(--bark); border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 3/2; }
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-copy h2 { font-family: var(--ff-display); text-transform: uppercase; font-size: clamp(1.9rem,4.2vw,3rem); color: var(--pine); }
.band-pine .about-copy h2 { color: var(--cream); }

/* ===================================================================
   TESTIMONIALS — stamped tag quotes
   =================================================================== */
.quote-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.6rem; }
@media (max-width: 760px){ .quote-grid { grid-template-columns: 1fr; } }
.quote-card {
  background: var(--cream); color: var(--ink);
  border-left: 5px solid var(--blaze); border-radius: var(--r);
  padding: 1.8rem 1.7rem; box-shadow: var(--shadow); position: relative;
}
.quote-card .q-mark { font-family: var(--ff-display); font-size: 3rem; line-height: .5; color: var(--tan); }
.quote-card p { font-size: 1.04rem; color: #3A352B; font-style: italic; margin: .5rem 0 1.1rem; }
.quote-card .q-who { display: flex; align-items: center; gap: .7rem; }
.quote-card .q-ring { width: 34px; height: 34px; flex: none; }
.quote-card .q-ring svg { width: 100%; height: 100%; fill: none; stroke: var(--tan); stroke-width: 1.6; }
.quote-card .q-name { font-family: var(--ff-display); text-transform: uppercase; font-size: 1rem; letter-spacing: .03em; color: var(--pine); }

/* ===================================================================
   FAQ
   =================================================================== */
.faq-list { max-width: 860px; margin-inline: auto; display: grid; gap: 1rem; }
.faq-item { background: var(--cream); border: 1.5px solid var(--line-cream); border-left: 5px solid var(--tan); border-radius: var(--r); padding: 1.3rem 1.5rem; box-shadow: 0 4px 14px rgba(20,22,15,.06); }
.band-pine .faq-item, .band-pine-2 .faq-item { background: rgba(239,231,214,.06); border-color: var(--line-dark); border-left-color: var(--tan); color: var(--cream); }
.faq-item h3 { font-family: var(--ff-display); text-transform: uppercase; font-size: 1.18rem; letter-spacing: .01em; color: var(--pine); margin-bottom: .5rem; }
.band-pine .faq-item h3, .band-pine-2 .faq-item h3 { color: var(--tan); }
.faq-item p { margin: 0; font-size: .98rem; color: #4A4436; }
.band-pine .faq-item p, .band-pine-2 .faq-item p { color: rgba(239,231,214,.9); }

/* ===================================================================
   SERVICE AREA
   =================================================================== */
.area-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-top: 2rem; }
@media (max-width: 720px){ .area-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 420px){ .area-grid { grid-template-columns: 1fr; } }
.area-card { border: 1.5px solid var(--line-dark); border-radius: var(--r); padding: 1.1rem 1.2rem; background: rgba(239,231,214,.05); }
.area-card b { font-family: var(--ff-display); text-transform: uppercase; font-size: 1.15rem; color: var(--tan); display: block; }
.area-card span { font-size: .88rem; color: rgba(239,231,214,.82); }

/* ===================================================================
   FINAL CTA
   =================================================================== */
.cta { position: relative; overflow: hidden; color: var(--cream); text-align: center; }
.cta-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-color: var(--pine-2); z-index: 0; }
.cta-veil { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(20,22,15,.82), rgba(31,51,34,.82)); }
.cta-in { position: relative; z-index: 2; padding-block: clamp(3.5rem, 8vw, 6.5rem); max-width: 760px; margin-inline: auto; }
.cta-in h2 { font-family: var(--ff-display); text-transform: uppercase; font-size: clamp(2.1rem, 5.5vw, 4rem); color: var(--cream); }
.cta-in p { font-size: 1.12rem; color: rgba(239,231,214,.92); margin-bottom: 1.6rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===================================================================
   GALLERY
   =================================================================== */
.gal-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: .9rem; }
@media (max-width: 820px){ .gal-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px){ .gal-grid { grid-template-columns: 1fr; } }
.gal-tile {
  position: relative; overflow: hidden; border-radius: var(--r); cursor: pointer;
  border: 1.5px solid var(--bark); aspect-ratio: 4/3; background: var(--pine-2);
}
.gal-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gal-tile:hover img { transform: scale(1.06); }
.gal-tile::after { content: "+"; position: absolute; bottom: 8px; right: 12px; color: var(--cream); font-family: var(--ff-display); font-size: 1.4rem; opacity: 0; transition: opacity .2s; text-shadow: 0 2px 8px rgba(0,0,0,.6); }
.gal-tile:hover::after, .gal-tile:focus-visible::after { opacity: 1; }

.lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(20,22,15,.94); display: none; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lb-img { max-width: 92vw; max-height: 82vh; border: 3px solid var(--tan); border-radius: var(--r); }
.lb-close, .lb-prev, .lb-next { position: absolute; background: var(--pine); color: var(--cream); border: 2px solid var(--tan); width: 50px; height: 50px; border-radius: 50%; cursor: pointer; font-size: 1.4rem; display: grid; place-items: center; }
.lb-close { top: 1.2rem; right: 1.2rem; }
.lb-prev { left: 1.2rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 1.2rem; top: 50%; transform: translateY(-50%); }
.lb-prev:hover, .lb-next:hover, .lb-close:hover { background: var(--blaze); border-color: var(--blaze); }
.lb-count { position: absolute; bottom: 1.2rem; left: 50%; transform: translateX(-50%); color: var(--tan); font-family: var(--ff-display); letter-spacing: .1em; }

/* ===================================================================
   CONTACT FORM
   =================================================================== */
.contact-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
@media (max-width: 880px){ .contact-grid { grid-template-columns: 1fr; } }
.contact-main { background: var(--cream); border: 1.5px solid var(--bark); border-radius: var(--r); padding: clamp(1.5rem, 3vw, 2.4rem); box-shadow: var(--shadow); }
.contact-h { font-family: var(--ff-display); text-transform: uppercase; font-size: clamp(1.5rem,3.4vw,2.2rem); color: var(--pine); }
.contact-intro { color: #4A4436; }
.req { color: var(--blaze); }

.field { display: block; margin-bottom: 1.1rem; }
.field-l { display: block; font-weight: 600; font-size: .9rem; margin-bottom: .4rem; color: var(--ink); }
.field input, .field textarea, .field select {
  width: 100%; padding: .8rem .9rem; border: 1.5px solid #B6A685; border-radius: var(--r);
  font-family: var(--ff-body); font-size: 1rem; background: #FBF7EE; color: var(--ink);
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--blaze); background: #fff; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1.1rem; }
@media (max-width: 560px){ .field-grid { grid-template-columns: 1fr; } }
.field.has-err input, .field.has-err select { border-color: var(--blaze); background: #FBEDE6; }
.field-err { display: block; color: var(--blaze-2); font-size: .85rem; font-weight: 600; margin-top: .35rem; }
.field-hint { font-weight: 400; color: #7A7060; font-size: .85rem; }
fieldset.field { border: 0; padding: 0; margin: 0 0 1.1rem; }
legend { font-weight: 600; font-size: .9rem; margin-bottom: .5rem; padding: 0; }
.c-note { font-size: .85rem; color: #7A7060; margin-top: .8rem; }

.form-success { text-align: center; padding: 1rem 0 .5rem; }
.fs-check { width: 64px; height: 64px; margin: 0 auto 1.2rem; background: var(--pine); border-radius: 50%; display: grid; place-items: center; }
.fs-check svg { width: 32px; height: 32px; fill: none; stroke: var(--tan); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.form-success h2 { font-family: var(--ff-display); text-transform: uppercase; color: var(--pine); font-size: 1.8rem; }
.fs-sub { color: #4A4436; }
.fs-btns { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; margin-top: 1.4rem; }

.contact-side { display: grid; gap: 1rem; }
.cside-card { background: var(--pine); color: var(--cream); border-radius: var(--r); padding: 1.4rem 1.5rem; border-left: 5px solid var(--blaze); }
.cside-card h3 { font-family: var(--ff-display); text-transform: uppercase; font-size: 1.15rem; color: var(--tan); }
.cside-card p { margin: 0; font-size: .95rem; color: rgba(239,231,214,.9); }
.cside-phone { font-family: var(--ff-display); font-size: 1.8rem; color: var(--cream); text-decoration: none; letter-spacing: .02em; }
.cside-phone:hover { color: var(--blaze); }
.cside-guar { display: flex; gap: .9rem; align-items: center; background: var(--ink); color: var(--cream); border-radius: var(--r); padding: 1.2rem 1.4rem; }
.cside-guar-ic { width: 40px; height: 40px; flex: none; }
.cside-guar-ic svg { width: 100%; height: 100%; fill: none; stroke: var(--tan); stroke-width: 1.6; stroke-linejoin: round; }
.cside-guar b { display: block; font-family: var(--ff-display); text-transform: uppercase; color: var(--tan); }
.cside-guar span { font-size: .9rem; color: rgba(239,231,214,.85); }

/* ===================================================================
   GENERIC RICH CONTENT
   =================================================================== */
.lede { font-size: 1.2rem; color: inherit; max-width: 62ch; }
.band-cream .lede { color: #3A352B; }
.intro-split { display: grid; grid-template-columns: auto 1fr; gap: clamp(1.5rem,4vw,3rem); align-items: start; }
@media (max-width: 760px){ .intro-split { grid-template-columns: 1fr; } }
.intro-split .display-big { font-family: var(--ff-display); text-transform: uppercase; font-size: clamp(2.2rem,5vw,3.6rem); line-height: .9; color: var(--pine); max-width: 9ch; }
.band-pine .intro-split .display-big { color: var(--cream); }

/* utility */
.center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.tag-strip { display: inline-flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.2rem; }
.tag-strip span { background: rgba(199,154,91,.18); border: 1px solid var(--tan); color: var(--tan); font-size: .76rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; padding: .3rem .7rem; border-radius: var(--r); }

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
  .gal-tile img { transition: none; }
}

/* ===================================================================
   FOOTER
   =================================================================== */
.foot { background: var(--pine-2); color: var(--cream); padding: clamp(3rem,6vw,4.5rem) 0 0; }
.foot-in {
  display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.3fr; gap: 2.6rem; padding-bottom: 3rem;
}
.foot-brand { max-width: 32ch; }
.foot-brand .foot-mark { display: inline-flex; width: 48px; height: 48px; margin-bottom: 1.1rem; }
.foot-brand .foot-mark svg { width: 100%; height: 100%; fill: none; stroke: var(--tan); stroke-width: 1.5; }
.foot-name {
  display: block; font-family: var(--ff-display); text-transform: uppercase;
  font-size: 1.4rem; line-height: 1.02; letter-spacing: .01em; margin-bottom: .85rem;
}
.foot-brand p { font-size: .92rem; color: #C8C2B1; line-height: 1.6; margin: 0; }
.foot-col h4 {
  font-family: var(--ff-display); text-transform: uppercase; font-size: 1.02rem;
  letter-spacing: .04em; color: var(--tan); margin: 0 0 1.1rem;
}
.foot-nav { display: flex; flex-direction: column; gap: .6rem; }
.foot-col a { color: var(--cream); text-decoration: none; font-size: .94rem; transition: color .15s; }
.foot-col a:hover { color: var(--tan); }
.foot-contact .foot-phone {
  display: inline-block; font-family: var(--ff-display); font-size: 1.35rem;
  color: var(--cream); margin-bottom: .7rem;
}
.foot-contact p { font-size: .9rem; color: #C8C2B1; margin: .35rem 0; line-height: 1.5; }
.foot-contact .foot-hours, .foot-contact .foot-area { color: #948E7B; font-size: .82rem; }
.foot-bottom {
  display: flex; justify-content: space-between; gap: 1rem 1.6rem; flex-wrap: wrap;
  padding: 1.4rem 0; border-top: 1px solid rgba(199,154,91,.22);
  font-size: .8rem; color: #948E7B;
}
@media (max-width: 860px){
  .foot-in { grid-template-columns: 1fr 1fr; gap: 2.2rem; }
  .foot-brand { grid-column: 1 / -1; }
}
@media (max-width: 520px){
  .foot-in { grid-template-columns: 1fr; }
  .foot-bottom { flex-direction: column; gap: .45rem; }
}
