/* Street Croft Farm — Option D (C style, A layout) */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500;1,600&family=Cardo:ital,wght@0,400;0,700;1,400&display=swap");

:root {
  --scf-bg: #ece0c5;
  --scf-bg-top: #e7dabb;
  --scf-panel: #f7efd9;
  --scf-panel-inset: #f2e6c8;
  --scf-ink: #34382b;
  --scf-ink-muted: #4a4a3a;
  --scf-ink-soft: #5a5842;
  --scf-ink-faint: #6b6a4d;
  --scf-accent: #a4512e;
  --scf-accent-hover: #8c421f;
  --scf-border: #34382b;
  --scf-max: 1240px;
  --scf-serif: "Cardo", Georgia, serif;
  --scf-display: "Cormorant Garamond", Georgia, serif;
  --scf-frame-shadow: inset 0 0 0 7px var(--scf-panel), inset 0 0 0 8px rgba(52, 56, 43, 0.5);
  --scf-frame-shadow-sm: inset 0 0 0 6px var(--scf-panel), inset 0 0 0 7px rgba(52, 56, 43, 0.5);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }

body {
  margin: 0;
  overflow-x: clip;
  font-family: var(--scf-serif);
  color: var(--scf-ink);
  background: var(--scf-bg);
  background-image: radial-gradient(120% 90% at 50% 0%, rgba(255, 250, 238, 0.7) 0%, rgba(236, 224, 197, 0) 55%);
  line-height: 1.62;
  font-size: 17px;
}

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

a { color: var(--scf-accent); }

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

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

.skip-link:focus { left: 8px; top: 8px; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Top ornamental rule */
.scf-top-rule {
  border-bottom: 1px solid var(--scf-border);
  background: var(--scf-bg);
}

.scf-top-rule .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 16px;
  padding-top: 11px;
  padding-bottom: 11px;
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #4c4a37;
}

.scf-top-rule span.sep { opacity: 0.55; }

@media (max-width: 720px) {
  .scf-top-rule .container {
    font-size: 10.5px;
    letter-spacing: 0.14em;
    gap: 8px 12px;
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* Masthead */
.scf-masthead {
  padding: 34px 0 26px;
  text-align: center;
  position: relative;
}

.scf-masthead > .container {
  position: relative;
}

.scf-masthead-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.scf-rule-line {
  flex: 1;
  height: 1px;
  max-width: 280px;
  background: linear-gradient(90deg, rgba(52, 56, 43, 0) 0%, rgba(52, 56, 43, 0.55) 100%);
}

.scf-rule-line:last-child {
  background: linear-gradient(90deg, rgba(52, 56, 43, 0.55) 0%, rgba(52, 56, 43, 0) 100%);
}

.scf-masthead-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  text-align: center;
}

.scf-logo {
  width: 130px;
  height: 130px;
  object-fit: contain;
  flex-shrink: 0;
}

.scf-masthead h1 {
  margin: 0;
  font-family: var(--scf-display);
  font-weight: 600;
  font-size: clamp(1.75rem, 4vw, 44px);
  letter-spacing: 0.01em;
  color: var(--scf-ink);
  white-space: nowrap;
}

.scf-nav {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 20px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--scf-ink-soft);
}

.scf-nav a {
  color: inherit;
  text-decoration: none;
}

.scf-nav a:hover,
.scf-nav a[aria-current="page"] {
  color: var(--scf-accent);
}

.scf-nav .dot { opacity: 0.4; user-select: none; }

.nav-toggle {
  display: none;
  margin: 0;
  background: transparent;
  border: 1px solid var(--scf-border);
  padding: 0;
  width: 44px;
  height: 44px;
  cursor: pointer;
  color: var(--scf-ink);
  align-items: center;
  justify-content: center;
}

.nav-toggle-bars {
  position: relative;
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: currentColor;
}

.nav-toggle-bars::before { top: -6px; }
.nav-toggle-bars::after { top: 6px; }

.nav-toggle[aria-expanded="true"] .nav-toggle-bars { background: transparent; }

.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after {
  top: 0;
  transform: rotate(-45deg);
}

@media (max-width: 900px) {
  .scf-masthead {
    padding-top: 14px;
    padding-bottom: 18px;
  }

  .nav-toggle {
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
  }

  .scf-nav {
    display: none;
    width: 100%;
    margin-top: 12px;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--scf-border);
    background: var(--scf-panel);
    padding: 8px 0;
  }

  .scf-nav.is-open { display: flex; }

  .scf-nav a {
    display: block;
    padding: 12px 20px;
    border-bottom: 1px solid rgba(52, 56, 43, 0.12);
  }

  .scf-nav a:last-child { border-bottom: none; }

  .scf-nav .dot { display: none; }

  .scf-masthead-title { flex-wrap: wrap; }
  .scf-rule-line { display: none; }
}

