/* ====================================================================
   HEARTHSTONE HOLLOW BARN — wedding-barn template
   Palette: sage + oat + warm clay
   Type: Tenor Sans (display) · Cormorant Infant (body) · Inter (UI)
   ==================================================================== */

:root {
  --primary: #3a4530;
  --primary-dark: #252d1f;
  --bg: #f4ede0;
  --bg-soft: #ece4d3;
  --card: #ffffff;
  --ink: #1f1a14;
  --ink-soft: #4f4538;
  --rule: #c9bca3;
  --accent-clay: #b86b3a;
  --accent-clay-dark: #9d5a2e;
  --accent-muted: #8b7d63;
  --shadow: rgba(31, 26, 20, 0.10);

  --display: 'Tenor Sans', Georgia, serif;
  --body: 'Cormorant Infant', Georgia, serif;
  --ui: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  font-size: 1.1875rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--rule); text-decoration-thickness: 1px; text-underline-offset: 0.25em; transition: text-decoration-color 0.2s, color 0.2s; }
a:hover { text-decoration-color: var(--accent-clay); }

/* ── TYPE ── */
h1, h2, h3, h4 { color: var(--ink); }
h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.75rem, 5vw, 4.25rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
}
h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.875rem, 3.5vw, 2.625rem);
  line-height: 1.15;
  letter-spacing: 0.01em;
}
h3 {
  font-family: var(--body);
  font-weight: 500;
  font-style: italic;
  font-size: 1.75rem;
  line-height: 1.25;
}
p { margin-bottom: 1em; }

em, .italic { font-style: italic; }

/* ── SMALLCAPS (the typographic signature) ── */
.smallcaps {
  font-family: var(--ui);
  font-size: 0.825rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 500;
  color: var(--ink-soft);
  display: inline-block;
}
.smallcaps--clay { color: var(--accent-clay); }
.smallcaps--sage { color: var(--primary); }
.smallcaps--oat { color: var(--bg); }
.smallcaps--block { display: block; margin-bottom: 1rem; }

/* ── LAYOUT WRAPPERS ── */
.wrap { max-width: 78rem; margin: 0 auto; padding: 0 1.5rem; }
.wrap--narrow { max-width: 46rem; margin: 0 auto; padding: 0 1.5rem; }
.wrap--medium { max-width: 60rem; margin: 0 auto; padding: 0 1.5rem; }

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary-dark);
  color: var(--bg);
  padding: 0.5rem 1rem;
  font-family: var(--ui);
  font-size: 0.875rem;
  z-index: 200;
  text-decoration: none;
}
.skip-link:focus { top: 0; }

.rule {
  height: 1px;
  background: var(--rule);
  border: 0;
  margin: 4rem 0;
}
.rule--clay { background: var(--accent-clay); width: 3rem; height: 2px; margin: 0 0 1.5rem; }

