:root {
  --bg: #faf8f5;
  --bg-alt: #f1ebe1;
  --ink: #2b2620;
  --ink-soft: #5c554a;
  --dark: #1f2421;
  --accent: #c97b3f;
  --accent-dark: #a85f2a;
  --line: #e2d8c8;
  --white: #ffffff;
  --radius: 14px;
  --radius-sm: 9px;
  --shadow: 0 10px 30px rgba(43, 38, 32, .08);
  --maxw: 1120px;
  --font-head: "Fraunces", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 86px; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }

h1, h2, h3 { font-family: var(--font-head); font-weight: 600; line-height: 1.15; color: var(--ink); }
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); margin: .2em 0 .4em; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin: 0 0 .4em; }
h3 { font-size: 1.22rem; margin: 0 0 .35em; }
p { margin: 0 0 1em; }

a { color: var(--accent-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--dark); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.eyebrow {
  text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; font-weight: 600;
  color: var(--accent-dark); margin: 0 0 .3em;
}
.eyebrow.light { color: var(--accent); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 1rem; padding: 13px 24px; border-radius: 999px;
  border: 2px solid transparent; cursor: pointer; transition: transform .12s ease, background .15s ease, box-shadow .15s ease;
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); box-shadow: 0 8px 20px rgba(201,123,63,.3); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-block { width: 100%; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,248,245,.9); backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); }
.brand:hover { text-decoration: none; }
.brand-text { font-family: var(--font-head); font-size: 1.05rem; letter-spacing: .01em; }
.brand-text strong { font-weight: 600; }

.site-nav { display: flex; align-items: center; gap: 26px; }
.site-nav a { color: var(--ink); font-weight: 500; }
.site-nav a:hover { color: var(--accent-dark); text-decoration: none; }
.nav-cta { background: var(--dark); color: #fff !important; padding: 9px 18px; border-radius: 999px; }
.nav-cta:hover { background: var(--accent-dark); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .2s; }

/* Hero */
.hero { padding: clamp(40px, 7vw, 84px) 0; }
.hero-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.lead { font-size: 1.15rem; color: var(--ink-soft); max-width: 46ch; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 1.4em 0 1.2em; }
.hero-trust { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px 22px; color: var(--ink-soft); font-size: .95rem; }
.hero-figure img, .hero-figure svg { width: 100%; height: auto; border-radius: 18px; box-shadow: var(--shadow); }

/* Sections */
.section { padding: clamp(48px, 7vw, 90px) 0; }
.section-alt { background: var(--bg-alt); }
.section-head { max-width: 620px; margin: 0 auto clamp(28px, 4vw, 48px); text-align: center; }
.section-intro { color: var(--ink-soft); font-size: 1.08rem; }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; transition: transform .15s ease, box-shadow .15s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card-icon { font-size: 1.8rem; display: inline-block; margin-bottom: 6px; }
.card p { color: var(--ink-soft); margin: 0; }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.gallery-item { margin: 0; }
.gallery-img {
  width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--radius); border: 1px solid var(--line);
  transition: transform .2s ease, box-shadow .2s ease;
}
.gallery-item:hover .gallery-img { transform: translateY(-3px); box-shadow: var(--shadow); }
.gallery-item figcaption { padding: 12px 4px 0; color: var(--ink-soft); font-size: .95rem; }

/* About */
.about-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 48px; align-items: center; }
.checklist { list-style: none; padding: 0; margin: 1.2em 0 0; }
.checklist li { position: relative; padding-left: 30px; margin-bottom: 12px; color: var(--ink-soft); }
.checklist li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 22px; height: 22px; background: var(--accent); color: #fff; border-radius: 50%;
  display: grid; place-items: center; font-size: .8rem; font-weight: 700;
}
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; text-align: center; }
.stat-num { display: block; font-family: var(--font-head); font-size: 1.7rem; color: var(--accent-dark); }
.stat-label { font-size: .88rem; color: var(--ink-soft); }

/* Contact */
.section-dark { background: var(--dark); color: #ece6dd; }
.section-dark h2 { color: #fff; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; }
.contact-info p { color: #c8c1b6; }
.contact-list { list-style: none; padding: 0; margin: 1.4em 0 0; }
.contact-list li { display: flex; flex-direction: column; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.contact-list li span { font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: #9a9387; }
.contact-list a { color: #fff; font-weight: 500; font-size: 1.1rem; }

.contact-form { background: var(--white); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; color: var(--ink); margin-bottom: 6px; font-size: .95rem; }
.optional { font-weight: 400; color: var(--ink-soft); }
.field input, .field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font: inherit; color: var(--ink); background: #fcfbf9; transition: border-color .15s ease;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); }
.field textarea { resize: vertical; }
.field.invalid input, .field.invalid textarea { border-color: #c0392b; }
.error { display: block; color: #c0392b; font-size: .85rem; margin-top: 5px; min-height: 1px; }

.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-status { margin: 14px 0 0; font-weight: 600; min-height: 1.3em; }
.form-status.ok { color: #2f7d3a; }
.form-status.err { color: #c0392b; }
.form-note { font-size: .85rem; color: var(--ink-soft); margin: 10px 0 0; }

/* Footer */
.site-footer { background: #151916; color: #c8c1b6; padding: 44px 0 24px; }
.footer-inner { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; align-items: flex-start; }
.footer-brand { color: #fff; }
.footer-cvr { font-size: .9rem; margin: .5em 0 0; }
.footer-ownership { max-width: 36ch; color: #9a9387; font-size: .92rem; }
.footer-bottom { margin-top: 28px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom p { margin: 0; font-size: .85rem; color: #807a6f; }

/* Responsive */
@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute; top: 72px; left: 0; right: 0; flex-direction: column; gap: 0;
    background: var(--bg); border-bottom: 1px solid var(--line);
    max-height: 0; overflow: hidden; transition: max-height .25s ease;
  }
  .site-nav.open { max-height: 340px; }
  .site-nav a { padding: 14px 22px; width: 100%; border-top: 1px solid var(--line); }
  .nav-cta { border-radius: 0; }
  .hero-inner, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-figure { order: -1; max-width: 420px; }
}

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