@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600&family=Lora:wght@400;600&display=swap');

:root {
  --color-bg: #f3f2f2;
  --color-surface: #eae9e9;
  --color-text: #201f1d;
  --color-accent: #2b5545;
  --color-accent-dark: #1c3a2c;
  --color-ink: #24473a;
  --color-cream: #f0eeea;
  --color-divider: rgba(32, 31, 29, 0.16);

  --font-heading: "Cormorant Garamond", system-ui, sans-serif;
  --font-body: "Lora", system-ui, sans-serif;

  --radius-md: 4px;
  --shadow-md: 0 3px 10px rgba(45, 43, 43, 0.16);
  --shadow-lg: 0 12px 40px rgba(30, 28, 26, 0.16);

  --content-max: 1180px;
}

* , *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  background: #dedbd6;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
}

h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 600; line-height: 1.12; margin: 0; }

a { color: var(--color-accent); text-underline-offset: 3px; }
a:hover { color: var(--color-accent-dark); }
img { display: block; max-width: 100%; }

.page {
  max-width: var(--content-max);
  margin: 0 auto;
  background: var(--color-bg);
  color: var(--color-text);
  box-shadow: var(--shadow-lg);
}

.text-muted { color: rgba(32, 31, 29, 0.55); }

.plate {
  filter: sepia(0.22) saturate(0.82) contrast(1.05);
  box-sizing: border-box;
  border: 6px solid var(--color-surface);
  outline: 1px solid var(--color-divider);
  overflow: hidden;
}
.plate img { width: 100%; height: 100%; object-fit: cover; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  cursor: pointer; text-decoration: none;
  font-family: var(--font-heading); font-weight: 600;
  font-size: 15px; line-height: 1.2;
  border: 1px solid transparent; border-radius: var(--radius-md);
  padding: 12px 24px;
  transition: background .15s ease;
}
.btn-block { width: 100%; }

/* ── Header / hero ───────────────────────────── */
.hero {
  background: var(--color-ink);
  color: var(--color-cream);
  padding: 26px 56px 96px;
}
header.nav {
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  padding-bottom: 22px; border-bottom: 1px solid rgba(240, 238, 234, .24);
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand img { width: 44px; height: 44px; }
.brand-name { font-family: var(--font-heading); font-size: 24px; line-height: 1.1; }
.brand-sub {
  font-family: var(--font-heading); font-size: 10px; letter-spacing: .24em;
  text-transform: uppercase; color: rgba(240, 238, 234, .7);
}
.nav-links { display: flex; align-items: center; gap: 26px; font-family: var(--font-heading); font-size: 14px; letter-spacing: .06em; }
.nav-links a { color: var(--color-cream); text-decoration: none; }
.nav-links .btn { color: var(--color-cream); border-color: rgba(240, 238, 234, .55); }
.nav-links .btn:hover { background: rgba(240, 238, 234, .12); }

.hero-body { text-align: center; padding: 74px 0 0; }
.hero-eyebrow {
  font-family: var(--font-heading); font-size: 11px; letter-spacing: .3em;
  text-transform: uppercase; color: rgba(240, 238, 234, .72);
}
.hero-body h1 { font-size: 88px; font-weight: 400; margin: 26px 0 24px; }
.hero-lead { font-size: 21px; line-height: 1.6; margin: 0 auto; max-width: 40ch; color: rgba(240, 238, 234, .86); }
.hero-lead em { font-style: italic; }
.hero-actions { display: flex; gap: 14px; justify-content: center; margin-top: 34px; flex-wrap: wrap; }
.btn-cream { color: var(--color-ink); background: var(--color-cream); border-color: var(--color-cream); }
.btn-cream:hover { background: #fff; }
.btn-outline-cream { color: var(--color-cream); border-color: rgba(240, 238, 234, .5); font-feature-settings: 'tnum'; }
.btn-outline-cream:hover { background: rgba(240, 238, 234, .12); }

.hero-plate { padding: 0 56px; margin-top: -64px; }
.hero-plate .plate { height: 340px; border-width: 10px; box-shadow: var(--shadow-md); }

/* ── Sections ─────────────────────────────────── */
.section { padding: 72px 56px 0; }
.section:last-of-type { padding-bottom: 76px; }
.section-heading { display: flex; align-items: baseline; gap: 18px; margin-bottom: 34px; }
.section-heading h2 { font-size: 15px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; font-family: var(--font-body); }
.section-heading .rule { flex: 1; height: 1px; background: var(--color-divider); }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  border: 1px solid var(--color-divider); border-radius: var(--radius-md);
  padding: 30px 26px; transition: border-color .15s ease;
}
.card:hover { border-color: var(--color-accent); }
.card-kicker { color: var(--color-accent); font-feature-settings: 'tnum'; font-size: 13px; }
.card-title { font-size: 25px; font-weight: 400; margin: 8px 0 12px; }
.card-body { text-align: justify; hyphens: auto; margin: 0; }
.services-note { margin: 26px 0 0; font-size: 14px; }

.about-grid { display: grid; grid-template-columns: 1fr 380px; gap: 56px; align-items: center; }
.about-eyebrow { font-family: var(--font-heading); font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--color-accent); }
.about-grid h2 { font-size: 44px; font-weight: 400; margin: 14px 0 22px; max-width: 16ch; }
.about-grid p { text-align: justify; hyphens: auto; font-size: 16px; line-height: 1.75; max-width: 62ch; margin: 0 0 16px; }
.about-quote { border-left: 1px solid var(--color-accent); padding-left: 22px; margin-top: 28px; }
.about-quote p { font-family: var(--font-heading); font-size: 24px; font-style: italic; color: var(--color-accent); margin: 0; }
.about-quote .text-muted { margin: 6px 0 0; letter-spacing: .14em; font-size: 13px; }
.about-plate { width: 100%; max-width: 380px; height: 500px; border-color: var(--color-surface); justify-self: center; }
.about-plate img { object-position: 50% 18%; }