@media (max-width: 400px) {
  .scf-masthead h1 {
    white-space: normal;
    font-size: 1.65rem;
  }
}

/* Framed panel utility */
.scf-frame {
  background: var(--scf-panel);
  border: 1px solid var(--scf-border);
  box-shadow: var(--scf-frame-shadow);
}

.scf-frame-sm {
  box-shadow: var(--scf-frame-shadow-sm);
}

/* Home hero split */
.home-hero-split {
  padding: 8px 0 0;
}

.home-hero-row {
  display: flex;
  align-items: stretch;
  gap: 26px;
  min-height: 600px;
}

.hero-copy {
  flex: 1 1 0;
  min-width: 0;
  position: relative;
  padding: 52px 50px 48px;
}

.hero-copy .corner {
  position: absolute;
  font-size: 13px;
  color: var(--scf-ink);
}

.hero-copy .corner.tl { top: 9px; left: 11px; }
.hero-copy .corner.tr { top: 9px; right: 11px; }
.hero-copy .corner.bl { bottom: 9px; left: 11px; }
.hero-copy .corner.br { bottom: 9px; right: 11px; }

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--scf-accent);
}

.hero-eyebrow .line {
  width: 26px;
  height: 1px;
  background: var(--scf-accent);
}

.hero-welcome {
  margin: 22px 0 14px;
  font-family: var(--scf-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.5rem, 3.2vw, 32px);
  line-height: 1.15;
  letter-spacing: 0.015em;
  color: var(--scf-ink);
}

.hero-copy h2 {
  margin: 0;
  font-family: var(--scf-display);
  font-weight: 600;
  font-size: clamp(2rem, 4.5vw, 52px);
  line-height: 1.04;
  letter-spacing: 0.005em;
  color: var(--scf-ink);
  text-wrap: balance;
}

.hero-divider {
  margin: 26px 0;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-divider .line {
  height: 1px;
  background: rgba(52, 56, 43, 0.4);
}

.hero-divider .line.short {
  width: 34px;
  flex: none;
}

.hero-divider .line:not(.short) {
  flex: 1;
}

.hero-divider .star { font-size: 14px; color: var(--scf-accent); }

.hero-copy .lead {
  margin: 0;
  font-size: 18px;
  line-height: 1.62;
  color: var(--scf-ink-muted);
  max-width: 44ch;
}

.hero-buttons {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background: var(--scf-accent);
  color: var(--scf-panel);
  font-family: var(--scf-serif);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--scf-accent);
}

.btn-primary:hover { background: var(--scf-accent-hover); border-color: var(--scf-accent-hover); }

.btn-outline {
  display: inline-block;
  padding: 15px 30px;
  background: transparent;
  color: var(--scf-ink);
  font-family: var(--scf-serif);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--scf-border);
}

.btn-outline:hover { background: var(--scf-ink); color: var(--scf-panel); }

/* Hero photo panel */
.hero-photo-panel {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  padding: 12px;
}

.hero-photo-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 1568 / 1815;
  overflow: hidden;
  border: 1px solid rgba(52, 56, 43, 0.55);
}

.hero-photo-inner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.92) contrast(1.02);
}

.hero-photo-vignette {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 90px rgba(43, 36, 20, 0.35);
  pointer-events: none;
}

.hero-caption {
  position: absolute;
  left: 16px;
  top: 16px;
  padding: 7px 13px;
  background: rgba(247, 239, 217, 0.92);
  border: 1px solid var(--scf-border);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--scf-ink);
}

.hero-badge {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--scf-panel-inset);
  border: 1px solid var(--scf-border);
  box-shadow: inset 0 0 0 4px var(--scf-panel-inset), inset 0 0 0 5px rgba(52, 56, 43, 0.6), 0 6px 18px rgba(43, 36, 20, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--scf-ink);
}

