/* ============================================================
   A. WOOD ELECTRIC — Premium design system
   Palette: warm off-white, charcoal ink, brass accent, deep ink bands
   Type: Fraunces (display serif) + Inter (sans)
   ============================================================ */

:root {
  /* Color */
  --ink:        #003366;   /* brand navy — text + dark bands */
  --ink-2:      #29405e;   /* secondary text, cool */
  --ink-soft:   #5d6b80;
  --paper:      #f4f7fb;   /* cool off-white */
  --paper-2:    #e7eef7;
  --line:       #d2dcea;
  --brass:      #c8a24c;   /* gold accent */
  --brass-deep: #a07d2e;
  --brass-soft: #e3c987;
  --white:      #ffffff;

  /* Temporary stock imagery (Unsplash — swap for client photos) */
  --img-hero:     url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1600&q=70");
  --img-night:    url("https://images.unsplash.com/photo-1512917774080-9991f1c4c750?auto=format&fit=crop&w=1600&q=70");
  --img-arch:     url("https://images.unsplash.com/photo-1600210492486-724fe5c67fb0?auto=format&fit=crop&w=1600&q=70");
  --img-living:   url("https://images.unsplash.com/photo-1600566753086-00f18fb6b3ea?auto=format&fit=crop&w=1400&q=70");
  --img-interior: url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=1400&q=70");
  --img-exterior: url("https://images.unsplash.com/photo-1600585152220-90363fe7e115?auto=format&fit=crop&w=1400&q=70");
  --img-detail:   url("https://images.unsplash.com/photo-1600047509807-ba8f99d2cdde?auto=format&fit=crop&w=1400&q=70");
  --img-kitchen:  url("https://images.unsplash.com/photo-1600566752355-35792bedcfea?auto=format&fit=crop&w=1400&q=70");
  --img-pool:     url("https://images.unsplash.com/photo-1571003123894-1f0594d2b5d9?auto=format&fit=crop&w=1400&q=70");

  /* Type */
  --serif: "Lora", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Rhythm */
  --container: 1180px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-y: clamp(4.5rem, 9vw, 8rem);
  --radius: 2px;
  --header-h: 86px;

  --shadow: 0 24px 60px -24px rgba(14, 30, 54, .35);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.08; letter-spacing: -.01em; }
h1 { font-size: clamp(2.6rem, 6vw, 4.7rem); }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.85rem); }
h4 { font-size: 1.2rem; }
p { color: var(--ink-2); }
.lede { font-size: clamp(1.15rem, 1.7vw, 1.4rem); line-height: 1.55; color: var(--ink-2); }

