:root {
  --bg: #f6efe6;
  --bg-soft: #fdf7f1;
  --surface: rgba(255, 250, 244, 0.74);
  --surface-strong: #fff8f2;
  --text: #2f241f;
  --muted: #6d5a4e;
  --line: rgba(79, 57, 43, 0.14);
  --accent: #a24d2f;
  --accent-deep: #7f3620;
  --shadow: 0 24px 80px rgba(97, 59, 34, 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(214, 137, 83, 0.24), transparent 28%),
    radial-gradient(circle at bottom right, rgba(146, 93, 51, 0.18), transparent 24%),
    linear-gradient(180deg, #f8f1e7 0%, #f4ecdf 44%, #efe3d4 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(111, 82, 58, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111, 82, 58, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 85%);
}

.site-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0 40px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 18px 22px;
  position: sticky;
  top: 14px;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(251, 244, 235, 0.78);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(88, 56, 38, 0.08);
}

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

.brand-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff7f0;
  background: linear-gradient(135deg, var(--accent) 0%, #c27a51 100%);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong,
.hero h1,
.section-heading h2,
.collection-card h3,
.process-step h3 {
  font-family: "Cormorant Garamond", serif;
}

.brand-copy strong {
  font-size: 1.3rem;
  font-weight: 700;
}

.brand-copy span {
  font-size: 0.92rem;
  color: var(--muted);
}

.topbar-actions,
.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav a,
.lang-button,
.button,
.contact-panel a {
  transition: 180ms ease;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.96rem;
}

.nav a:hover,
.nav a:focus-visible,
.contact-panel a:hover,
.contact-panel a:focus-visible {
  color: var(--accent-deep);
}

.lang-switcher {
  display: inline-flex;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 248, 240, 0.92);
  border: 1px solid var(--line);
}

.lang-button {
  border: 0;
  background: transparent;
  color: var(--muted);
  border-radius: 999px;
  padding: 8px 12px;
  font: inherit;
  font-size: 0.86rem;
  cursor: pointer;
}

.lang-button.is-active {
  background: var(--text);
  color: #fff7f0;
}

.hero,
.section,
.quote-banner,
.footer {
  margin-top: 28px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 28px;
  align-items: stretch;
}

.hero-copy,
.hero-card,
.feature-card,
.collection-card,
.process-step,
.contact-panel,
.quote-banner {
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 56px;
  border-radius: 40px;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--accent);
}

.hero h1,
.section-heading h2 {
  margin: 0;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.hero h1 {
  font-size: clamp(3.4rem, 8vw, 6.4rem);
  max-width: 10ch;
}

.hero-text {
  max-width: 56ch;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}

.button-primary {
  background: var(--accent);
  color: #fff7f0;
}

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

.button-secondary {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255, 247, 239, 0.85);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(127, 54, 32, 0.35);
  background: #fff9f3;
}

.hero-card {
  padding: 34px 30px;
  border-radius: 32px;
  align-self: end;
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -70px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(162, 77, 47, 0.18) 0%, transparent 70%);
}

.card-label,
.contact-label,
.collection-card span,
.process-step span {
  margin: 0;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
}

.hero-points {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}

.hero-points li {
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--text);
  line-height: 1.65;
}

.section {
  padding: 46px;
  border-radius: 36px;
  background: rgba(253, 247, 241, 0.68);
  border: 1px solid rgba(95, 69, 52, 0.08);
}

.section-heading {
  max-width: 720px;
}

.section-heading h2 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
}

.about-grid,
.collection-grid,
.process-list {
  display: grid;
  gap: 20px;
  margin-top: 28px;
}

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

.feature-card,
.collection-card,
.process-step {
  border-radius: 28px;
  padding: 28px;
}

.feature-card h3,
.collection-card h3,
.process-step h3 {
  margin: 18px 0 12px;
  font-size: 2rem;
}

.feature-card p,
.collection-card p,
.process-step p,
.contact-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.collection-grid {
  grid-template-columns: 1.2fr 1fr 1fr;
}

.collection-card-wide {
  min-height: 280px;
  background:
    linear-gradient(180deg, rgba(255, 248, 241, 0.82), rgba(255, 243, 233, 0.82)),
    radial-gradient(circle at top right, rgba(188, 117, 79, 0.26), transparent 30%);
}

.process-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.quote-banner {
  padding: 34px 28px;
  border-radius: 28px;
  text-align: center;
}

.quote-banner p {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.contact-panel {
  margin-top: 28px;
  border-radius: 32px;
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.contact-panel a {
  display: inline-block;
  margin-top: 10px;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 18px 6px 0;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 1080px) {
  .topbar,
  .topbar-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .nav,
  .topbar-actions {
    justify-content: space-between;
  }

  .hero,
  .about-grid,
  .collection-grid,
  .process-list,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 100%;
  }
}

@media (max-width: 720px) {
  .site-shell {
    width: min(100% - 24px, 1180px);
    padding-top: 12px;
  }

  .topbar,
  .hero-copy,
  .hero-card,
  .section,
  .contact-panel {
    padding: 22px;
  }

  .nav {
    flex-wrap: wrap;
    gap: 12px 18px;
  }

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

  .section-heading h2,
  .quote-banner p {
    line-height: 1.02;
  }

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