.hero-badge .small {
  font-size: 8.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-badge .star {
  font-family: var(--scf-display);
  font-size: 22px;
  line-height: 1;
  margin: 3px 0;
}

.hero-badge .est {
  font-family: var(--scf-display);
  font-style: italic;
  font-size: 15px;
  line-height: 1;
}

.hero-badge .place {
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 3px;
}

@media (max-width: 900px) {
  .home-hero-row { flex-direction: column; min-height: 0; }
  .hero-copy { padding: 28px 20px 24px; }
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-outline {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }
  .hero-photo-panel {
    flex: 0 0 auto;
    width: 100%;
  }
  .hero-photo-inner {
    max-height: none;
  }
  .container,
  .site-footer .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .newsletter-inner {
    padding: 24px 18px;
    flex-direction: column;
    align-items: stretch;
  }
  .newsletter-form-inline {
    flex-direction: column;
    width: 100%;
  }
  .newsletter-form-inline input[type="email"] {
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
  }
  .newsletter-form-inline button {
    width: 100%;
  }
  .info-grid {
    grid-template-columns: 1fr;
  }
  .visit-grid {
    grid-template-columns: 1fr;
  }
  .visit-grid > div {
    text-align: left;
    padding: 22px 20px;
  }
  .visit-grid > div:first-child {
    border-right: none;
    border-bottom: 1px solid rgba(52, 56, 43, 0.4);
  }
}

/* Feature cards */
.feature-cards {
  padding: 44px 0 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.feature-card-vintage {
  position: relative;
  padding: 30px 28px 32px;
  text-align: center;
}

.feature-card-vintage img {
  width: 100%;
  height: 132px;
  object-fit: cover;
  border: 1px solid rgba(52, 56, 43, 0.55);
}

.feature-card-vintage img.cafe { object-position: center 40%; }
.feature-card-vintage img.cow { object-position: center 35%; }

.feature-card-vintage h3 {
  margin: 20px 0 0;
  font-family: var(--scf-display);
  font-weight: 600;
  font-size: 28px;
  color: var(--scf-ink);
}

.feature-card-vintage .star {
  display: inline-block;
  margin: 8px 0 12px;
  font-size: 13px;
  color: var(--scf-accent);
}

.feature-card-vintage p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--scf-ink-muted);
}

.feature-card-vintage a.stretched {
  position: absolute;
  inset: 0;
  text-indent: -9999px;
}

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

/* Newsletter */
.newsletter-bar {
  margin-top: 32px;
  padding-bottom: 0;
}

.newsletter-inner {
  padding: 30px 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  background: var(--scf-panel);
  box-shadow: var(--scf-frame-shadow-sm);
}

.newsletter-inner h2 {
  margin: 0;
  font-family: var(--scf-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.35rem, 3vw, 26px);
  color: var(--scf-ink);
}

.newsletter-inner .tagline {
  margin: 5px 0 0;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--scf-ink-faint);
}

.newsletter-form-inline {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--scf-border);
  background: var(--scf-panel);
}

.newsletter-form-inline input[type="email"] {
  border: none;
  background: transparent;
  padding: 13px 18px;
  font-family: var(--scf-serif);
  font-size: 15px;
  color: var(--scf-ink);
  min-width: 0;
  flex: 1 1 160px;
  outline: none;
}

.newsletter-form-inline button {
  border: none;
  background: var(--scf-ink);
  color: var(--scf-panel);
  padding: 13px 26px;
  font-family: var(--scf-serif);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
}

.newsletter-form-inline button:hover { background: #2a2e24; }

/* Hours + address */
.visit-strip {
  margin-top: 26px;
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--scf-border);
  background: var(--scf-panel);
  box-shadow: var(--scf-frame-shadow-sm);
}

.visit-grid > div {
  padding: 28px 34px;
  text-align: center;
}

.visit-grid > div:first-child {
  border-right: 1px solid rgba(52, 56, 43, 0.4);
}

.visit-grid .label {
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--scf-accent);
}

.visit-grid p {
  margin: 0;
  font-family: var(--scf-display);
  font-size: 22px;
  color: var(--scf-ink);
}

.visit-grid p + p {
  margin-top: 5px;
}

.visit-grid .note {
  display: inline;
  background: none;
  border: none;
  padding: 0;
  color: var(--scf-ink-faint);
  font-style: italic;
  font-family: var(--scf-serif);
  font-size: 0.92em;
}

.location-footer-rule {
  margin: 34px 0 0;
  padding-bottom: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--scf-ink-faint);
}

.location-footer-rule .line {
  flex: 1;
  height: 1px;
  max-width: 320px;
}

.location-footer-rule .line:first-child {
  background: linear-gradient(90deg, rgba(52, 56, 43, 0) 0%, rgba(52, 56, 43, 0.5) 100%);
}

