@import url('https://fonts.googleapis.com/css2?family=Anton&family=Work+Sans:wght@400;500;600;700&display=swap');

:root {
  /* Brand core — matches the shop-management app so the two feel related */
  --pine: #15803d;
  --pine-dark: #0f6631;
  --gold: #c99a2e;
  --gold-bright: #e3b94a;

  /* Public-site-only extensions */
  --forest: #0b2b1d;       /* deep pine, hero / dark section bg */
  --forest-soft: #123524;  /* slightly lighter dark green, cards on dark bg */
  --cream: #f7f3e6;        /* warm paper, main light bg */
  --cream-deep: #efe7d2;   /* recessed panels on cream */
  --ink: #201c14;          /* primary text on light */
  --ink-soft: #4b463a;     /* secondary text on light */
  --paper-line: #e2d8bd;   /* hairline on cream */
  --danger: #b3261e;

  --radius: 10px;
  --radius-lg: 18px;
  --shadow: 0 12px 30px -14px rgba(11, 43, 29, 0.35);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark, var(--gold));
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 22px; height: 2px;
  background: var(--gold);
  display: inline-block;
}
.on-dark .eyebrow { color: var(--gold-bright); }

h1, h2, h3, .h-display {
  font-family: 'Anton', 'Work Sans', sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.02;
  text-transform: uppercase;
  margin: 0 0 0.4em;
  color: var(--forest);
}
.on-dark h1, .on-dark h2, .on-dark h3 { color: #fff; }

h2 { font-size: clamp(28px, 4vw, 44px); }
h3 { font-size: 20px; }

p { margin: 0 0 1em; color: var(--ink-soft); }
.on-dark p { color: #d9dfd4; }

.section { padding: 76px 0; }
.section--tight { padding: 52px 0; }
.section--dark { background: var(--forest); color: #fff; }
.section--cream-deep { background: var(--cream-deep); }

.lede { font-size: 18px; max-width: 620px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, color .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-gold {
  background: var(--gold);
  color: var(--forest);
  box-shadow: 0 10px 24px -10px rgba(201, 154, 46, 0.7);
}
.btn-gold:hover { background: var(--gold-bright); }
.btn-outline {
  border-color: rgba(255,255,255,0.55);
  color: #fff;
  background: transparent;
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn-outline-dark {
  border-color: var(--forest);
  color: var(--forest);
  background: transparent;
}
.btn-outline-dark:hover { background: var(--forest); color: #fff; }
.btn-pine { background: var(--pine); color: #fff; }
.btn-pine:hover { background: var(--pine-dark); }
.btn-block { width: 100%; }
.btn[disabled] { opacity: 0.6; cursor: not-allowed; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: var(--forest);
  border-bottom: 3px solid var(--gold);
}
.site-header .wrap { display: flex; align-items: center; gap: 28px; padding-top: 6px; padding-bottom: 6px; }
.brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: #fff;
  font-family: 'Anton', sans-serif;
  font-size: 21px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}
.brand-logo { height: 160px; width: auto; display: block; }
.brand .bear { font-size: 24px; line-height: 1; }
.brand .brand-gold { color: var(--gold-bright); }

.site-nav { display: flex; gap: 26px; margin-left: auto; align-items: center; }
.site-nav a {
  color: #e9e5d6; text-decoration: none; font-weight: 600; font-size: 14.5px;
  letter-spacing: 0.02em; padding: 6px 2px; border-bottom: 2px solid transparent;
}
.site-nav a:hover, .site-nav a.active { color: #fff; border-color: var(--gold); }
.site-nav .btn { margin-left: 6px; }

.nav-toggle {
  display: none;
  background: none; border: none; color: #fff; font-size: 26px; cursor: pointer;
  padding: 4px 8px;
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--forest); border-bottom: 3px solid var(--gold);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 6px 24px 18px;
    display: none;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .site-nav .btn { margin: 12px 0 0; text-align: center; }
}

/* ---------- Ridge divider (signature element) ---------- */
.ridge { display: block; width: 100%; height: auto; margin-bottom: -1px; }
.ridge-up { transform: scaleY(-1); margin-bottom: 0; margin-top: -1px; }

/* ---------- Hero ---------- */
.hero {
  background: var(--forest);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding-top: 64px;
}
.hero::before {
  /* subtle screen-mesh dot texture */
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 14px 14px;
  opacity: 0.5;
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 1; padding-bottom: 70px; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center; padding-top: 42px; }
.hero h1 {
  font-size: clamp(40px, 6.2vw, 78px);
  color: #fff;
  margin-top: 14px;
}
.hero h1 .accent { color: var(--gold-bright); }
.hero .lede { color: #dbe3d3; font-size: 19px; margin-top: 18px; margin-bottom: 30px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-badge-card {
  background: var(--forest-soft);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 26px;
}
.hero-badge-card .stat-row + .stat-row { border-top: 1px solid rgba(255,255,255,0.12); }
.stat-row { display: flex; justify-content: space-between; align-items: baseline; padding: 14px 0; }
.stat-row .num { font-family: 'Anton', sans-serif; font-size: 28px; color: var(--gold-bright); }
.stat-row .label { color: #cfd8c5; font-size: 14px; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
}

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--cream-deep);
  border-bottom: 1px solid var(--paper-line);
}
.trust-strip ul {
  list-style: none; margin: 0; padding: 18px 0;
  display: flex; flex-wrap: wrap; gap: 10px 34px; justify-content: center;
}
.trust-strip li {
  display: flex; align-items: center; gap: 9px;
  font-weight: 600; font-size: 14.5px; color: var(--forest);
}
.trust-strip li .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--pine); }

/* ---------- Services ---------- */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px; }
@media (max-width: 900px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .card-grid { grid-template-columns: 1fr; } }

.service-card {
  background: #fff;
  border: 1px solid var(--paper-line);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  box-shadow: var(--shadow);
}
.service-card .icon {
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  background: var(--forest); color: var(--gold-bright);
  border-radius: 12px; margin-bottom: 16px;
}
.service-card h3 { margin-bottom: 8px; color: var(--forest); }
.service-card p { margin: 0; font-size: 14.5px; }

/* ---------- Process ---------- */
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; margin-top: 44px;
  position: relative;
}
@media (max-width: 900px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .process-grid { grid-template-columns: 1fr; } }
.process-step { position: relative; }
.process-step .index {
  font-family: 'Anton', sans-serif;
  font-size: 46px;
  color: var(--gold);
  opacity: 0.9;
  line-height: 1;
}
.process-step h3 { color: #fff; margin: 10px 0 8px; font-size: 18px; }
.process-step p { font-size: 14.5px; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; } }

