:root {
  --background: #f4efe8;
  --background-deep: #e8ddcf;
  --surface: rgba(255, 251, 247, 0.82);
  --surface-strong: #fffaf4;
  --text: #2d241d;
  --muted: #6f6053;
  --line: rgba(108, 88, 70, 0.18);
  --accent: #8b6b4f;
  --accent-deep: #6e533d;
  --shadow: 0 24px 80px rgba(58, 39, 22, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.7), transparent 35%),
    linear-gradient(180deg, #f7f2eb 0%, var(--background) 46%, var(--background-deep) 100%);
}

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

a {
  color: inherit;
}

.page-shell {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.5rem 0 2rem;
}

.hero,
.collection,
.details,
.footer {
  backdrop-filter: blur(12px);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
  padding: 2.25rem;
  border-radius: 32px;
}

.hero-copy h1,
.section-heading h2,
.detail-panel h2 {
  margin: 0;
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.95;
}

.hero-copy h1 {
  font-size: clamp(3.25rem, 7vw, 6.2rem);
  max-width: 12ch;
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.intro,
.section-heading p,
.card-copy p,
.detail-panel p,
.note-copy,
.footer p,
.order-callout {
  color: var(--muted);
  line-height: 1.75;
}

.intro {
  max-width: 58ch;
  margin: 1.5rem 0 0;
  font-size: 1.02rem;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}

.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fffaf4;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease;
}

.button-primary:hover,
.button-primary:focus-visible,
.footer-link:hover,
.footer-link:focus-visible {
  transform: translateY(-2px);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent-deep);
}

.order-callout {
  margin: 0;
  font-size: 0.95rem;
}

.contact-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}

.email-text,
.footer-link {
  color: var(--accent-deep);
  font-weight: 700;
}

.copy-button,
.footer-button {
  appearance: none;
  border: 1px solid rgba(112, 90, 69, 0.18);
  background: rgba(255, 250, 244, 0.9);
  color: var(--accent-deep);
  border-radius: 999px;
  padding: 0.72rem 1rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.copy-button:hover,
.copy-button:focus-visible,
.footer-button:hover,
.footer-button:focus-visible {
  transform: translateY(-2px);
  background: #fff7ef;
  border-color: rgba(112, 90, 69, 0.3);
}

.hero-image {
  margin: 0;
  padding: 1.25rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 249, 241, 0.96), rgba(236, 225, 209, 0.88));
  border: 1px solid rgba(137, 108, 76, 0.12);
}

.collection,
.details,
.footer {
  margin-top: 1.5rem;
  border-radius: 28px;
}

.collection {
  padding: 2rem;
}

.section-heading {
  max-width: 46rem;
}

.section-heading h2,
.detail-panel h2 {
  font-size: clamp(2.3rem, 5vw, 4rem);
  margin-bottom: 1rem;
}

.gallery {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.card {
  overflow: hidden;
  border-radius: 24px;
  background: var(--surface-strong);
  border: 1px solid rgba(112, 90, 69, 0.12);
}

.card img {
  aspect-ratio: 4 / 5;
  width: 100%;
  object-fit: cover;
}

.card-copy {
  padding: 1.25rem 1.25rem 1.4rem;
}

.card-copy h3 {
  margin: 0 0 0.55rem;
  font-family: "Instrument Serif", serif;
  font-size: 1.75rem;
  font-weight: 400;
}

.card-copy p {
  margin: 0;
}

.details {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  padding: 1.25rem;
}

.detail-panel,
.note-panel {
  border-radius: 22px;
  padding: 1.75rem;
  background: rgba(255, 250, 244, 0.9);
  border: 1px solid rgba(112, 90, 69, 0.12);
}

.note-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(180deg, rgba(235, 222, 207, 0.92), rgba(247, 241, 233, 0.94));
}

.note-label {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.note-copy {
  margin: 0;
  font-size: 1.05rem;
}

.footer {
  padding: 1.4rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer p {
  margin: 0;
  max-width: 45rem;
}

.footer-link {
  white-space: nowrap;
  font-weight: 700;
}

@media (max-width: 900px) {
  .hero,
  .details,
  .gallery {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 1.5rem;
  }

  .collection,
  .details,
  .footer {
    padding-inline: 1.25rem;
  }

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

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 1rem, 1180px);
    padding-top: 0.5rem;
  }

  .hero,
  .collection,
  .details,
  .footer {
    border-radius: 24px;
  }

  .hero-copy h1 {
    font-size: clamp(2.8rem, 16vw, 4.4rem);
  }

  .collection,
  .details,
  .footer {
    margin-top: 1rem;
  }
}