.eyebrow {
  font-family: var(--sans);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--brass-deep);
  display: inline-flex;
  align-items: center;
  gap: .7rem;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--brass);
  display: inline-block;
}
.eyebrow.center::after {
  content: "";
  width: 28px; height: 1px;
  background: var(--brass);
  display: inline-block;
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.center { text-align: center; }
.center .eyebrow { justify-content: center; }
.measure { max-width: 62ch; }
.measure.center { margin-inline: auto; }

.grid { display: grid; gap: clamp(1.5rem, 3vw, 2.5rem); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-3.keep-2, .grid-4.keep-2 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .grid-3.keep-2, .grid-4.keep-2 { grid-template-columns: 1fr; }
}

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.split.wide-left { grid-template-columns: 1.15fr .85fr; }
@media (max-width: 860px) { .split, .split.wide-left { grid-template-columns: 1fr; } }

.stack > * + * { margin-top: 1.1rem; }
.mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.75rem; } .mt-4 { margin-top: 2.5rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .72rem 1.35rem;
  font-size: .75rem; font-weight: 600; letter-spacing: .11em; text-transform: uppercase;
  border-radius: var(--radius);
  transition: all .35s var(--ease);
  border: 1px solid transparent;
}
.btn .arr { transition: transform .35s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: var(--brass-deep); }
.btn-brass { background: var(--brass); color: var(--ink); }
.btn-brass:hover { background: var(--brass-soft); }
.btn-ghost { border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-light { border: 1px solid rgba(255,255,255,.35); color: var(--paper); }
.btn-light:hover { background: rgba(255,255,255,.08); border-color: var(--paper); }

.link-arrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 600; font-size: .85rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--brass);
  padding-bottom: 3px;
  transition: gap .3s var(--ease), color .3s var(--ease);
}
.link-arrow:hover { gap: .9rem; color: var(--brass-deep); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(244, 247, 251, .82);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background .3s var(--ease);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
}
.brand { display: flex; align-items: center; gap: .85rem; }
.brand-logo { height: 56px; width: auto; flex: none; transition: height .3s var(--ease); }
.brand .mark { width: 60px; height: auto; flex: none; color: var(--ink); }
.brand .word { display: flex; flex-direction: column; line-height: 1; }
.brand .word-main { font-family: var(--sans); font-weight: 500; font-size: 1.12rem; letter-spacing: .17em; text-transform: uppercase; color: var(--ink); white-space: nowrap; }
.brand .word-sub { font-family: var(--sans); font-size: .52rem; font-weight: 600; letter-spacing: .42em; text-transform: uppercase; color: var(--brass-deep); margin-top: .55rem; display: flex; align-items: center; gap: .5rem; white-space: nowrap; }
.brand .word-sub::before, .brand .word-sub::after { content: ""; width: 16px; height: 1px; background: var(--brass); display: inline-block; }

.nav-links { display: flex; align-items: center; gap: 1.55rem; }
.nav-links a {
  font-size: .82rem; font-weight: 500; letter-spacing: .02em; color: var(--ink-2);
  white-space: nowrap;
  position: relative; padding: .3rem 0; transition: color .25s var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0;
  background: var(--brass); transition: width .3s var(--ease);
}
.nav-links a:hover, .nav-links a[aria-current] { color: var(--ink); }
.nav-links a:hover::after, .nav-links a[aria-current]::after { width: 100%; }