/* ── STICKY HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 100;
  transition: box-shadow 0.3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  box-shadow: 0 1px 0 var(--rule), 0 2px 8px var(--shadow);
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 1.125rem 0;
  gap: 2rem;
}
.brand {
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.brand-wordmark {
  font-family: var(--display);
  font-size: 1.375rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
}
.brand-tag {
  font-family: var(--ui);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
  font-weight: 500;
}
.site-nav {
  display: flex;
  gap: 1.75rem;
  align-items: center;
  justify-content: center;
}
.site-nav a {
  font-family: var(--ui);
  font-size: 0.875rem;
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.site-nav a:hover { color: var(--ink); }
.site-nav a.is-current { color: var(--ink); border-bottom: 2px solid var(--accent-clay); padding-bottom: 0.2rem; }

.header-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.header-price {
  font-family: var(--ui);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: var(--accent-clay);
  white-space: nowrap;
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--accent-clay);
}
.header-phone {
  font-family: var(--ui);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--ink);
  cursor: pointer;
  padding: 0.5rem 0.7rem;
  font-family: var(--ui);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
}

@media (max-width: 1000px) {
  .header-inner { grid-template-columns: 1fr auto; gap: 1rem; }
  .site-nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .header-right { gap: 0.75rem; }
  .header-price { font-size: 0.6875rem; padding: 0.3rem 0.5rem; }
  .header-phone { display: none; }
}
@media (max-width: 540px) {
  .brand-tag { display: none; }
}

/* ── HOMEPAGE HERO ── */
.hero {
  position: relative;
  height: 86vh;
  min-height: 580px;
  max-height: 880px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31,26,20,0.10) 0%, rgba(31,26,20,0.25) 100%);
}
.hero-card {
  position: relative;
  z-index: 3;
  background: rgba(244, 237, 224, 0.86);
  backdrop-filter: blur(3px);
  padding: 3rem 2.75rem;
  max-width: 44rem;
  margin: 0 1.5rem;
  text-align: left;
}
.hero-card .smallcaps { margin-bottom: 1.5rem; }
.hero-card h1 { margin-bottom: 1.25rem; color: var(--ink); }
.hero-tagline {
  font-family: var(--body);
  font-style: italic;
  font-size: 1.3125rem;
  color: var(--ink-soft);
  margin-bottom: 1.75rem;
  line-height: 1.5;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.hero-reviews {
  font-family: var(--ui);
  font-size: 0.8125rem;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}
.hero-reviews .stars { color: var(--accent-clay); letter-spacing: 0.1em; margin-right: 0.4rem; }

@media (max-width: 640px) {
  .hero { height: 78vh; min-height: 520px; }
  .hero-card { padding: 2rem 1.5rem; }
}

/* ── PAGE HERO (interior) ── */
.page-hero {
  padding: 4rem 0 2.5rem;
  position: relative;
  border-bottom: 1px solid var(--rule);
}
.page-hero--imaged {
  padding: 0;
  border-bottom: 0;
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  background: var(--primary);
}
.page-hero--imaged .page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.page-hero--imaged .page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31,26,20,0.15) 0%, rgba(31,26,20,0.35) 100%);
}
.page-hero--imaged .page-hero-inner {
  position: relative;
  z-index: 2;
  padding: 5rem 0 3.5rem;
  width: 100%;
}
.page-hero--imaged .page-hero-card {
  background: rgba(244, 237, 224, 0.92);
  padding: 2.25rem 2.5rem;
  max-width: 40rem;
  display: inline-block;
}
.page-hero h1 { max-width: 24ch; }
.breadcrumb {
  font-family: var(--ui);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
}
.breadcrumb a { color: var(--ink-soft); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent-clay); }
.breadcrumb .sep { margin: 0 0.55rem; color: var(--accent-muted); }

/* ── BUTTONS ── */
.btn {
  font-family: var(--ui);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.95rem 1.6rem;
  text-decoration: none;
  display: inline-block;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}
.btn:hover { background: var(--ink); color: var(--bg); }

