:root {
  --cream: #fbf6ed;
  --paper: #fffdf8;
  --blush: #ead7cf;
  --sage: #8da18b;
  --sage-dark: #526553;
  --brown: #4a3528;
  --brown-soft: #765b47;
  --gold: #b58a46;
  --ink: #2d241e;
  --muted: #6f6258;
  --line: rgba(74, 53, 40, 0.16);
  --shadow: 0 24px 70px rgba(74, 53, 40, 0.12);
  --shadow-soft: 0 14px 36px rgba(74, 53, 40, 0.1);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(234, 215, 207, 0.68), transparent 34rem),
    linear-gradient(180deg, var(--cream), #f7efe2 55%, #f9f2e8);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.24) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.38;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(181, 138, 70, 0.72);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 18px;
  top: 12px;
  z-index: 20;
  transform: translateY(-140%);
  padding: 10px 12px;
  color: var(--paper);
  background: var(--brown);
  border-radius: 999px;
  font-weight: 800;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 14px 20px;
  background: rgba(251, 246, 237, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--paper);
  background: linear-gradient(135deg, var(--brown), var(--gold));
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  box-shadow: 0 10px 24px rgba(74, 53, 40, 0.18);
}

.brand strong {
  display: block;
  color: var(--brown);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.nav-links a {
  padding: 9px 12px;
  color: var(--brown);
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: rgba(255, 253, 248, 0.88);
  border-color: var(--line);
  transform: translateY(-1px);
}

main {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.hero,
.page-hero,
.section {
  margin: 34px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 28px;
  align-items: stretch;
  min-height: 560px;
  padding: 48px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.94), rgba(255, 253, 248, 0.76)),
    linear-gradient(135deg, rgba(181, 138, 70, 0.12), rgba(141, 161, 139, 0.2));
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-copy,
.hero-card {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--sage-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
}

h1 {
  max-width: 760px;
  margin: 0;
  color: var(--brown);
  font-size: clamp(2.65rem, 7vw, 5.35rem);
  letter-spacing: -0.02em;
}

.hero-tagline {
  max-width: 700px;
  margin-top: 12px;
  color: var(--brown);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3.4vw, 2.45rem);
  line-height: 1.14;
}

h2 {
  margin: 0 0 12px;
  color: var(--brown);
  font-size: clamp(1.65rem, 3vw, 2.45rem);
}

h3 {
  margin: 0 0 10px;
  color: var(--brown);
  font-size: 1.35rem;
}

p {
  margin: 0;
}

.lead {
  max-width: 640px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.12rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button,
.text-link,
.intro-grid a,
.soft-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
}

.button.primary {
  color: var(--paper);
  background: var(--brown);
  box-shadow: 0 14px 28px rgba(74, 53, 40, 0.18);
}

.button.secondary,
.text-link,
.intro-grid a,
.soft-card a {
  color: var(--brown);
  background: rgba(255, 253, 248, 0.86);
  border: 1px solid var(--line);
}

.button,
.intro-grid a,
.soft-card a {
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.button:hover,
.intro-grid a:hover,
.soft-card a:hover {
  border-color: rgba(181, 138, 70, 0.42);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.quick-facts li {
  padding: 14px;
  background: rgba(255, 253, 248, 0.74);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.quick-facts strong,
.quick-facts span {
  display: block;
}

.quick-facts strong {
  color: var(--brown);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quick-facts span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-card {
  display: grid;
  gap: 16px;
}

.photo-placeholder,
.map-placeholder {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  overflow: hidden;
  color: var(--brown);
  background:
    linear-gradient(115deg, rgba(255, 253, 248, 0.12), transparent 38%),
    linear-gradient(135deg, rgba(234, 215, 207, 0.76), rgba(141, 161, 139, 0.34)),
    radial-gradient(circle at 28% 22%, rgba(255, 253, 248, 0.84), transparent 11rem);
  border: 1px solid rgba(181, 138, 70, 0.22);
  border-radius: 24px;
  box-shadow: inset 0 0 0 1px rgba(255, 253, 248, 0.5);
  text-align: center;
}

.photo-placeholder::before,
.map-placeholder::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 253, 248, 0.62);
  border-radius: 18px;
}

.photo-placeholder::after,
.map-placeholder::after {
  content: "";
  position: absolute;
  inset: auto 22px 22px auto;
  width: 82px;
  height: 82px;
  background:
    radial-gradient(circle, rgba(255, 253, 248, 0.55) 0 38%, transparent 40%),
    radial-gradient(circle, rgba(181, 138, 70, 0.2) 0 34%, transparent 36%);
  border-radius: 999px;
  opacity: 0.72;
}

.photo-placeholder span,
.map-placeholder span {
  position: relative;
  z-index: 1;
  padding: 10px 14px;
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.photo-placeholder.large {
  min-height: 430px;
}

.photo-placeholder.small {
  min-height: 190px;
  border-radius: 18px;
}

.hero-note,
.soft-card,
.contact-card,
.hours-card,
.feature-panel,
.intro-grid article,
.category-grid article,
.process-card,
.callout,
.social-card,
.customer-comments,
.split-feature,
.map-section {
  background: rgba(255, 253, 248, 0.88);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.hero-note {
  padding: 18px;
  color: var(--muted);
}

.section {
  padding: 34px;
}

.intro-grid,
.category-grid,
.registry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
}

.category-grid,
.registry-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.registry-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.intro-grid article,
.category-grid article,
.feature-panel {
  padding: 22px;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.intro-grid article:hover,
.category-grid article:hover,
.feature-panel:hover {
  border-color: rgba(181, 138, 70, 0.34);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.intro-grid p,
.category-grid p,
.feature-panel p,
.process-card span,
.soft-card p,
.callout p,
.social-card p,
.customer-comments p,
.split-feature p,
.map-section p,
.contact-list,
.hours-note {
  color: var(--muted);
}

.section-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: var(--paper);
  background: var(--sage-dark);
  border-radius: 50%;
  font-weight: 900;
}

.intro-grid a,
.soft-card a {
  margin-top: 18px;
}

.split-feature,
.social-card,
.callout,
.map-section,
.visit-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 22px;
  align-items: center;
}

.split-feature {
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.92), rgba(255, 253, 248, 0.82)),
    radial-gradient(circle at 10% 20%, rgba(234, 215, 207, 0.42), transparent 18rem),
    radial-gradient(circle at 100% 80%, rgba(141, 161, 139, 0.18), transparent 16rem);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.social-card,
.callout,
.map-section,
.process-card {
  padding: 30px;
}

.customer-comments {
  position: relative;
  overflow: hidden;
  padding: 34px;
}

.customer-comments::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(181, 138, 70, 0.16), transparent 18rem),
    radial-gradient(circle at 100% 20%, rgba(141, 161, 139, 0.14), transparent 16rem);
  pointer-events: none;
}