.gallery-tile {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--paper-line);
  background: #fff;
  box-shadow: var(--shadow);
}
.gallery-tile .art {
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  background: var(--cream-deep);
  padding: 14px;
}
.gallery-tile .art img { width: 100%; height: 100%; object-fit: contain; }
.gallery-tile .meta { padding: 14px 16px 16px; }
.gallery-tile .meta .tag {
  display: inline-block; font-size: 11.5px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--pine-dark); margin-bottom: 6px;
}
.gallery-tile .meta h3 { font-size: 16px; margin: 0; color: var(--forest); }

.gallery-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 30px; }
.filter-pill {
  border: 2px solid var(--forest);
  background: transparent;
  color: var(--forest);
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13.5px;
  cursor: pointer;
}
.filter-pill.active, .filter-pill:hover { background: var(--forest); color: #fff; }

.placeholder-note {
  margin-top: 30px;
  padding: 16px 18px;
  border: 1px dashed var(--paper-line);
  border-radius: var(--radius);
  background: var(--cream-deep);
  font-size: 13.5px;
  color: var(--ink-soft);
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--gold);
  padding: 56px 0;
  text-align: center;
}
.cta-banner h2 { color: var(--forest); margin-bottom: 10px; }
.cta-banner p { color: #5c481a; margin-bottom: 26px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--forest); color: #d9dfd4; padding: 56px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 30px; } }
.site-footer h4 {
  color: var(--gold-bright); font-family: 'Work Sans', sans-serif; font-weight: 700;
  font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; margin: 0 0 14px;
}
.site-footer a { color: #d9dfd4; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; font-size: 14.5px; }
.footer-bottom {
  margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.14);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 13px; color: #a9b39d;
}

/* ---------- Forms (quote + contact) ---------- */
.form-shell {
  background: #fff;
  border: 1px solid var(--paper-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 34px;
}
@media (max-width: 560px) { .form-shell { padding: 22px; } }

.field { margin-bottom: 20px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 620px) { .field-row { grid-template-columns: 1fr; } }

label {
  display: block; font-weight: 700; font-size: 13.5px;
  color: var(--forest); margin-bottom: 7px;
  letter-spacing: 0.01em;
}
.hint { font-size: 12.5px; color: var(--ink-soft); margin-top: 6px; }
.optional-tag { font-weight: 500; color: var(--ink-soft); text-transform: none; letter-spacing: 0; }

input[type=text], input[type=email], input[type=tel], input[type=date],
select, textarea {
  width: 100%;
  font-family: 'Work Sans', sans-serif;
  font-size: 15px;
  padding: 12px 14px;
  border: 1.5px solid var(--paper-line);
  border-radius: 8px;
  background: var(--cream);
  color: var(--ink);
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--pine); background: #fff;
  box-shadow: 0 0 0 3px rgba(21,128,61,0.15);
}
textarea { min-height: 120px; resize: vertical; }

.pill-select { display: flex; flex-wrap: wrap; gap: 10px; }
.pill-select input { position: absolute; opacity: 0; pointer-events: none; }
.pill-select label {
  margin: 0; font-weight: 600; font-size: 13.5px; color: var(--forest);
  border: 1.5px solid var(--paper-line); border-radius: 999px;
  padding: 9px 16px; cursor: pointer; background: var(--cream);
}
.pill-select input:checked + label { background: var(--forest); border-color: var(--forest); color: #fff; }

.dropzone {
  border: 2px dashed var(--paper-line);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  background: var(--cream);
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
}
.dropzone.drag-over { border-color: var(--pine); background: #eef6ef; }
.dropzone .dz-title { font-weight: 700; color: var(--forest); }
.dropzone .dz-sub { font-size: 12.5px; color: var(--ink-soft); margin-top: 4px; }
.dropzone input[type=file] { display: none; }

.file-list { list-style: none; margin: 14px 0 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.file-list li {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  font-size: 13.5px; background: var(--cream-deep); border-radius: 8px; padding: 8px 12px;
}
.file-list .remove { background: none; border: none; color: var(--danger); font-weight: 700; cursor: pointer; font-size: 13px; }

/* Honeypot field: kept in normal document flow (not display:none) since
   some bots skip fields that are hidden that way, but moved fully off
   screen for real visitors and screen readers told to ignore it. */
.hp-field { position: absolute; left: -5000px; top: -5000px; }

.form-alert {
  padding: 13px 16px; border-radius: 8px; font-size: 14px; margin-bottom: 22px;
}
.form-alert-error { background: #fbeaea; color: #7a231d; border: 1px solid #f1c7c3; }
.form-alert-success { background: #eaf5ec; color: #1e5b34; border: 1px solid #c6e6cd; }

.success-panel {
  text-align: center;
  padding: 50px 30px;
}
.success-panel .badge-check {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--pine); color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 30px;
}

/* ---------- Utility ---------- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; } }

.map-frame {
  border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--paper-line);
  box-shadow: var(--shadow); aspect-ratio: 4/3;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }

.contact-list { list-style: none; margin: 24px 0 0; padding: 0; display: flex; flex-direction: column; gap: 18px; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; }
.contact-list .ic {
  width: 40px; height: 40px; border-radius: 10px; background: var(--forest); color: var(--gold-bright);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-list strong { display: block; color: var(--forest); font-size: 15px; }
.contact-list span, .contact-list a { font-size: 14.5px; color: var(--ink-soft); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .dropzone { transition: none; }
}