.location-footer-rule .line:last-child {
  background: linear-gradient(90deg, rgba(52, 56, 43, 0.5) 0%, rgba(52, 56, 43, 0) 100%);
}

.location-footer-rule span {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
}

@media (max-width: 640px) {
  .story-video-frame {
    padding: 28px 20px 22px;
  }
}

/* Site footer (utility) */
.site-footer {
  background: var(--scf-ink);
  color: #e0dbd0;
  margin-top: 0;
}

.site-footer .container {
  padding: 36px 40px;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.site-footer h4 {
  color: #fff;
  margin: 0 0 10px;
  font-family: var(--scf-display);
  font-weight: 600;
}

.site-footer a { color: #f0eada; }

.site-footer .nap { font-style: normal; line-height: 1.7; }

.social-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #f0eada;
}

.social-links a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.12); }

.footer-bottom .container {
  padding: 16px 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.85rem;
}

.footer-studio {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 0 18px;
}

.footer-studio .container {
  display: flex;
  justify-content: center;
  padding: 0 40px;
}

.studio-credit {
  display: inline-block;
  color: rgba(224, 219, 208, 0.55);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-align: center;
}

.studio-credit:hover {
  color: rgba(240, 234, 218, 0.9);
}

.studio-credit-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  line-height: 1.35;
}

.studio-credit-brand-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.studio-credit-brand {
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #f0eada;
}

.studio-credit:hover .studio-credit-brand {
  color: #fff;
}

.studio-credit-brand-row img {
  width: 28px;
  height: 28px;
  border-radius: 0;
  flex-shrink: 0;
}

/* Inner pages */
.page-head {
  margin: 20px 0 0;
  padding: 24px 0 20px;
  text-align: left;
  background: transparent;
  border: none;
  box-shadow: none;
  border-bottom: 1px solid rgba(52, 56, 43, 0.22);
}

.page-head .container {
  padding-top: 0;
  padding-bottom: 0;
}

.page-head h1 {
  margin: 0 0 12px;
  font-family: var(--scf-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  color: var(--scf-ink);
  line-height: 1.08;
}

.page-head p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--scf-ink-muted);
}

.page-head + main > section:first-child {
  padding-top: 28px;
}

section { padding: 32px 0; }

section h2 {
  font-family: var(--scf-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--scf-ink);
  margin: 0 0 16px;
  font-weight: 600;
}

section h3 {
  font-family: var(--scf-display);
  color: var(--scf-ink);
  margin: 22px 0 6px;
  font-size: 1.35rem;
}

.lead { font-size: 1.1rem; color: var(--scf-ink-muted); }

.cards { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

.card {
  background: var(--scf-panel);
  border: 1px solid var(--scf-border);
  padding: 22px;
  box-shadow: var(--scf-frame-shadow-sm);
}

.card h3 { margin-top: 0; }

.btn {
  display: inline-block;
  background: var(--scf-accent);
  color: var(--scf-panel);
  text-decoration: none;
  padding: 12px 22px;
  font-weight: 400;
  border: 1px solid var(--scf-accent);
  font-size: 0.95rem;
}

.btn:hover { background: var(--scf-accent-hover); }

.btn.secondary {
  background: transparent;
  border: 1px solid var(--scf-border);
  color: var(--scf-ink);
}

.btn.secondary:hover { background: var(--scf-ink); color: var(--scf-panel); }

.btn-row { display: flex; gap: 12px; flex-wrap: wrap; }

.ph {
  background: repeating-linear-gradient(45deg, #e5ddd0, #e5ddd0 14px, #efe9de 14px, #efe9de 28px);
  border: 1px dashed #c5baa8;
  display: grid;
  place-items: center;
  color: #7a7264;
  min-height: 220px;
  text-align: center;
  padding: 24px;
}

.faq details {
  background: var(--scf-panel);
  border: 1px solid var(--scf-border);
  padding: 4px 18px;
  margin: 0 0 12px;
  box-shadow: var(--scf-frame-shadow-sm);
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  padding: 14px 0;
  color: var(--scf-ink);
  font-size: 1.05rem;
}

.faq details[open] summary {
  border-bottom: 1px solid rgba(52, 56, 43, 0.25);
  margin-bottom: 10px;
}

.faq p { margin: 0 0 14px; }

.info-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--scf-panel);
  border: 1px solid var(--scf-border);
}

.hours-table th,
.hours-table td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(52, 56, 43, 0.25);
}

.hours-table th {
  background: var(--scf-ink);
  color: #fff;
}