/* dropdown */
.has-menu { position: relative; }
.menu-panel {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: .6rem; min-width: 270px;
  opacity: 0; visibility: hidden; transition: all .28s var(--ease); z-index: 50;
}
.has-menu:hover .menu-panel, .has-menu:focus-within .menu-panel {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.menu-panel a {
  display: block; padding: .65rem .8rem; border-radius: var(--radius);
  font-size: .9rem; color: var(--ink-2); transition: background .2s, color .2s;
}
.menu-panel a::after { display: none; }
.menu-panel a:hover { background: var(--paper-2); color: var(--ink); }
.menu-panel a small { display: block; font-size: .76rem; color: var(--ink-soft); font-weight: 400; margin-top: 1px; }

.nav-cta { display: flex; align-items: center; gap: 1.4rem; }
/* Header CTA: understated outline that fills in on hover (less heavy than the solid primary). */
.nav-cta .btn-primary {
  background: transparent; color: var(--ink);
  border-color: var(--line); font-size: .72rem; padding: .62rem 1.2rem;
}
.nav-cta .btn-primary:hover {
  background: var(--ink); color: var(--paper); border-color: var(--ink);
}
.nav-phone {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .85rem; font-weight: 600; letter-spacing: .01em; white-space: nowrap;
  color: var(--ink); transition: color .25s var(--ease);
  padding-right: 1.4rem; border-right: 1px solid var(--line);
}
.nav-phone svg { width: 15px; height: 15px; color: var(--brass-deep); flex: none; }
.nav-phone:hover { color: var(--brass-deep); }

.nav-toggle { display: none; width: 30px; height: 22px; position: relative; }
.nav-toggle span { position: absolute; left: 0; width: 100%; height: 2px; background: var(--ink); transition: .3s var(--ease); }
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 10px; }
.nav-toggle span:nth-child(3) { top: 20px; }
body.nav-open .nav-toggle span:nth-child(1) { top: 10px; transform: rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { top: 10px; transform: rotate(-45deg); }

@media (max-width: 1200px) {
  .nav-links {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: 1rem var(--gutter) 2rem;
    transform: translateY(-120%); transition: transform .4s var(--ease);
    max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  }
  body.nav-open .nav-links { transform: translateY(0); }
  .nav-links a { width: 100%; padding: .9rem 0; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .menu-panel { position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none;
    border: none; padding: 0 0 .5rem 1rem; min-width: 0; background: transparent; }
  .has-menu:hover .menu-panel { transform: none; }
  .menu-panel a { padding: .55rem 0; border: none; }
  .nav-phone { display: none; }
  .nav-cta .btn-primary { display: none; }
  .nav-toggle { display: block; }
  .nav-links .cta-mobile { display: block; }
}
.nav-links .cta-mobile { display: none; margin-top: 1rem; }
.nav-links .cta-mobile .btn { width: 100%; justify-content: center; }

@media (max-width: 600px) {
  :root { --header-h: 66px; }
  .brand-logo { height: 44px; }
  .site-footer .brand-logo { height: 90px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; color: var(--paper);
  background: var(--ink) var(--img-hero) center / cover no-repeat;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 78% 8%, rgba(200,162,76,.26), transparent 55%),
    linear-gradient(180deg, rgba(0,38,77,.84) 0%, rgba(0,24,49,.95) 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero-inner { padding-block: clamp(5rem, 13vw, 10rem); max-width: 880px; }
.hero h1 { color: var(--paper); }
.hero h1 em { font-style: italic; color: var(--brass-soft); }
.hero p { color: rgba(247,243,236,.78); }
.hero .eyebrow { color: var(--brass-soft); }
.hero .eyebrow::before { background: var(--brass-soft); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.25rem; }

.hero-stats { display: flex; flex-wrap: wrap; gap: clamp(2rem, 6vw, 4.5rem); margin-top: 3.5rem;
  padding-top: 2.25rem; border-top: 1px solid rgba(247,243,236,.16); }
.hero-stats .num { font-family: var(--serif); font-size: 2.4rem; color: var(--paper); line-height: 1; }
.hero-stats .lbl { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(247,243,236,.6); margin-top: .5rem; }

/* page hero (interior) */
.page-hero { background: var(--ink) var(--img-arch) center / cover no-repeat; color: var(--paper); position: relative; overflow: hidden; }
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(100% 120% at 85% 0%, rgba(200,162,76,.20), transparent 55%),
    linear-gradient(180deg, rgba(0,40,80,.88) 0%, rgba(0,28,57,.95) 100%);
}
.page-hero .container { position: relative; z-index: 2; padding-block: clamp(3.5rem, 8vw, 6rem); }
.page-hero h1 { color: var(--paper); max-width: 16ch; }
.page-hero p { color: rgba(247,243,236,.75); max-width: 56ch; }
.page-hero .eyebrow { color: var(--brass-soft); }
.page-hero .eyebrow::before { background: var(--brass-soft); }
.breadcrumb { font-size: .8rem; color: rgba(247,243,236,.55); margin-bottom: 1.5rem; letter-spacing: .03em; }
.breadcrumb a { color: rgba(247,243,236,.75); } .breadcrumb a:hover { color: var(--brass-soft); }

/* ---------- Cards ---------- */
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--brass-soft); }
.card .ico { width: 46px; height: 46px; color: var(--brass-deep); margin-bottom: 1.25rem; }
.card h3 { margin-bottom: .6rem; }
.card p { font-size: .96rem; }
.card .num-tag { font-family: var(--serif); font-size: 1.1rem; color: var(--brass); }

.service-card { display: flex; flex-direction: column; position: relative; overflow: hidden; }
.service-card .meta { margin-top: auto; padding-top: 1.5rem; }

/* Feature media block */
.media {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--ink) var(--img-living) center / cover no-repeat;
  aspect-ratio: 4 / 3; min-height: 280px;
  display: flex; align-items: flex-end; padding: 1.75rem; color: var(--paper);
  border: 1px solid var(--line);
}
.media.tall { aspect-ratio: 3 / 4; background-image: var(--img-interior); }
.media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,28,56,.12) 0%, rgba(0,28,56,.74) 100%),
    radial-gradient(85% 80% at 70% 18%, rgba(200,162,76,.16), transparent 60%);
}
.media .media-cap { position: relative; z-index: 2; font-size: .82rem; letter-spacing: .04em; color: rgba(247,243,236,.85); }
.media .media-cap b { font-family: var(--serif); font-weight: 400; font-size: 1.1rem; display: block; }

