:root {
  --bg: #fbf7ef;
  --paper: #f3ecde;
  --ink: #1d2430;
  --muted: #5f6671;
  --line: rgba(29, 36, 48, 0.12);
  --blue: #183a63;
  --blue-2: #244f87;
  --gold: #c7944b;
  --green: #4d6e43;
  --white: #ffffff;
  --danger: #973131;
  --shadow: 0 24px 60px rgba(14, 20, 30, 0.12);
  --radius: 22px;
  --max: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

p,
h1,
h2,
h3,
ul,
figure {
  margin: 0;
}

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

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

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

.skip-link:focus {
  position: fixed;
  inset: 1rem auto auto 1rem;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0.75rem 1rem;
  background: var(--blue);
  color: var(--white);
  clip: auto;
  z-index: 999;
  border-radius: 999px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 247, 239, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 80px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 1rem;
  box-shadow: var(--shadow);
}

.brand-text {
  display: grid;
  gap: 0.1rem;
  line-height: 1.05;
}

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

.brand-text small {
  font-size: 0.82rem;
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-size: 0.97rem;
}

.site-nav a {
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--blue);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  padding: 0;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  margin: 5px auto;
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: calc(100svh - 80px);
  display: grid;
  align-items: end;
  overflow: clip;
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(12, 18, 28, 0.24), rgba(12, 18, 28, 0.75)),
    linear-gradient(110deg, rgba(24, 58, 99, 0.46), rgba(199, 148, 75, 0.15));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.75fr);
  gap: 2rem;
  align-items: end;
  padding: 6rem 0 4rem;
}