.form-field { margin: 0 0 16px; }

.form-field label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(52, 56, 43, 0.45);
  font: inherit;
  background: #fff;
}

.form-field textarea { min-height: 140px; resize: vertical; }

.note {
  background: #fbf4e3;
  border: 1px solid #ecd9a8;
  padding: 14px 16px;
  color: #6b5a2d;
}

.center { text-align: center; }

ul.tick { list-style: none; padding: 0; }

ul.tick li {
  padding: 6px 0 6px 28px;
  position: relative;
}

ul.tick li::before {
  content: "✦";
  position: absolute;
  left: 4px;
  top: 6px;
  color: var(--scf-accent);
  font-size: 0.7rem;
}

.inner-page-wrap { padding-bottom: 48px; }

/* Story page video */
.story-video-inline {
  margin: 24px auto 0;
  width: 100%;
  max-width: 880px;
}

.story-video-inline .video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--scf-ink);
  border: 1px solid rgba(52, 56, 43, 0.55);
  box-shadow: var(--scf-frame-shadow-sm);
}

.story-video-inline .video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.story-video {
  padding: 8px 0 40px;
}

.story-video-frame {
  position: relative;
  padding: 36px 36px 32px;
  max-width: 880px;
  margin: 0 auto;
}

.story-video-frame .corner {
  position: absolute;
  font-size: 13px;
  color: var(--scf-ink);
}

.story-video-frame .corner.tl { top: 9px; left: 11px; }
.story-video-frame .corner.tr { top: 9px; right: 11px; }
.story-video-frame .corner.bl { bottom: 9px; left: 11px; }
.story-video-frame .corner.br { bottom: 9px; right: 11px; }

.story-video-intro {
  text-align: center;
  margin-bottom: 24px;
}

.story-video-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--scf-accent);
}

.story-video-eyebrow .line {
  width: 26px;
  height: 1px;
  background: var(--scf-accent);
}

.story-video-intro h2 {
  margin: 0 0 10px;
  font-family: var(--scf-display);
  font-weight: 600;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  color: var(--scf-ink);
}

.story-video-lead {
  margin: 0 auto;
  max-width: 42ch;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--scf-ink-muted);
}

.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--scf-ink);
  border: 1px solid rgba(52, 56, 43, 0.55);
  box-shadow: inset 0 0 0 1px rgba(247, 239, 217, 0.35);
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 640px) {
  .story-video-frame {
    padding: 28px 20px 22px;
  }
}

/* Visit page map */
.visit-map-block {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(52, 56, 43, 0.22);
}

.visit-map-block h2 {
  margin: 0 0 10px;
}

.visit-map-note {
  margin: 0 0 20px;
  max-width: 52ch;
  color: var(--scf-ink-muted);
}

.visit-map-embed {
  width: 100%;
  max-width: 100%;
  background: var(--scf-panel-inset);
  border: 1px solid rgba(52, 56, 43, 0.55);
  box-shadow: var(--scf-frame-shadow-sm);
}

.visit-map-embed iframe {
  display: block;
  width: 100%;
  height: min(420px, 60vh);
  border: 0;
}

.visit-map-actions {
  margin: 16px 0 0;
}

/* Farm shop page */
.shop-hero-split {
  padding: 8px 0 0;
}

.shop-hours-inline {
  margin: 28px 0 0;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--scf-ink-soft);
}

.shop-hours-inline .star {
  color: var(--scf-accent);
  margin: 0 6px;
}

.section-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 28px;
}

.section-eyebrow .line {
  flex: 1;
  height: 1px;
  max-width: 280px;
  background: rgba(52, 56, 43, 0.45);
}

.section-eyebrow h2 {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-family: var(--scf-serif);
  font-weight: 400;
  color: var(--scf-ink-soft);
  white-space: nowrap;
}

.shop-shelves {
  padding: 44px 0 0;
}

.shop-shelf-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.shop-shelf-card {
  padding: 18px 16px 22px;
  text-align: center;
}

.shop-shelf-card img {
  width: 100%;
  height: 118px;
  object-fit: cover;
  border: 1px solid rgba(52, 56, 43, 0.55);
}

.shop-shelf-card h3 {
  margin: 16px 0 0;
  font-family: var(--scf-display);
  font-weight: 600;
  font-size: 24px;
  color: var(--scf-ink);
}

.shop-shelf-card .star {
  display: inline-block;
  margin: 6px 0 10px;
  font-size: 13px;
  color: var(--scf-accent);
}

.shop-shelf-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--scf-ink-muted);
}