/* dark band */
.band-dark { background: var(--ink); color: var(--paper); }
.band-dark h2, .band-dark h3 { color: var(--paper); }
.band-dark p { color: rgba(247,243,236,.75); }
.band-dark .eyebrow { color: var(--brass-soft); }
.band-dark .eyebrow::before, .band-dark .eyebrow.center::after { background: var(--brass-soft); }
/* White cards sitting on a dark band keep their normal dark text. */
.band-dark .card, .band-dark .card h3 { color: var(--ink); }
.band-dark .card p { color: var(--ink-2); }
.band-soft { background: var(--paper-2); }

/* List with brass ticks */
.ticks { display: grid; gap: .9rem; }
.ticks li { display: flex; gap: .85rem; align-items: flex-start; font-size: 1rem; color: var(--ink-2); }
.ticks li::before {
  content: ""; flex: none; width: 20px; height: 20px; margin-top: 3px; border-radius: 50%;
  background: var(--brass) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230e1e36' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat;
}
.band-dark .ticks li { color: rgba(247,243,236,.85); }

/* Numbered process */
.steps { counter-reset: step; display: grid; gap: 1.75rem; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 1.5rem; align-items: start;
  padding-bottom: 1.75rem; border-bottom: 1px solid var(--line); }
.step:last-child { border-bottom: none; padding-bottom: 0; }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--serif); font-size: 1.6rem; color: var(--brass); line-height: 1;
  min-width: 2.4rem;
}
.step h3 { margin-bottom: .4rem; }
.band-dark .step { border-color: rgba(247,243,236,.14); }

/* Stat row */
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 760px){ .stat-row { grid-template-columns: repeat(2,1fr); } }
.stat { text-align: center; }
.stat .n { font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 3.4rem); line-height: 1; color: var(--ink); }
.band-dark .stat .n { color: var(--brass-soft); }
.stat .l { font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); margin-top: .7rem; }
.band-dark .stat .l { color: rgba(247,243,236,.6); }

/* Quote / testimonial */
.quote { font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2.3rem); line-height: 1.32; }
.quote-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 2.25rem; }
.quote-card .stars { color: var(--brass); letter-spacing: 3px; margin-bottom: 1rem; }
.quote-card blockquote { font-family: var(--serif); font-size: 1.22rem; line-height: 1.45; color: var(--ink); }
.quote-card .who { margin-top: 1.5rem; font-size: .9rem; }
.quote-card .who b { display: block; }
.quote-card .who span { color: var(--ink-soft); }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1rem; }
.gallery .tile { position: relative; overflow: hidden; border-radius: var(--radius);
  background: var(--ink) var(--img-exterior) center / cover no-repeat; min-height: 220px; color: var(--paper);
  display: flex; align-items: flex-end; padding: 1.4rem; border: 1px solid var(--line);
  transition: transform .5s var(--ease); }
.gallery .tile:hover { transform: scale(1.012); }
.gallery .tile::after { content:""; position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(0,28,56,.10) 0%, rgba(0,28,56,.78) 100%),
    radial-gradient(80% 70% at 65% 20%, rgba(200,162,76,.16), transparent 60%); }