.customer-comments > * {
  position: relative;
}

.comments-heading {
  display: grid;
  gap: 8px;
  max-width: 760px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.review-card {
  display: grid;
  align-content: space-between;
  gap: 18px;
  min-height: 250px;
  padding: 22px;
  background: rgba(255, 253, 248, 0.78);
  border: 1px solid rgba(181, 138, 70, 0.24);
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(74, 53, 40, 0.09);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.review-card:hover {
  border-color: rgba(181, 138, 70, 0.38);
  box-shadow: 0 24px 58px rgba(74, 53, 40, 0.12);
  transform: translateY(-3px);
}

.review-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-rating span:first-child {
  color: var(--gold);
  letter-spacing: 0.14em;
}

.review-card blockquote {
  margin: 0;
}

.review-card blockquote p {
  color: var(--brown);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
  line-height: 1.35;
}

.reviewer {
  margin: 0;
  color: var(--brown);
  font-size: 0.92rem;
  font-weight: 900;
}

.rating-note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.source-line {
  font-size: 0.88rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.social-links a {
  padding: 10px 13px;
  color: var(--brown);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.social-links a:hover {
  border-color: rgba(181, 138, 70, 0.42);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.page-hero {
  padding: 46px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.94), rgba(255, 253, 248, 0.76)),
    linear-gradient(135deg, rgba(141, 161, 139, 0.2), rgba(234, 215, 207, 0.52));
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.page-hero.compact {
  max-width: 940px;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5.4vw, 3.9rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.08rem;
}

.page-hero .button {
  margin-top: 24px;
}

.step-list,
.hours-list {
  display: grid;
  gap: 14px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.step-list li {
  display: grid;
  gap: 5px;
  padding: 16px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.step-list strong {
  color: var(--brown);
}

.soft-card {
  padding: 24px;
}

.visit-layout {
  align-items: start;
  padding: 0;
}

.contact-card,
.hours-card {
  padding: 26px;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin: 18px 0 24px;
}

.contact-list div {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.contact-list dt {
  color: var(--brown);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-list dd {
  margin: 4px 0 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.hours-list span {
  color: var(--muted);
}

.hours-list strong {
  color: var(--brown);
}

.map-placeholder {
  min-height: 340px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1.2fr);
  gap: 18px;
  width: min(1120px, calc(100% - 40px));
  margin: 40px auto 0;
  padding: 28px 0 36px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer strong {
  display: block;
  color: var(--brown);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.site-footer a {
  display: block;
  color: var(--brown);
  font-weight: 800;
  text-decoration: none;
}

.site-footer small {
  display: block;
  margin-top: 8px;
}

@media (max-width: 920px) {
  .site-header {
    position: static;
  }

  .nav-shell,
  .hero,
  .split-feature,
  .social-card,
  .callout,
  .map-section,
  .visit-layout,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .nav-shell {
    align-items: flex-start;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .hero {
    min-height: auto;
    padding: 32px;
  }

  .quick-facts,
  .intro-grid,
  .category-grid,
  .registry-grid,
  .photo-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .social-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 12px 14px;
  }

  .nav-shell {
    gap: 12px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 1rem;
  }

  .nav-links {
    width: 100%;
  }

  .nav-links a {
    padding: 8px 10px;
    font-size: 0.83rem;
  }

  main,
  .site-footer {
    width: min(100% - 28px, 1120px);
  }

  .hero,
  .page-hero,
  .section {
    margin: 22px 0;
  }

  .hero,
  .page-hero,
  .section,
  .social-card,
  .callout,
  .map-section,
  .process-card {
    padding: 22px;
    border-radius: 20px;
  }

  h1 {
    font-size: clamp(2.25rem, 16vw, 3.35rem);
  }

  .hero-tagline {
    font-size: clamp(1.35rem, 8vw, 1.9rem);
  }

  .page-hero h1 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .lead,
  .page-hero p:not(.eyebrow) {
    font-size: 1rem;
  }

  .button,
  .text-link,
  .intro-grid a,
  .soft-card a {
    width: 100%;
  }

  .photo-placeholder.large {
    min-height: 300px;
  }

  .hours-list li {
    display: grid;
    gap: 2px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}