.shop-board-split {
  padding: 44px 0 0;
}

.shop-board-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: stretch;
}

.shop-board-row--single {
  grid-template-columns: 1fr;
  max-width: 520px;
  margin: 0 auto;
}

.shop-board {
  position: relative;
  padding: 36px 34px 32px;
}

.shop-board .corner {
  position: absolute;
  font-size: 13px;
  color: var(--scf-ink);
}

.shop-board .corner.tl { top: 9px; left: 11px; }
.shop-board .corner.tr { top: 9px; right: 11px; }
.shop-board .corner.bl { bottom: 9px; left: 11px; }
.shop-board .corner.br { bottom: 9px; right: 11px; }

.shop-board-eyebrow {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--scf-accent);
}

.shop-board h2 {
  margin: 0;
  font-family: var(--scf-display);
  font-weight: 600;
  font-size: clamp(1.65rem, 3vw, 2rem);
  color: var(--scf-ink);
}

.shop-board > .star {
  display: inline-block;
  margin: 8px 0 18px;
  font-size: 13px;
  color: var(--scf-accent);
}

.price-board {
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-board li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 9px 0;
  border-bottom: 1px dotted rgba(52, 56, 43, 0.35);
  font-size: 16px;
  color: var(--scf-ink-muted);
}

.price-board li:last-child {
  border-bottom: none;
}

.price-board .item {
  flex: 0 1 auto;
  color: var(--scf-ink);
}

.price-board .leader {
  flex: 1 1 auto;
  border-bottom: 1px dotted rgba(52, 56, 43, 0.35);
  min-width: 12px;
  margin-bottom: 4px;
}

.price-board .price {
  flex: 0 0 auto;
  font-family: var(--scf-display);
  font-size: 18px;
  color: var(--scf-ink);
  white-space: nowrap;
}

.shop-board-note {
  margin: 18px 0 0;
  font-size: 14px;
  font-style: italic;
  color: var(--scf-ink-faint);
  line-height: 1.55;
}

.shop-field-panel {
  padding: 36px 34px 32px;
  background: var(--scf-ink);
  color: #e8e2d4;
  border: 1px solid var(--scf-border);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.shop-field-eyebrow {
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(232, 226, 212, 0.72);
}

.shop-field-panel blockquote {
  margin: 0;
  padding: 0;
  border: none;
  font-family: var(--scf-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.5rem, 2.8vw, 1.85rem);
  line-height: 1.35;
  color: #f5f0e6;
}

.shop-field-panel .field-divider {
  margin: 22px 0 18px;
  width: 48px;
  height: 1px;
  background: rgba(232, 226, 212, 0.45);
}

.shop-field-panel p {
  margin: 0;
  font-size: 16px;
  line-height: 1.62;
  color: rgba(232, 226, 212, 0.88);
  max-width: 38ch;
}

.farm-shop-page .hero-photo-inner {
  aspect-ratio: 792 / 664;
}

.farm-shop-page .visit-strip {
  margin-top: 44px;
}

.farm-shop-page .location-footer-rule {
  padding-bottom: 48px;
}

@media (max-width: 1000px) {
  .shop-shelf-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .shop-shelf-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }
}

/* Inner page photo galleries (animals, café, events, etc.) */
.animals-gallery,
.cafe-gallery,
.events-gallery {
  display: grid;
  gap: 12px;
  margin: 36px 0 0;
}

.animals-gallery,
.cafe-gallery {
  grid-template-columns: repeat(4, 1fr);
}

.events-gallery {
  grid-template-columns: repeat(3, 1fr);
}

.animals-gallery-item,
.cafe-gallery-item,
.events-gallery-item {
  margin: 0;
  overflow: hidden;
}

.animals-gallery-item img,
.cafe-gallery-item img,
.events-gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

@media (max-width: 768px) {
  .animals-gallery,
  .cafe-gallery,
  .events-gallery {
    grid-template-columns: 1fr;
    max-width: none;
    width: 100%;
    margin: 36px 0 0;
  }

  .animals-gallery-item img,
  .cafe-gallery-item img,
  .events-gallery-item img {
    aspect-ratio: 4 / 3;
  }
}

/* Mobile overrides (must follow base component rules) */
@media (max-width: 900px) {
  .newsletter-form-inline {
    flex-direction: column;
    width: 100%;
  }

  .newsletter-form-inline input[type="email"] {
    flex: none;
    width: 100%;
  }

  .newsletter-form-inline button {
    width: 100%;
  }
}