.btn--clay {
  background: var(--accent-clay);
  color: #fff;
  border-color: var(--accent-clay);
}
.btn--clay:hover { background: var(--accent-clay-dark); border-color: var(--accent-clay-dark); color: #fff; }

.btn--sage {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn--sage:hover { background: var(--primary); color: var(--bg); }

.btn--sage-fill {
  background: var(--primary);
  color: var(--bg);
  border-color: var(--primary);
}
.btn--sage-fill:hover { background: var(--primary-dark); border-color: var(--primary-dark); }

.btn--ghost {
  background: rgba(244,237,224,0.10);
  color: var(--bg);
  border-color: rgba(244,237,224,0.6);
}
.btn--ghost:hover { background: var(--bg); color: var(--primary-dark); border-color: var(--bg); }

.btn--block { display: block; width: 100%; }

/* ── SECTIONS ── */
section { padding: 5rem 0; }
section.tight { padding: 3rem 0; }
section.dark {
  background: var(--primary);
  color: var(--bg);
}
section.dark h2, section.dark h3 { color: var(--bg); }
section.dark .smallcaps { color: var(--bg); opacity: 0.75; }
section.dark p { color: rgba(244, 237, 224, 0.88); }

/* ── NUMBERED FEATURES STRIP (No. 01 / 02 / 03) ── */
.features-strip {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 4rem 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.feature {
  padding: 0 2.5rem;
  border-right: 1px solid var(--rule);
}
.feature:last-child { border-right: 0; }
.feature .feature-num {
  font-family: var(--ui);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-clay);
  font-weight: 500;
  margin-bottom: 1rem;
  display: block;
}
.feature h3 {
  font-family: var(--display);
  font-style: normal;
  font-weight: 400;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--ink);
}
.feature p { color: var(--ink-soft); font-size: 1.0625rem; line-height: 1.65; margin-bottom: 1rem; }
.feature a {
  font-family: var(--ui);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  text-decoration: none;
  color: var(--primary);
  border-bottom: 1px solid var(--accent-clay);
  padding-bottom: 0.15rem;
}
.feature a:hover { color: var(--accent-clay); }
@media (max-width: 900px) {
  .features-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .feature { border-right: 0; border-bottom: 1px solid var(--rule); padding: 0 0 2.5rem; }
  .feature:last-child { border-bottom: 0; padding-bottom: 0; }
}

/* ── SPLIT (5fr/4fr image+text blocks) ── */
.split {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 4rem;
  align-items: center;
}
.split.reverse > :first-child { order: 2; }
.split-img {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
}
.split-img--wide { aspect-ratio: 4/3; }
.split-grid-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem;
}
.split-grid-2x2 > div {
  aspect-ratio: 1/1;
  background-size: cover;
  background-position: center;
}
.split-body h2 { margin-bottom: 1.25rem; }
.split-body p { color: var(--ink-soft); font-size: 1.1875rem; line-height: 1.7; margin-bottom: 1.1rem; }
.split-body .pull-quote {
  font-family: var(--body);
  font-style: italic;
  font-size: 1.375rem;
  color: var(--ink);
  border-left: 2px solid var(--accent-clay);
  padding: 0.25rem 0 0.25rem 1.25rem;
  margin: 1.5rem 0;
  line-height: 1.5;
}
.split-body .text-link {
  font-family: var(--ui);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  text-decoration: none;
  color: var(--primary);
  border-bottom: 1px solid var(--accent-clay);
  padding-bottom: 0.15rem;
  display: inline-block;
  margin-top: 0.75rem;
}
.split-body .text-link:hover { color: var(--accent-clay); }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .split.reverse > :first-child { order: 0; }
}

/* ── REAL WEDDINGS CARDS ── */
.weddings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.weddings-grid--two { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
.wedding-card {
  background: var(--card);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--rule);
  transition: transform 0.3s, box-shadow 0.3s;
}
.wedding-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px var(--shadow); }
.wedding-card-img {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
}
.wedding-card-body { padding: 1.5rem 1.5rem 1.75rem; }
.wedding-card .smallcaps { margin-bottom: 0.5rem; display: block; }
.wedding-card h3 {
  font-family: var(--body);
  font-style: italic;
  font-weight: 500;
  font-size: 1.625rem;
  color: var(--ink);
  margin-bottom: 0.6rem;
}
.wedding-card p {
  font-size: 1.0625rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 1rem;
}
.wedding-card .read-link {
  font-family: var(--ui);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-clay);
  font-weight: 500;
  text-decoration: none;
}
@media (max-width: 900px) {
  .weddings-grid, .weddings-grid--two { grid-template-columns: 1fr; }
}

/* ── PRICING PREVIEW BAND (homepage sage band) ── */
.pricing-band {
  background: var(--primary);
  color: var(--bg);
}
.pricing-band h2, .pricing-band h3 { color: var(--bg); }
.pricing-band .section-eyebrow { color: rgba(244,237,224,0.8); }
.pricing-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.pricing-tile {
  border: 1px solid rgba(244,237,224,0.22);
  padding: 2rem;
  background: rgba(244,237,224,0.05);
  display: flex;
  flex-direction: column;
}
.pricing-tile .tile-eyebrow {
  font-family: var(--ui);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-clay);
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.pricing-tile .tile-price {
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--bg);
  margin-bottom: 0.75rem;
}
.pricing-tile h3 {
  font-family: var(--display);
  font-style: normal;
  font-weight: 400;
  font-size: 1.375rem;
  color: var(--bg);
  margin-bottom: 1rem;
}
.pricing-tile p {
  color: rgba(244,237,224,0.85);
  font-size: 1.0625rem;
  line-height: 1.55;
  flex: 1;
}
.pricing-band-cta {
  text-align: center;
  margin-top: 3rem;
}
.pricing-band-cta .italic-line {
  font-style: italic;
  font-size: 1.1875rem;
  color: rgba(244,237,224,0.9);
  margin-bottom: 1.5rem;
}
@media (max-width: 900px) {
  .pricing-tiles { grid-template-columns: 1fr; }
}