.hero-copy {
  color: var(--white);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0 0 1rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.9rem;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.9rem;
  color: var(--blue-2);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-copy .eyebrow,
.light {
  color: rgba(255, 255, 255, 0.86);
}

h1,
h2,
h3 {
  line-height: 1.08;
}

h1 {
  max-width: 11ch;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(2rem, 3vw, 3.1rem);
  letter-spacing: -0.03em;
}

h3 {
  font-size: 1.35rem;
}

.lead {
  max-width: 60ch;
  margin-top: 1.2rem;
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  border: 0;
  font-weight: 700;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease, opacity 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button:disabled {
  opacity: 0.72;
  cursor: wait;
  transform: none;
}

.button-primary {
  background: var(--gold);
  color: #25170d;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #d5a25a;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
}

.button-light {
  background: var(--white);
  color: var(--blue);
}

.button-outline {
  background: transparent;
  color: var(--blue);
  border: 1px solid rgba(24, 58, 99, 0.2);
}

.button-buy {
  width: 100%;
  background: var(--blue);
  color: var(--white);
}

.button-buy:hover,
.button-buy:focus-visible {
  background: #123052;
}

.hero-details {
  display: grid;
  gap: 0.45rem;
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.98rem;
}

.hero-details a {
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.hero-card {
  background: rgba(251, 247, 239, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-card img {
  aspect-ratio: 16 / 8.5;
  width: 100%;
  object-fit: cover;
}

.hero-card-text {
  padding: 1.3rem 1.3rem 1.4rem;
}

.card-kicker {
  margin-bottom: 0.45rem;
  color: var(--blue);
  font-weight: 700;
}

.section {
  padding: 5.5rem 0;
}

.intro-strip {
  padding-top: 1.8rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.stats-grid article,
.feature-card,
.visit-card,
.map-card,
.image-card,
.gallery-item,
.product-card,
.shop-note-bar {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.stats-grid article {
  padding: 1.5rem;
}

.stats-grid h2 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.stats-grid p,
.section-copy p,
.feature-card p,
.visit-note,
.contact-list p,
.footer-small,
.section-subcopy,
.shop-note,
.product-meta,
.product-description,
.empty-state p,
.product-status-copy {
  color: var(--muted);
}

.section-paper {
  background:
    radial-gradient(circle at top left, rgba(199, 148, 75, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.18));
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 2rem;
  align-items: center;
}

.section-copy {
  max-width: 60ch;
}

.section-copy p + p {
  margin-top: 1rem;
}

.image-stack {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  align-items: end;
}

.image-card img,
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tall {
  min-height: 520px;
}

.small-card {
  min-height: 300px;
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading.center {
  text-align: center;
}

.section-heading.center .eyebrow {
  display: block;
}

.section-subcopy {
  max-width: 62ch;
  margin: 1rem auto 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card {
  padding: 1.5rem;
}

.feature-card h3 {
  margin-bottom: 0.65rem;
}

.shop-section {
  background:
    radial-gradient(circle at top right, rgba(24, 58, 99, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(24, 58, 99, 0.03), rgba(199, 148, 75, 0.04));
}

.shop-heading {
  margin-bottom: 1.5rem;
}

.shop-toolbar {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.search-field {
  flex: 1;
}

.search-field input {
  width: 100%;
  min-height: 54px;
  padding: 0 1rem;
  border-radius: 18px;
  border: 1px solid rgba(24, 58, 99, 0.15);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
}

.shop-note-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  margin-bottom: 1rem;
}

#shop-status {
  font-weight: 700;
  color: var(--blue);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.product-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  min-height: 100%;
}

.product-card-media {
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(160deg, rgba(24, 58, 99, 0.92), rgba(77, 110, 67, 0.72)),
    url("assets/interior-main.webp") center / cover;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.product-tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue);
  font-size: 0.84rem;
  font-weight: 700;
}

.product-body {
  display: grid;
  gap: 0.75rem;
  padding: 1.15rem;
}

.product-title-row {
  display: flex;
  gap: 0.75rem;
  align-items: start;
  justify-content: space-between;
}

.product-title-row h3 {
  font-size: 1.25rem;
}

.product-price {
  white-space: nowrap;
  font-weight: 700;
  color: var(--blue);
}

.product-description {
  font-size: 0.97rem;
}

.product-status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.94rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
}

.status-pill.in-stock {
  background: rgba(77, 110, 67, 0.12);
  color: var(--green);
}

.status-pill.low-stock {
  background: rgba(199, 148, 75, 0.16);
  color: #7f5316;
}

.status-pill.unknown {
  background: rgba(24, 58, 99, 0.1);
  color: var(--blue);
}

.status-pill.out {
  background: rgba(151, 49, 49, 0.12);
  color: var(--danger);
}

.product-actions {
  display: grid;
  gap: 0.75rem;
  padding: 0 1.15rem 1.15rem;
}

.product-card-skeleton {
  padding: 1.15rem;
  min-height: 320px;
}

.product-card-skeleton div {
  border-radius: 14px;
  background: linear-gradient(90deg, rgba(24, 58, 99, 0.06), rgba(24, 58, 99, 0.12), rgba(24, 58, 99, 0.06));
  background-size: 200% 100%;
  animation: shimmer 1.4s linear infinite;
}

.product-card-skeleton div:nth-child(1) {
  height: 160px;
  margin-bottom: 1rem;
}

.product-card-skeleton div:nth-child(2) {
  height: 28px;
  margin-bottom: 0.8rem;
}

.product-card-skeleton div:nth-child(3) {
  height: 96px;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 2rem;
  text-align: center;
  border: 1px dashed rgba(24, 58, 99, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.55);
}

.section-gallery {
  background: linear-gradient(180deg, rgba(24, 58, 99, 0.05), rgba(77, 110, 67, 0.04));
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.gallery-item {
  min-height: 280px;
}

.gallery-item:nth-child(1) { grid-column: span 6; }
.gallery-item:nth-child(2) { grid-column: span 3; }
.gallery-item:nth-child(3) { grid-column: span 3; }
.gallery-item:nth-child(4) { grid-column: span 4; }
.gallery-item:nth-child(5) { grid-column: span 3; }
.gallery-item:nth-child(6) { grid-column: span 5; }

.gallery-tall {
  min-height: 430px;
}

.gallery-wide {
  min-height: 340px;
}

.section-accent {
  padding: 2.5rem 0;
}

.callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem 2.2rem;
  border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(130deg, var(--blue), #102947 62%, var(--green));
  color: var(--white);
  box-shadow: var(--shadow);
}

.visit-grid {
  display: grid;
  grid-template-columns: 420px minmax(0, 1fr);
  gap: 1rem;
}

.visit-card {
  padding: 1.75rem;
}

.contact-list {
  display: grid;
  gap: 1.15rem;
  margin-top: 1.5rem;
}

.contact-list li {
  display: grid;
  gap: 0.28rem;
}

.contact-list span {
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.contact-list a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}

.visit-note {
  margin-top: 1.2rem;
  font-size: 0.95rem;
}

.map-card {
  min-height: 520px;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
}

.site-footer {
  padding: 1.75rem 0 2.5rem;
  border-top: 1px solid var(--line);
}

.footer-wrap {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
  font-size: 0.95rem;
}

.footer-brand {
  font-weight: 700;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@media (max-width: 1024px) {
  .hero-content,
  .split-layout,
  .visit-grid,
  .feature-grid,
  .stats-grid,
  .footer-wrap,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .image-stack {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item:nth-child(n) {
    grid-column: span 6;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-top: 7rem;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.4rem);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    background: rgba(251, 247, 239, 0.98);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  h1 {
    max-width: 12ch;
    font-size: clamp(2.5rem, 11vw, 4rem);
  }

  .hero-content,
  .section,
  .site-footer {
    padding-left: 0;
    padding-right: 0;
  }

  .image-stack,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item:nth-child(n) {
    grid-column: span 12;
  }

  .callout,
  .shop-note-bar,
  .shop-toolbar,
  .product-status-row,
  .product-title-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .callout {
    padding: 1.6rem;
  }

  .map-card,
  .map-card iframe {
    min-height: 380px;
  }

  .hero-card-text,
  .feature-card,
  .visit-card,
  .stats-grid article,
  .product-body,
  .product-actions {
    padding: 1.2rem;
  }

  .button,
  .button-outline {
    width: 100%;
  }
}
