:root {
  --bg: #f3eee4;
  --paper: #fbf8f1;
  --ink: #1b1915;
  --muted: #6d655b;
  --forest: #47704c;
  --forest-fg: #f4efe6;
  --border: #d9d0c3;
  --danger: #8f2d2a;
  --shadow: 0 0 0 1px rgb(27 25 21 / 0.06), 0 1px 2px rgb(27 25 21 / 0.05),
    0 16px 36px rgb(27 25 21 / 0.07);
  --display: clamp(2.5rem, 1.2rem + 4.2vw, 4.35rem);
  --title: clamp(1.75rem, 1.2rem + 1.6vw, 2.5rem);
  --lede: clamp(1.05rem, 0.98rem + 0.4vw, 1.2rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 5.5rem; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Figtree, ui-sans-serif, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
h1, h2, h3 { font-family: Fraunces, "Times New Roman", serif; font-weight: 500; text-wrap: balance; margin: 0; }
p { text-wrap: pretty; }
a { color: inherit; }
.skip {
  position: absolute; left: -999px;
}
.skip:focus {
  left: 1rem; top: 1rem; z-index: 60;
  background: var(--forest); color: var(--forest-fg);
  padding: 0.5rem 1rem; border-radius: 0.5rem;
}
.wrap { width: min(72rem, calc(100% - 2rem)); margin-inline: auto; }
@media (min-width: 640px) {
  .wrap { width: min(72rem, calc(100% - 3rem)); }
}

header.site {
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid color-mix(in srgb, var(--border) 80%, transparent);
  background: color-mix(in srgb, var(--paper) 90%, transparent);
  backdrop-filter: blur(12px);
}
.header-row {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 0.35rem 1rem; padding: 0.75rem 0;
}
.logo {
  display: inline-flex; align-items: center; gap: 0.5rem;
  text-decoration: none; flex: none;
}
.logo img {
  width: 2.75rem; height: 2.75rem; flex: none;
  border-radius: 0.5rem; background: #fff; object-fit: contain; padding: 2px;
  outline: 1px solid rgb(27 25 21 / 0.12);
}
.logo span { font-family: Fraunces, serif; font-weight: 600; font-size: 0.95rem; white-space: nowrap; }
.logo .full { font-weight: 500; color: var(--muted); }
nav a {
  display: inline-flex; align-items: center; height: 2.75rem;
  padding: 0 0.65rem; font-size: 0.875rem; font-weight: 500;
  text-decoration: none; color: color-mix(in srgb, var(--ink) 80%, transparent);
}
nav a:hover { color: var(--ink); }

.eyebrow {
  margin: 0;
  font-size: 0.875rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted);
}
.lede { font-size: var(--lede); line-height: 1.55; color: var(--muted); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  height: 3rem; padding: 0 1.5rem; border-radius: 0.5rem;
  font-weight: 500; text-decoration: none; border: 0; cursor: pointer;
  font-family: inherit; font-size: 1rem;
}
.btn-forest { background: var(--forest); color: var(--forest-fg); }
.btn-forest:hover { background: var(--ink); }
.btn-outline { background: var(--paper); color: var(--ink); border: 1px solid var(--border); }
.hero {
  display: grid; gap: 0;
}
.hero-copy { padding: 2.5rem 0; }
.hero h1 { font-size: var(--display); line-height: 1.08; letter-spacing: -0.02em; margin-top: 1rem; }
.hero-copy p { max-width: 28rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }
.hero img { height: 16rem; width: 100%; object-fit: cover; }
@media (min-width: 640px) {
  .logo img { width: 3.75rem; height: 3.75rem; }
  .logo span { font-size: 1.25rem; }
}
@media (min-width: 768px) {
  .hero { grid-template-columns: 1fr 1fr; align-items: stretch; padding: 3rem 0; gap: 3rem; }
  .hero-copy { order: 1; padding: 4rem 0; }
  .hero-media { order: 2; }
  .hero img { height: 100%; min-height: 32rem; border-radius: 0.75rem; box-shadow: var(--shadow); }
}

.specials { background: var(--forest); color: var(--forest-fg); padding: 4rem 0; }
.specials .eyebrow { color: color-mix(in srgb, var(--forest-fg) 70%, transparent); }
.specials h2 { font-size: var(--title); margin-top: 0.75rem; max-width: 36rem; }
.cards { display: grid; gap: 1.5rem; margin: 2.5rem 0 0; padding: 0; list-style: none; }
@media (min-width: 768px) { .cards { grid-template-columns: 1fr 1fr; } }
.card {
  overflow: hidden; border-radius: 0.75rem;
  background: var(--paper); color: var(--ink); box-shadow: var(--shadow);
}
.card img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.card-body { padding: 1.25rem 1.5rem 1.5rem; }
.offer { margin: 0; font-size: 0.875rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--forest); }
.card h3 { margin-top: 0.5rem; font-size: 1.25rem; }
.card p { color: var(--muted); line-height: 1.55; }
.card-foot { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.75rem; margin-top: 1.25rem; }
.card-foot a { color: var(--forest); font-weight: 500; font-size: 0.875rem; }