/* ── PRICING PAGE — DETAILED TIER CARDS ── */
.pricing-page-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0 4rem;
}
.pricing-card {
  background: var(--card);
  border: 1px solid var(--rule);
  padding: 2.25rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
}
.pricing-card--featured {
  border-color: var(--accent-clay);
  border-width: 2px;
}
.pricing-card--featured::before {
  content: 'Most Booked';
  position: absolute;
  top: -0.85rem;
  left: 2rem;
  background: var(--accent-clay);
  color: #fff;
  padding: 0.25rem 0.75rem;
  font-family: var(--ui);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}
.pricing-card .card-eyebrow {
  font-family: var(--ui);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-clay);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.pricing-card .card-price {
  font-family: var(--display);
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.pricing-card .card-sub {
  font-style: italic;
  color: var(--ink-soft);
  margin-bottom: 1rem;
  font-size: 1.0625rem;
}
.pricing-card .card-access {
  font-family: var(--ui);
  font-size: 0.8125rem;
  color: var(--ink-soft);
  letter-spacing: 0.05em;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 0.75rem 0;
  margin-bottom: 1.25rem;
}
.pricing-card dl {
  display: grid;
  gap: 0.5rem 0;
  margin-bottom: 1.5rem;
  flex: 1;
}
.pricing-card dt {
  font-family: var(--ui);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-muted);
  font-weight: 600;
  margin-top: 0.5rem;
}
.pricing-card dt:first-child { margin-top: 0; }
.pricing-card dd { font-size: 1.0625rem; color: var(--ink); line-height: 1.5; }
.pricing-card .card-link {
  font-family: var(--ui);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-clay);
  text-decoration: none;
  font-weight: 500;
  border-top: 1px solid var(--rule);
  padding-top: 1rem;
  display: block;
}
@media (max-width: 900px) {
  .pricing-page-tiers { grid-template-columns: 1fr; }
}

/* ── AVAILABILITY CALENDAR (homepage strip + tour-inquire full) ── */
.availability-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}
.month-thumb {
  background: var(--card);
  border: 1px solid var(--rule);
  padding: 0.875rem;
}
.month-thumb-name {
  font-family: var(--ui);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.month-thumb-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.month-thumb-grid .cell {
  aspect-ratio: 1/1;
  background: var(--bg-soft);
  border-radius: 1px;
}
.month-thumb-grid .open { background: var(--primary); }
.month-thumb-grid .held { background: var(--accent-clay); }
.month-thumb-grid .booked { background: var(--ink-soft); opacity: 0.45; }
.month-thumb-grid .pale { background: var(--bg-soft); }

.availability-legend {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-family: var(--ui);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
  margin: 1.5rem 0;
  font-weight: 500;
}
.availability-legend span { display: inline-flex; align-items: center; gap: 0.4rem; }
.availability-legend .dot {
  display: inline-block;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
}
.availability-legend .dot--open { background: var(--primary); }
.availability-legend .dot--held { background: var(--accent-clay); }
.availability-legend .dot--booked { background: var(--ink-soft); opacity: 0.6; }
.availability-legend .dot--pale { background: var(--bg-soft); border: 1px solid var(--rule); }

@media (max-width: 1100px) {
  .availability-strip { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .availability-strip { grid-template-columns: repeat(2, 1fr); }
}

/* ── FULL 18-MONTH CALENDAR (tour-inquire) ── */
.calendar-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 2rem 0 3rem;
}
.calendar-month {
  background: var(--card);
  border: 1px solid var(--rule);
  padding: 1.25rem 1.25rem 1rem;
}
.calendar-month-name {
  font-family: var(--display);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.875rem;
  letter-spacing: 0.04em;
}
.calendar-month-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}
.calendar-month-grid .day {
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ui);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--ink);
  background: var(--bg-soft);
  border-radius: 2px;
  cursor: default;
  transition: transform 0.15s;
}
.calendar-month-grid .day.is-open {
  background: var(--primary);
  color: var(--bg);
  cursor: pointer;
}
.calendar-month-grid .day.is-open:hover { transform: scale(1.08); }
.calendar-month-grid .day.is-held { background: var(--accent-clay); color: #fff; }
.calendar-month-grid .day.is-booked { background: var(--ink-soft); color: rgba(244,237,224,0.6); opacity: 0.55; }
.calendar-month-grid .day.is-pale { background: var(--bg-soft); color: var(--accent-muted); }
.calendar-month-grid .day.is-empty { background: transparent; }
.calendar-dow-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
  margin-bottom: 4px;
}
.calendar-dow-row span {
  font-family: var(--ui);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-align: center;
  color: var(--accent-muted);
  font-weight: 600;
}
@media (max-width: 900px) { .calendar-full { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .calendar-full { grid-template-columns: 1fr; } }

/* ── ARTICLE PROSE (about, real-wedding detail) ── */
.article-prose {
  font-family: var(--body);
  font-size: 1.25rem;
  line-height: 1.75;
  color: var(--ink);
}
.article-prose p { margin-bottom: 1.4rem; }
.article-prose h2 {
  margin: 3rem 0 1.25rem;
  font-family: var(--display);
  font-weight: 400;
  font-size: 2rem;
}
.article-prose h3 { margin: 2rem 0 0.75rem; }
.article-prose .pull-quote-large {
  font-family: var(--body);
  font-style: italic;
  font-size: 1.875rem;
  line-height: 1.35;
  color: var(--ink);
  margin: 2.5rem 0;
  text-align: center;
  padding: 0 1rem;
  max-width: 44rem;
}
.article-prose blockquote {
  font-family: var(--body);
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--ink);
  border-left: 2px solid var(--accent-clay);
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin: 2rem 0;
}
.article-prose .timeline-photo {
  width: 18rem;
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  float: right;
  margin: 0.5rem 0 1.5rem 2rem;
}
.article-prose .timeline-photo--left { float: left; margin: 0.5rem 2rem 1.5rem 0; }
@media (max-width: 700px) {
  .article-prose .timeline-photo { float: none; width: 100%; margin: 1.5rem 0; }
}

