/* Variant B — Modern Minimalist
   Confident restraint. Instrument Serif italic display + Instrument Sans body.
   Off-white paper, ink black, single brown accent. Generous whitespace. */

:root {
  --paper: #f7f4ee;
  --paper-2: #efe9de;
  --ink: #1a1512;
  --ink-soft: #4a3f36;
  --muted: #8a7e70;
  --brown: #5a2424;
  --rule: #d9cfbe;
  --max: 1240px;
  --max-prose: 620px;
}

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

body {
  margin: 0;
  font-family: 'Instrument Sans', -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--ink); color: var(--paper); }

h1, h2, h3 { margin: 0; color: var(--ink); letter-spacing: -0.02em; }

h1 {
  font-family: 'Instrument Serif', 'Playfair Display', Georgia, serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -0.035em;
}

h1 em {
  font-style: italic;
  color: var(--brown);
}

h2 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.03em;
}
h2 em { font-style: italic; color: var(--brown); }

h3 {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

p { margin: 0 0 1em; }

a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  text-decoration-color: var(--rule);
  transition: text-decoration-color 0.2s;
}
a:hover { text-decoration-color: var(--brown); }

img { display: block; width: 100%; height: auto; }

.eyebrow, .section-num, .info-label, .footer-label {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Header */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.8rem 3rem;
  max-width: var(--max);
  margin: 0 auto;
  gap: 2rem;
  flex-wrap: wrap;
}

.brand { display: flex; flex-direction: column; text-decoration: none; color: var(--ink); line-height: 1.2; }
.brand-text { font-family: 'Instrument Serif', serif; font-size: 1.35rem; font-style: italic; }
.brand-sub { font-family: 'Instrument Sans', sans-serif; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }

.site-nav { display: flex; gap: 2rem; align-items: center; font-size: 0.95rem; }
.site-nav a { text-decoration: none; color: var(--ink-soft); }
.site-nav a:hover { color: var(--ink); }
.nav-cta {
  padding: 0.55rem 1.2rem;
  background: var(--ink);
  color: var(--paper) !important;
  border-radius: 100px;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}
.nav-cta:hover { background: var(--brown); }

/* Hero */
.hero {
  padding: 4rem 3rem 6rem;
  max-width: var(--max);
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 5rem;
  align-items: center;
}
@media (max-width: 960px) { .hero-grid { grid-template-columns: 1fr; gap: 3rem; } }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin: 0 0 2rem;
}
.eyebrow-dot {
  width: 4px; height: 4px; background: var(--brown); border-radius: 50%; display: inline-block;
}

.hero-text h1 { margin-bottom: 2rem; }

.hero-lede {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 42ch;
  margin-bottom: 2.5rem;
}

.hero-ctas {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.hero-figure { margin: 0; }
.hero-figure img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 2px;
}
.hero-figure figcaption {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 0.8rem;
  text-align: right;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.95rem 1.8rem;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
}

.btn-primary {
  background: var(--ink);
  color: var(--paper);
}
.btn-primary:hover { background: var(--brown); }

.btn-link {
  color: var(--ink);
  text-decoration: none;
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 1.15rem;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-link:hover { border-bottom-color: var(--brown); color: var(--brown); }

/* Divider */
.divider {
  text-align: center;
  padding: 1.5rem 0;
  color: var(--brown);
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 1.6rem;
  opacity: 0.5;
}

/* Sections */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 5rem 3rem;
}

.section-num { margin: 0 0 2rem; }

.prose-section {
  max-width: 900px;
}

.prose-wrap {
  max-width: var(--max-prose);
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-top: 2rem;
}
.prose-wrap p:last-child { margin-bottom: 0; }
.prose-wrap em { font-family: 'Instrument Serif', serif; font-style: italic; font-size: 1.3rem; color: var(--brown); }

/* Figure break (full-bleed photos) */
.figure-break {
  margin: 4rem 0;
  max-width: 100%;
}
.figure-break figure { margin: 0; }
.figure-break img {
  width: 100%;
  height: clamp(380px, 55vh, 620px);
  object-fit: cover;
}
.figure-break figcaption {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--muted);
  max-width: var(--max);
  margin: 1rem auto 0;
  padding: 0 3rem;
}
.figure-break-sm img { height: clamp(320px, 45vh, 500px); }

/* Cards */
.cards-section { padding-top: 2rem; padding-bottom: 2rem; }
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  border-top: 1px solid var(--rule);
  padding-top: 3rem;
}
@media (max-width: 820px) {
  .cards { grid-template-columns: 1fr; gap: 2rem; }
}

.card { max-width: 360px; }
.card h3 {
  font-family: 'Instrument Serif', serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  font-style: normal;
  margin: 0 0 0.8rem;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
}
.card-num {
  font-style: italic;
  color: var(--brown);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.card p {
  color: var(--ink-soft);
  line-height: 1.6;
  font-size: 1rem;
  margin: 0;
}

/* Menu — editorial dl */
.menu-section { padding-top: 6rem; padding-bottom: 6rem; }
.menu-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}
@media (max-width: 900px) { .menu-layout { grid-template-columns: 1fr; gap: 2.5rem; } }

.menu-head h2 { margin-bottom: 1.5rem; }
.menu-intro {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 38ch;
  margin: 0;
}

.menu-dl {
  margin: 0;
  border-top: 1px solid var(--rule);
}
.menu-dl dt {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 1rem;
}
.menu-dl dd {
  margin: 0.3rem 0 1rem;
  font-family: 'Instrument Serif', serif;
  font-size: 1.4rem;
  line-height: 1.3;
  color: var(--ink);
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--rule);
}