.gallery .tile:nth-child(7n+1){ background-image: var(--img-exterior); }
.gallery .tile:nth-child(7n+2){ background-image: var(--img-night); }
.gallery .tile:nth-child(7n+3){ background-image: var(--img-living); }
.gallery .tile:nth-child(7n+4){ background-image: var(--img-pool); }
.gallery .tile:nth-child(7n+5){ background-image: var(--img-interior); }
.gallery .tile:nth-child(7n+6){ background-image: var(--img-kitchen); }
.gallery .tile:nth-child(7n+7){ background-image: var(--img-detail); }
.gallery .tile span { position: relative; z-index: 2; font-size: .82rem; letter-spacing: .04em; }
.gallery .tile b { font-family: var(--serif); font-weight: 400; font-size: 1.15rem; display:block; }
.gallery .c-4 { grid-column: span 4; } .gallery .c-6 { grid-column: span 6; }
.gallery .c-8 { grid-column: span 8; } .gallery .c-12 { grid-column: span 12; }
.gallery .r-tall { min-height: 340px; }
@media (max-width: 760px){ .gallery .tile { grid-column: 1 / -1 !important; } }

/* Logos / partners */
.logos { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
@media (max-width: 760px){ .logos { grid-template-columns: repeat(2,1fr); } }
.logos div { background: var(--paper); display: grid; place-items: center; padding: 1.75rem 1rem;
  font-family: var(--serif); font-size: 1.1rem; color: var(--ink-soft); letter-spacing: .02em; }

/* Accordion (FAQ) */
.acc { border-top: 1px solid var(--line); }
.acc details { border-bottom: 1px solid var(--line); }
.acc summary { list-style: none; cursor: pointer; padding: 1.5rem 0; display: flex; justify-content: space-between;
  align-items: center; gap: 1.5rem; font-family: var(--serif); font-size: 1.25rem; color: var(--ink); }
.acc summary::-webkit-details-marker { display: none; }
.acc summary .pm { flex: none; width: 26px; height: 26px; position: relative; transition: transform .3s var(--ease); }
.acc summary .pm::before, .acc summary .pm::after { content:""; position:absolute; background: var(--brass-deep);
  left: 50%; top: 50%; transform: translate(-50%,-50%); }
.acc summary .pm::before { width: 14px; height: 2px; }
.acc summary .pm::after { width: 2px; height: 14px; transition: transform .3s var(--ease); }
.acc details[open] summary .pm::after { transform: translate(-50%,-50%) scaleY(0); }
.acc .body { padding: 0 0 1.6rem; color: var(--ink-2); max-width: 70ch; }

/* Forms */
.form { display: grid; gap: 1.25rem; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 600px){ .form .row { grid-template-columns: 1fr; } }
.field label { display: block; font-size: .78rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--ink-soft); margin-bottom: .5rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: .9rem 1rem; font: inherit; font-size: .95rem; color: var(--ink);
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  transition: border-color .25s, box-shadow .25s;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brass); box-shadow: 0 0 0 3px rgba(200,162,76,.18);
}
.field input[type="file"] { padding: .6rem; font-size: .9rem; cursor: pointer; }
.field input[type="file"]::file-selector-button {
  font: inherit; font-size: .78rem; font-weight: 600; letter-spacing: .04em;
  margin-right: .9rem; padding: .5rem .9rem; border: 1px solid var(--line);
  background: var(--paper); color: var(--ink); border-radius: var(--radius); cursor: pointer;
  transition: border-color .2s;
}
.field input[type="file"]::file-selector-button:hover { border-color: var(--ink); }