/* ── VENUE PAGE (the-venue) ── */
.venue-section {
  padding: 5rem 0;
  border-bottom: 1px solid var(--rule);
}
.venue-section:last-child { border-bottom: 0; }
.venue-section h2 { margin-bottom: 1.5rem; }
.venue-photos-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 1.5rem 0 2rem;
}
.venue-photos-2x2 > div { aspect-ratio: 4/5; background-size: cover; background-position: center; }

.venue-photos-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 1.5rem 0 2rem;
}
.venue-photos-strip > div { aspect-ratio: 3/2; background-size: cover; background-position: center; }

.venue-photos-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 1.5rem 0 2rem;
}
.venue-photos-pair > div { aspect-ratio: 4/5; background-size: cover; background-position: center; }

.venue-photos-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 1.5rem 0 2rem;
}
.venue-photos-3 > div { aspect-ratio: 4/5; background-size: cover; background-position: center; }

.venue-photo-aerial {
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
  margin: 1.5rem 0 2rem;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
  gap: 1rem 1.5rem;
  margin: 2rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.spec-grid .spec {
  font-family: var(--ui);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
  font-weight: 600;
}
.spec-grid .spec strong { color: var(--accent-clay); font-weight: 600; }

.venue-essay { font-size: 1.1875rem; color: var(--ink-soft); line-height: 1.7; max-width: 44rem; }
.venue-essay p { margin-bottom: 1.1rem; }
@media (max-width: 700px) {
  .venue-photos-2x2, .venue-photos-pair { grid-template-columns: 1fr; }
  .venue-photos-strip, .venue-photos-3 { grid-template-columns: 1fr; }
}

/* ── GALLERY ── */
.gallery-tabs {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 1rem;
  margin: 2rem 0 3rem;
}
.gallery-tab {
  font-family: var(--ui);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-decoration: none;
  color: var(--ink-soft);
  padding-bottom: 0.5rem;
  font-weight: 500;
}
.gallery-tab.is-active {
  color: var(--ink);
  border-bottom: 2px solid var(--accent-clay);
}

.gallery-grid {
  columns: 3;
  column-gap: 0.75rem;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 0.75rem;
  position: relative;
}
.gallery-item-photo {
  background-size: cover;
  background-position: center;
  width: 100%;
}
.gallery-item-photo.ratio-4-5 { aspect-ratio: 4/5; }
.gallery-item-photo.ratio-1-1 { aspect-ratio: 1/1; }
.gallery-item-photo.ratio-3-2 { aspect-ratio: 3/2; }
.gallery-item-cap {
  font-family: var(--ui);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
  margin-top: 0.4rem;
}
@media (max-width: 900px) { .gallery-grid { columns: 2; } }
@media (max-width: 500px) { .gallery-grid { columns: 1; } }

/* ── REAL WEDDING DETAIL ── */
.rw-hero {
  position: relative;
  height: 70vh;
  min-height: 480px;
  max-height: 760px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.rw-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.rw-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31,26,20,0.05) 50%, rgba(31,26,20,0.45) 100%);
}
.rw-hero-card {
  position: relative;
  z-index: 2;
  background: rgba(244,237,224,0.92);
  padding: 2.25rem 2.5rem;
  margin: 0 auto 4rem;
  text-align: center;
  max-width: 44rem;
}
.rw-hero-card h1 { margin-top: 1rem; }
.rw-meta {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem 2rem;
  padding: 1.75rem 2rem;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin: 2rem 0 3rem;
  background: var(--card);
}
.rw-meta dt {
  font-family: var(--ui);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-muted);
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.rw-meta dd { font-family: var(--body); font-size: 1.0625rem; color: var(--ink); line-height: 1.4; }
@media (max-width: 800px) { .rw-meta { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .rw-meta { grid-template-columns: 1fr; } }

.rw-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 3rem 0;
}
.rw-gallery > div {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
}
.rw-gallery > div.span-2 { grid-column: span 2; aspect-ratio: 3/2; }
@media (max-width: 700px) {
  .rw-gallery { grid-template-columns: 1fr 1fr; }
  .rw-gallery > div.span-2 { grid-column: span 2; }
}