.local {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border: 1px solid var(--color-divider);
}
.local-copy { padding: 44px 40px; display: flex; flex-direction: column; justify-content: center; gap: 12px; }
.local-copy .about-eyebrow { display: block; }
.local-copy h3 { font-size: 30px; font-weight: 400; }
.local-copy p { margin: 0; max-width: 40ch; }
.local-copy .btn { align-self: flex-start; margin-top: 8px; color: var(--color-accent); border-color: var(--color-accent); }
.local-copy .btn:hover { background: rgba(43, 85, 69, .1); }
.local-plate { height: 300px; border: 0; outline: 0; }

.review-band { padding: 48px 56px 76px; }
.review-band-inner {
  border-top: 1px solid var(--color-divider); border-bottom: 1px solid var(--color-divider);
  padding: 30px 0; display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.review-band-copy { display: flex; align-items: center; gap: 22px; }
.review-band-icon { flex: 0 0 auto; }
.review-band-title { font-family: var(--font-heading); font-size: 26px; font-weight: 400; line-height: 1.25; }
.review-band-text { margin: 6px 0 0; max-width: 58ch; }
.review-band .btn { flex: 0 0 auto; color: var(--color-accent); border-color: var(--color-accent); }
.review-band .btn:hover { background: rgba(43, 85, 69, .1); }

/* ── Contact ──────────────────────────────────── */
.contact {
  background: var(--color-ink); color: var(--color-cream); padding: 76px 56px;
}
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-info .about-eyebrow { color: rgba(240, 238, 234, .72); }
.contact-info h2 { font-size: 44px; font-weight: 400; margin: 12px 0 18px; color: var(--color-cream); }
.contact-info > p { max-width: 44ch; color: rgba(240, 238, 234, .85); }
.contact-rule { height: 1px; background: rgba(240, 238, 234, .24); margin: 28px 0; }
.contact-details { display: grid; gap: 16px; font-size: 16.5px; }
.contact-details .label {
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(240, 238, 234, .6); margin-bottom: 4px;
}
.contact-details a { color: var(--color-cream); }
.contact-details a[href^="tel"] { font-feature-settings: 'tnum'; }

.contact-panel { border: 1px solid rgba(240, 238, 234, .28); padding: 34px; }
.contact-form { display: grid; gap: 16px; }
.field { display: grid; gap: 6px; }
.field label {
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: rgba(240, 238, 234, .72);
}
.field input, .field textarea {
  background: transparent; border: 1px solid rgba(240, 238, 234, .34);
  color: var(--color-cream); padding: 10px 12px; border-radius: var(--radius-md);
  font-family: var(--font-body); font-size: 14px;
}
.field textarea { resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: rgba(240, 238, 234, .45); }
.field input:focus, .field textarea:focus { outline: 2px solid var(--color-cream); outline-offset: 0; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 12.5px; line-height: 1.5; color: rgba(240, 238, 234, .72); }
.consent input { margin-top: 3px; accent-color: var(--color-cream); }
.consent.error, .consent.error span { color: #f3b6a8; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-status { font-size: 13.5px; margin-top: -4px; min-height: 1em; }
.form-status.error { color: #f3b6a8; }

.contact-panel-disabled { position: relative; }
.contact-panel-disabled .contact-form {
  filter: blur(4px);
  opacity: .45;
  pointer-events: none;
  user-select: none;
}
.contact-unavailable {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  padding: 24px;
  background: rgba(36, 71, 58, .55);
  font-family: var(--font-heading);
  font-size: 19px;
  color: var(--color-cream);
}

.contact-sent {
  min-height: 380px; display: flex; flex-direction: column; justify-content: center;
  text-align: center; gap: 10px;
}
.contact-sent span:first-child { font-family: var(--font-heading); font-size: 30px; }
.contact-sent span:last-child { color: rgba(240, 238, 234, .75); }
.hidden { display: none !important; }

/* ── Footer ───────────────────────────────────── */
footer {
  padding: 48px 56px 40px; border-top: 1px solid var(--color-divider);
}
.footer-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 48px; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 42px; height: 42px; }
.footer-brand-name { font-family: var(--font-heading); font-size: 24px; color: var(--color-accent); line-height: 1.1; }
.footer-brand-sub { font-family: var(--font-heading); font-size: 10px; letter-spacing: .24em; text-transform: uppercase; }
.footer-address { font-size: 15.5px; line-height: 1.9; text-align: right; }
.footer-address .tnum { font-feature-settings: 'tnum'; }
.rodo { margin: 28px 0 0; font-size: 11.5px; line-height: 1.7; text-align: justify; }

/* ── Responsive ───────────────────────────────── */
@media (max-width: 900px) {
  .hero, .section, .contact, .review-band, footer { padding-left: 28px; padding-right: 28px; }
  .hero-plate { padding-left: 28px; padding-right: 28px; }
  .hero-body h1 { font-size: 56px; }
  .services-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-plate { order: -1; width: 100%; height: 320px; }
  .local { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .nav-links { gap: 14px; font-size: 13px; }
  .footer-address { text-align: left; }
  .footer-top { flex-direction: column; }
}

@media (max-width: 520px) {
  .hero-body h1 { font-size: 42px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  header.nav { flex-wrap: wrap; gap: 16px; }
}