/* Form result notes */
.form-note, .form-error { font-size: .92rem; border-radius: var(--radius); padding: .9rem 1.1rem; margin-top: .25rem; }
.form-note { color: var(--ink); background: rgba(200,162,76,.12); border: 1px solid var(--brass-soft); }
.form-error { color: #7a2e2e; background: #fbecec; border: 1px solid #e7c3c3; }
.form-error a { color: inherit; text-decoration: underline; }

/* Careers — job postings */
.job { padding: clamp(1.75rem, 3vw, 2.6rem); }
.job + .job { margin-top: 1.75rem; }
.job-head { display: flex; flex-wrap: wrap; align-items: flex-start; justify-content: space-between; gap: 1.25rem; }
.job-head .pill + .pill { margin-left: .5rem; }
.job-head h3 { margin-top: .85rem; }
.job-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 1.6rem; }
@media (max-width: 760px) { .job-cols { grid-template-columns: 1fr; gap: 1.5rem; } }
.job-cols h4 { font-family: var(--sans); font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--brass-deep); margin-bottom: 1rem; }
.job-foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem;
  margin-top: 1.75rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.job-foot .comp { font-size: .9rem; color: var(--ink-soft); max-width: 60ch; }
.job-foot .comp b { color: var(--ink); font-weight: 600; }

/* Contact info list */
.info-list { display: grid; gap: 1.5rem; }
.info-list li { display: flex; gap: 1rem; align-items: flex-start; }
.info-list .ico { color: var(--brass-deep); flex: none; margin-top: 2px; }
.info-list b { display: block; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: .25rem; }

/* CTA band */
.cta {
  position: relative; overflow: hidden; color: var(--paper);
  background: var(--ink) var(--img-night) center / cover no-repeat;
}
.cta::before { content:""; position:absolute; inset:0;
  background:
    radial-gradient(80% 120% at 80% 10%, rgba(200,162,76,.28), transparent 55%),
    linear-gradient(120deg, rgba(0,40,80,.88), rgba(0,26,53,.95)); }
.cta .container { position: relative; z-index: 2; text-align: center; padding-block: clamp(4rem, 8vw, 6.5rem); }
.cta h2 { color: var(--paper); max-width: 18ch; margin-inline: auto; }
.cta p { color: rgba(247,243,236,.8); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(247,243,236,.7); padding-block: clamp(3.5rem, 6vw, 5rem) 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; }
@media (max-width: 900px){ .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 540px){ .footer-grid { grid-template-columns: 1fr; } }
.site-footer .brand-logo { height: 108px; margin-bottom: .25rem; }
.site-footer .brand .word-main { color: var(--paper); }
.site-footer .brand .word-sub { color: var(--brass-soft); }
.site-footer .brand .mark { color: var(--paper); }
.site-footer .addr { line-height: 1.45; }
.site-footer h5 { font-family: var(--sans); font-size: .76rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--brass-soft); margin-bottom: 1.25rem; font-weight: 600; }
.site-footer ul { display: grid; gap: .7rem; }
.site-footer a { color: rgba(247,243,236,.7); font-size: .92rem; transition: color .2s; }
.site-footer a:hover { color: var(--paper); }
.site-footer p { color: rgba(247,243,236,.74); }
.footer-about p { font-size: .92rem; margin-top: 1.25rem; max-width: 36ch; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  margin-top: 3.5rem; padding-top: 1.75rem; border-top: 1px solid rgba(247,243,236,.14);
  font-size: .82rem; color: rgba(247,243,236,.5); }
.footer-bottom a { color: rgba(247,243,236,.5); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){ .reveal { opacity: 1; transform: none; transition: none; } html{ scroll-behavior:auto; } }

/* Utility */
.text-brass { color: var(--brass-deep); }
.divider { height: 1px; background: var(--line); border: none; margin-block: 0; }
.pill { display: inline-block; font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--brass-deep); background: var(--paper-2); border: 1px solid var(--line);
  padding: .35rem .8rem; border-radius: 100px; }
.band-dark .pill { background: rgba(247,243,236,.06); border-color: rgba(247,243,236,.16); color: var(--brass-soft); }
.tag-row { display: flex; flex-wrap: wrap; gap: .6rem; }