.rw-credits {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 2rem 0;
  margin: 3rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
  gap: 1.5rem;
}
.rw-credits dt {
  font-family: var(--ui);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-muted);
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.rw-credits dd { font-size: 1.0625rem; color: var(--ink); }
.rw-credits dd a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--rule); }
.rw-credits dd a:hover { text-decoration-color: var(--accent-clay); }

/* ── PREFERRED VENDORS ── */
.vendor-section { margin-bottom: 4rem; }
.vendor-section h2 { margin-bottom: 1.5rem; }
.vendor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 2rem;
}
.vendor-card {
  background: var(--card);
  border: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
}
.vendor-card-photo {
  aspect-ratio: 1/1;
  background-size: cover;
  background-position: center;
}
.vendor-card-body { padding: 1.25rem; }
.vendor-card .vendor-name {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.35rem;
  letter-spacing: 0.02em;
}
.vendor-card .vendor-tag {
  font-family: var(--ui);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-clay);
  margin-bottom: 0.75rem;
  font-weight: 600;
}
.vendor-card .vendor-desc {
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 1rem;
}
.vendor-card .vendor-links {
  display: flex;
  gap: 1rem;
  font-family: var(--ui);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.vendor-card .vendor-links a {
  text-decoration: none;
  color: var(--primary);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 0.1rem;
}
.vendor-card .vendor-links a:hover { color: var(--accent-clay); border-bottom-color: var(--accent-clay); }

/* ── FAQ ACCORDION ── */
.faq-list {
  border-top: 1px solid var(--rule);
  margin: 2rem 0;
}
.faq-item {
  border-bottom: 1px solid var(--rule);
}
.faq-q {
  padding: 1.5rem 0;
  font-family: var(--display);
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
  letter-spacing: 0.01em;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  color: var(--accent-clay);
  font-family: var(--ui);
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.2s;
}
details[open] .faq-q::after { content: '−'; }
.faq-a {
  padding: 0 0 1.75rem;
  font-family: var(--body);
  font-size: 1.1875rem;
  line-height: 1.65;
  color: var(--ink-soft);
}
.faq-a p { margin-bottom: 0.8rem; }
.faq-a p:last-child { margin-bottom: 0; }

/* ── TOUR & INQUIRE PAGE ── */
.tour-grid {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 3rem;
  align-items: start;
  margin: 2rem 0 4rem;
}
.tour-note {
  background: var(--card);
  border: 1px solid var(--rule);
  padding: 1.75rem;
}
.tour-note .smallcaps { display: block; margin-bottom: 1rem; }
.tour-note p { font-size: 1.0625rem; line-height: 1.6; color: var(--ink-soft); margin-bottom: 1rem; }
.tour-note p:last-child { margin-bottom: 0; }
@media (max-width: 900px) { .tour-grid { grid-template-columns: 1fr; } }

.expect-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin: 3rem 0;
}
.expect-card {
  background: var(--card);
  border: 1px solid var(--rule);
  padding: 1.5rem;
}
.expect-card .smallcaps {
  display: block;
  margin-bottom: 1rem;
  color: var(--accent-clay);
}
.expect-card p { font-size: 1rem; line-height: 1.55; color: var(--ink-soft); margin-bottom: 0; }
@media (max-width: 1000px) { .expect-cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .expect-cards { grid-template-columns: 1fr; } }

