:root {
  --paper: #f5ecdf;
  --cream: rgba(255, 250, 243, 0.9);
  --ink: #2f241d;
  --brown: #65462c;
  --gold: #a97a35;
  --wine: #7f4d35;
  --line: rgba(47, 36, 29, 0.14);
  --shadow: 0 24px 60px rgba(50, 33, 20, 0.18);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Trebuchet MS", Arial, sans-serif;
  background:
    linear-gradient(rgba(245, 236, 223, 0.88), rgba(238, 226, 210, 0.94)),
    url("Vintage background.png") center top / 900px repeat;
}

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

a {
  color: inherit;
}

.page-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: rgba(248, 240, 228, 0.9);
  border-bottom: 1px solid rgba(47, 36, 29, 0.1);
  backdrop-filter: blur(14px);
}

.back-link {
  text-decoration: none;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fffaf3;
  font-weight: 700;
}

.switcher {
  display: grid;
  gap: 0.35rem;
  justify-items: end;
  font-size: 0.82rem;
}

.switcher span,
.eyebrow,
.storefront-card figcaption,
.feature-panel figcaption {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  color: var(--wine);
}

.switcher select {
  min-width: min(360px, 72vw);
  padding: 0.9rem 1rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  font: inherit;
}

.antique-page {
  width: min(1280px, calc(100% - 1rem));
  margin: 0 auto;
  padding: 1rem 0 2rem;
  display: grid;
  gap: 1rem;
}

.brand-banner,
.hero,
.info-strip,
.collection,
.visit-row {
  display: grid;
  gap: 1rem;
}

.brand-mark,
.brand-copy,
.hero-copy,
.storefront-card,
.info-card,
.collection-copy,
.feature-panel,
.visit-card {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.brand-banner {
  grid-template-columns: 0.72fr 1.28fr;
  align-items: stretch;
}

.hero {
  grid-template-columns: 0.78fr 1.22fr;
  align-items: start;
}

.brand-mark,
.brand-copy,
.hero-copy,
.info-card,
.collection-copy,
.visit-card {
  padding: 1.35rem;
  border-radius: 32px;
  background: var(--cream);
}

.brand-mark {
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, rgba(255, 250, 243, 0.98), rgba(237, 222, 199, 0.9));
}

.brand-copy {
  display: grid;
  align-content: center;
  background:
    linear-gradient(135deg, rgba(255, 250, 243, 0.96), rgba(233, 214, 187, 0.88));
}

.hero-copy {
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.95), rgba(229, 211, 187, 0.8));
}

.hero-logo {
  width: min(100%, 430px);
  margin: 0;
}

h1,
h2,
strong {
  font-family: Georgia, "Times New Roman", serif;
}

h1,
h2,
p,
li,
figcaption {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0 0 0.9rem;
  font-size: clamp(3rem, 5.2vw, 5.1rem);
  line-height: 0.95;
  max-width: 12ch;
}

h2 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.65rem, 3vw, 2.7rem);
  line-height: 1;
}

p,
li,
figcaption {
  line-height: 1.7;
}

.lead {
  max-width: 38rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.hero-actions a {
  text-decoration: none;
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  background: #4d3421;
  color: #fff7eb;
  font-weight: 700;
}

.hero-actions a.secondary {
  background: rgba(255, 250, 243, 0.72);
  color: var(--brown);
  border: 1px solid rgba(101, 70, 44, 0.18);
}

.storefront-card,
.feature-panel {
  overflow: hidden;
  border-radius: 34px;
  background: rgba(255, 250, 243, 0.88);
}

.hero-panel img {
  height: 420px;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
}

.storefront-card figcaption,
.feature-panel figcaption {
  padding: 1rem 1rem 0;
}

.storefront-card img {
  height: 240px;
  min-height: 240px;
  object-fit: cover;
  object-position: center;
}

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

.info-card {
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.95), rgba(235, 220, 199, 0.82));
}

.info-card.accent {
  background:
    linear-gradient(180deg, rgba(169, 122, 53, 0.14), rgba(255, 250, 243, 0.94));
}

.info-card p {
  margin: 0.3rem 0;
}

.collection {
  grid-template-columns: 0.82fr 1.18fr;
  align-items: start;
}

.collection-copy {
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.95), rgba(219, 198, 170, 0.7));
}

.hero-panel {
  padding-top: 0;
}

.hero-panel figcaption {
  padding: 0.85rem 1rem 0.4rem;
}

.feature-panel img {
  height: 240px;
  min-height: 240px;
  object-fit: cover;
}

.pair-card {
  align-self: start;
}

.pair-card img {
  height: 220px;
  min-height: 220px;
}

.collection .pair-card:nth-of-type(2),
.collection .pair-card:nth-of-type(3) {
  grid-column: 2;
}

.collection .pair-card:nth-of-type(4) {
  grid-column: 1;
}

.visit-row {
  grid-template-columns: 1.05fr 0.95fr;
}

.visit-card {
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.94), rgba(230, 213, 190, 0.82));
}

.visit-card.details {
  background:
    linear-gradient(180deg, rgba(101, 70, 44, 0.12), rgba(255, 250, 243, 0.94));
}

.contact-storefront {
  margin: 0 0 1rem;
}

.visit-card ul {
  margin: 0.8rem 0 0;
  padding-left: 1.2rem;
}

@media (max-width: 1024px) {
  .brand-banner,
  .hero,
  .info-strip,
  .collection,
  .visit-row {
    grid-template-columns: 1fr;
  }

  .hero-panel img,
  .feature-panel img {
    height: 280px;
    min-height: 280px;
  }

  .collection .pair-card:nth-of-type(2),
  .collection .pair-card:nth-of-type(3),
  .collection .pair-card:nth-of-type(4) {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  .page-header {
    position: static;
    display: grid;
  }

  .switcher {
    justify-items: start;
  }

  .antique-page {
    width: min(100% - 0.75rem, 1280px);
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