.dt-price { color: var(--brown) !important; }
.dd-price {
  color: var(--brown);
  font-size: 2.2rem;
  font-style: italic;
}
.dd-price span {
  font-style: normal;
  font-size: 1rem;
  color: var(--muted);
  font-family: 'Instrument Sans', sans-serif;
  letter-spacing: 0.01em;
}
.dd-price em {
  display: inline-block;
  font-size: 0.9rem;
  color: var(--muted);
  font-family: 'Instrument Sans', sans-serif;
  font-style: normal;
  letter-spacing: 0.02em;
  margin-left: 0.5rem;
}

/* FAQ */
.faq-section { padding-top: 5rem; padding-bottom: 5rem; }
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}
@media (max-width: 900px) { .faq-layout { grid-template-columns: 1fr; gap: 2rem; } }

.faq-head h2 { font-size: clamp(2.5rem, 5vw, 4rem); }

.faq-list details {
  border-top: 1px solid var(--rule);
  padding: 1.6rem 0;
}
.faq-list details:last-child { border-bottom: 1px solid var(--rule); }
.faq-list summary {
  cursor: pointer;
  font-family: 'Instrument Serif', serif;
  font-size: 1.4rem;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  line-height: 1.3;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--brown);
  flex-shrink: 0;
  transition: transform 0.3s;
  width: 1.2em;
  text-align: right;
}
.faq-list details[open] summary::after { content: '−'; }
.faq-list details p {
  margin: 1rem 0 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 55ch;
}

/* Contact */
.contact-section { padding-bottom: 6rem; border-top: 1px solid var(--rule); padding-top: 5rem; }
.contact-head { margin-bottom: 3.5rem; max-width: 540px; }
.contact-head h2 { margin: 1rem 0 1.5rem; }
.contact-intro { color: var(--ink-soft); font-size: 1.1rem; line-height: 1.6; }

.map-embed {
  margin: 0 0 4rem;
  padding: 0;
}
.map-embed iframe {
  width: 100%;
  height: clamp(300px, 45vh, 460px);
  border: 0;
  display: block;
  filter: grayscale(0.15) contrast(1.02);
  border-radius: 2px;
}
.map-embed figcaption {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.9rem;
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 0.98rem;
  color: var(--muted);
}
.map-embed figcaption a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 1px;
  transition: border-color 0.2s, color 0.2s;
}
.map-embed figcaption a:hover { color: var(--brown); border-bottom-color: var(--brown); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; gap: 3rem; } }

.info-block { margin-bottom: 2rem; }
.info-label { margin: 0 0 0.5rem; }
.info-value { margin: 0; font-family: 'Instrument Serif', serif; font-size: 1.2rem; line-height: 1.5; }

.contact-form { display: grid; gap: 1.3rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
@media (max-width: 520px) { .form-row { grid-template-columns: 1fr; } }

.contact-form label { display: flex; flex-direction: column; gap: 0.45rem; }
.contact-form label span {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-form input,
.contact-form textarea {
  font: inherit;
  font-family: 'Instrument Sans', sans-serif;
  padding: 0.9rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule);
  color: var(--ink);
  border-radius: 0;
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-bottom-color: var(--brown);
}
.contact-form button { justify-self: start; margin-top: 0.5rem; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--rule);
  padding: 3.5rem 3rem 2.5rem;
  max-width: var(--max);
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }

.footer-title { font-family: 'Instrument Serif', serif; font-style: italic; font-size: 1.6rem; margin: 0; color: var(--ink); }
.footer-sub { font-size: 0.85rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin: 0.3rem 0 0; }
.footer-label { margin: 0 0 0.3rem; }
.footer-grid > div p:not(.footer-label):not(.footer-title):not(.footer-sub) { margin: 0; font-size: 0.95rem; color: var(--ink-soft); line-height: 1.6; }
.footer-meta { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin: 0; padding-top: 1.5rem; border-top: 1px solid var(--rule); }

/* Responsive polish */
@media (max-width: 620px) {
  .site-header { padding: 1rem 1.5rem; }
  .site-nav { gap: 1rem; font-size: 0.88rem; }
  .hero { padding: 1.2rem 1.5rem 2.5rem; }
  .section { padding-left: 1.5rem; padding-right: 1.5rem; padding-top: 2.5rem; padding-bottom: 2.5rem; }
  .eyebrow { margin-bottom: 1.2rem; }
  .hero-text h1 { margin-bottom: 1.2rem; }
  .hero-lede { margin-bottom: 1.5rem; font-size: 1.05rem; }
  .figure-break { margin: 0 0; }
  .figure-break figcaption { padding: 0 1.5rem; }
  .figure-break img { height: clamp(240px, 38vh, 360px); }
  .divider { display: none; }
  .hero-figure figcaption { margin-top: 0.5rem; }
  .prose-section { padding-bottom: 0.5rem; }
  .cards-section { padding-top: 1rem; padding-bottom: 1rem; }
  .cards { padding-top: 1.5rem; gap: 1.5rem; }
  .menu-section { padding-top: 1.5rem; padding-bottom: 0.5rem; }
  .faq-section { padding-top: 2rem; padding-bottom: 2rem; }
  .contact-section { padding-top: 2rem; padding-bottom: 3rem; }
  .site-footer { padding: 2.5rem 1.5rem 2rem; }
}