/* ── FORMS ── */
.form-card {
  background: var(--card);
  border: 1px solid var(--rule);
  padding: 2rem;
}
.form-row { margin-bottom: 1.25rem; }
.form-row label {
  display: block;
  font-family: var(--ui);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.75rem 0.25rem;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule);
  font-family: var(--body);
  font-size: 1.0625rem;
  color: var(--ink);
  outline: none;
  resize: vertical;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus { border-bottom-color: var(--accent-clay); }
.form-submit {
  background: var(--accent-clay);
  color: #fff;
  border: 0;
  padding: 1rem 2rem;
  font-family: var(--ui);
  font-size: 0.8125rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  width: 100%;
  margin-top: 0.75rem;
  transition: background 0.2s;
}
.form-submit:hover { background: var(--accent-clay-dark); }
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 600px) { .form-row-2 { grid-template-columns: 1fr; } }

/* ── LOCATION + MAP (homepage block) ── */
.location-block {
  border-top: 1px solid var(--rule);
}
.location-grid {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 0;
  align-items: stretch;
}
.location-map {
  width: 100%;
  min-height: 480px;
  border: 0;
  filter: saturate(0.88) hue-rotate(-4deg);
}
.location-info {
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.location-info h2 { margin-bottom: 1rem; }
.location-info address {
  font-family: var(--body);
  font-style: italic;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--ink);
}
.location-info p { color: var(--ink-soft); font-size: 1.0625rem; line-height: 1.65; margin-bottom: 1.5rem; }
.driving-pills {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.pill {
  font-family: var(--ui);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--ink-soft);
  border: 1px solid var(--rule);
  padding: 0.5rem 0.85rem;
}
@media (max-width: 900px) {
  .location-grid { grid-template-columns: 1fr; }
  .location-info { padding: 3rem 1.5rem; }
}

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 4rem;
  margin: 2rem 0 4rem;
  align-items: start;
}
.contact-nap-card { padding: 2rem; background: var(--card); border: 1px solid var(--rule); }
.contact-nap-card .big-phone {
  font-family: var(--display);
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--ink);
  text-decoration: none;
  display: block;
  margin: 0.5rem 0 1rem;
}
.contact-nap-card .smallcaps { display: block; margin: 1.25rem 0 0.4rem; color: var(--accent-clay); }
.contact-nap-card .smallcaps:first-of-type { margin-top: 0; }
.contact-nap-card address {
  font-style: normal;
  font-size: 1.1875rem;
  font-family: var(--body);
  margin-bottom: 0.5rem;
}
.contact-nap-card a { color: var(--ink); }
.contact-map-frame {
  width: 100%;
  aspect-ratio: 21/9;
  border: 0;
  display: block;
  filter: saturate(0.88) hue-rotate(-4deg);
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  padding: 4rem 0;
}
.info-grid h3 {
  font-family: var(--display);
  font-style: normal;
  font-weight: 400;
  font-size: 1.375rem;
  margin-bottom: 0.5rem;
  color: var(--ink);
}
.info-grid p { font-size: 1.0625rem; line-height: 1.6; color: var(--ink-soft); margin-bottom: 0.85rem; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 2rem; } }
@media (max-width: 700px) { .info-grid { grid-template-columns: 1fr; gap: 2rem; padding: 2.5rem 0; } }