.paper-band { background: var(--paper); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section { padding: 4rem 0; }
.section h2 { font-size: var(--title); margin-top: 0.75rem; }
.services { display: grid; gap: 1.5rem; margin: 2.5rem 0 0; padding: 0; list-style: none; }
@media (min-width: 640px) { .services { grid-template-columns: 1fr 1fr; } }
.services li { overflow: hidden; border-radius: 0.75rem; background: var(--bg); box-shadow: var(--shadow); }
.services img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.services h3 { font-size: 1.25rem; }
.pad { padding: 1.25rem 1.5rem 1.5rem; }

.gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-top: 2.5rem; }
@media (min-width: 768px) { .gallery { grid-template-columns: repeat(4, 1fr); } }
.gallery img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 0.5rem; }

.about { display: grid; gap: 2.5rem; align-items: center; }
.about img {
  width: 100%; aspect-ratio: 600 / 645; object-fit: contain; background: var(--paper);
  border-radius: 0.75rem; box-shadow: var(--shadow);
}
@media (min-width: 768px) {
  .about { grid-template-columns: auto minmax(0, 1fr); gap: 3rem; }
  .about img { width: 13rem; }
}

.contact { display: grid; gap: 2.5rem; }
@media (min-width: 768px) {
  .contact { grid-template-columns: 2fr 3fr; gap: 3.5rem; }
  .contact-photo { display: block !important; }
}
.contact-photo { display: none; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 0.75rem; box-shadow: var(--shadow); margin-top: 2rem; }

form.panel, .panel {
  background: var(--paper); border-radius: 0.75rem; padding: 1.25rem; box-shadow: var(--shadow);
}
@media (min-width: 640px) { form.panel, .panel { padding: 2rem; } }
.grid-2 { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .grid-2.two { grid-template-columns: 1fr 1fr; } }
label { font-size: 0.875rem; font-weight: 500; }
.hint { margin: 0; font-size: 0.875rem; color: var(--muted); }
input[type="text"], input[type="email"], input[type="number"], textarea {
  width: 100%; height: 2.75rem; border: 1px solid var(--border); border-radius: 0.5rem;
  background: var(--paper); color: var(--ink); padding: 0 0.85rem; font: inherit;
}
textarea { height: auto; min-height: 8rem; padding: 0.75rem 0.85rem; border-radius: 0.75rem; }
input:focus, textarea:focus { outline: 2px solid color-mix(in srgb, var(--forest) 25%, transparent); border-color: color-mix(in srgb, var(--forest) 50%, transparent); }
.hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.file {
  display: flex; min-height: 6rem; cursor: pointer; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.5rem;
  border: 1px dashed var(--border); border-radius: 0.5rem; background: var(--bg);
  padding: 1.5rem; text-align: center; color: var(--muted); font-size: 0.875rem;
}
input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.alert { color: var(--danger); font-size: 0.875rem; }
.ok h3 { font-size: 1.5rem; margin-top: 1.25rem; }

footer.site { background: var(--forest); color: var(--forest-fg); padding: 2.5rem 0; }
footer.site img { width: min(100%, 42rem); height: auto; }
footer.site p { color: color-mix(in srgb, var(--forest-fg) 80%, transparent); font-size: 0.875rem; }