/* ── CLOSING CTA SECTION ── */
.closing-cta {
  background: var(--primary-dark);
  color: var(--bg);
  padding: 5rem 0;
  text-align: center;
}
.closing-cta h2 { color: var(--bg); margin-bottom: 1.5rem; }
.closing-cta .smallcaps { color: var(--accent-clay); margin-bottom: 1rem; display: inline-block; }
.closing-cta p {
  color: rgba(244,237,224,0.85);
  font-size: 1.1875rem;
  max-width: 36rem;
  margin: 0 auto 2rem;
  line-height: 1.6;
}
.closing-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── ADD-ONS GRID (pricing page) ── */
.addon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 2rem 0 3rem;
}
.addon-card {
  background: var(--card);
  border: 1px solid var(--rule);
  padding: 1.5rem;
}
.addon-card .addon-name {
  font-family: var(--display);
  font-size: 1.125rem;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.addon-card .addon-price {
  font-family: var(--ui);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent-clay);
  margin-bottom: 0.5rem;
}
.addon-card p { font-size: 1rem; line-height: 1.55; color: var(--ink-soft); margin-bottom: 0; }
@media (max-width: 900px) { .addon-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .addon-grid { grid-template-columns: 1fr; } }

/* ── NOT INCLUDED ── */
.not-included {
  background: var(--bg-soft);
  padding: 2rem;
  border-left: 3px solid var(--accent-clay);
  margin: 2rem 0;
}
.not-included dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 1.5rem;
  margin-top: 1rem;
}
.not-included dd {
  font-family: var(--body);
  font-size: 1.0625rem;
  color: var(--ink);
  padding-left: 1.25rem;
  position: relative;
}
.not-included dd::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent-clay);
}
@media (max-width: 600px) { .not-included dl { grid-template-columns: 1fr; } }

/* ── INTRO ESSAY (general purpose) ── */
.intro-essay {
  font-family: var(--body);
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 44rem;
  margin: 0 0 2rem;
}
.intro-essay p { margin-bottom: 1.1rem; }

/* ── SECTION EYEBROW + H2 GROUPS ── */
.section-eyebrow {
  font-family: var(--ui);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-clay);
  margin-bottom: 0.875rem;
  font-weight: 500;
  display: block;
}
.section-eyebrow--sage { color: var(--primary); }
.section-eyebrow--oat { color: rgba(244,237,224,0.8); }

.section-header { margin-bottom: 2rem; }
.section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

/* ── FOOTER ── */
.footer {
  background: var(--primary-dark);
  color: var(--bg);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 5fr 3fr 4fr;
  gap: 3.5rem;
  margin-bottom: 3rem;
}
.footer .wordmark-block { color: var(--bg); display: block; margin-bottom: 1rem; }
.footer .brand-wordmark { color: var(--bg); font-size: 1.5rem; }
.footer .brand-tag { color: rgba(244,237,224,0.75); margin-top: 0.4rem; display: block; }
.footer h3 {
  font-family: var(--ui);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-clay);
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.footer-mission {
  color: rgba(244,237,224,0.78);
  font-size: 1.0625rem;
  line-height: 1.65;
  margin: 1rem 0 1.25rem;
  max-width: 32ch;
  font-family: var(--body);
}
.footer-member {
  font-family: var(--ui);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(244,237,224,0.65);
  font-weight: 500;
}
.footer-nav { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-nav a {
  color: rgba(244,237,224,0.82);
  text-decoration: none;
  font-size: 1.0625rem;
  font-family: var(--body);
}
.footer-nav a:hover { color: var(--bg); }
.footer-pricing-link {
  font-family: var(--ui);
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  margin-top: 1rem;
  display: inline-block;
  color: var(--bg);
  text-decoration: none;
  border-bottom: 1px solid var(--accent-clay);
  padding-bottom: 0.15rem;
}
.footer-nap p { color: rgba(244,237,224,0.85); font-size: 1.0625rem; line-height: 1.65; margin-bottom: 0.4rem; font-family: var(--body); }
.footer-nap a { color: rgba(244,237,224,0.95); text-decoration: none; }
.footer-tours {
  font-family: var(--body);
  font-style: italic;
  color: rgba(244,237,224,0.75);
  margin-top: 0.5rem;
}
.footer-bottom {
  border-top: 1px solid rgba(244,237,224,0.12);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--ui);
  font-size: 0.8125rem;
  color: rgba(244,237,224,0.55);
}
.footer-bottom em {
  font-family: var(--body);
  font-style: italic;
  color: rgba(244,237,224,0.7);
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ── UTILS ── */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.text-center { text-align: center; }
.max-prose { max-width: 46rem; }
.divider {
  height: 1px;
  background: var(--rule);
  margin: 5rem 0;
  border: 0;
}
