:root {
  --bg: #e8dcc9;
  --bg-soft: #f4ecdf;
  --surface: rgba(255, 250, 242, 0.72);
  --surface-strong: rgba(252, 247, 239, 0.9);
  --text: #261a14;
  --muted: #6b594c;
  --line: rgba(63, 40, 22, 0.12);
  --accent: #7e4e29;
  --accent-deep: #4e2d18;
  --shadow: 0 24px 80px rgba(62, 38, 17, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.5), transparent 32%),
    linear-gradient(180deg, #ddcfba 0%, #efe6d8 42%, #f8f3eb 100%);
}

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

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

.page-shell {
  width: var(--container);
  margin: 0 auto;
  padding: 0;
}

.hero {
  --hero-image: url("hero.png");
  position: relative;
  width: 100vw;
  min-height: 92vh;
  padding: 24px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border: 1px solid var(--line);
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(30, 18, 11, 0.76), rgba(30, 18, 11, 0.24)),
    var(--hero-image) center/cover no-repeat;
  box-shadow: var(--shadow);
}

.hero-inner {
  width: var(--container);
  margin: 0 auto;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 26%, rgba(255, 249, 240, 0.08) 100%);
  pointer-events: none;
}

.topbar,
.hero-content,
.section {
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.brand-mark {
  width: 140px;
  padding: 10px 12px;
  border-radius: 20px;
  background: rgba(250, 244, 235, 0.86);
  backdrop-filter: blur(12px);
}

.hero-brand-mark {
  display: inline-block;
  width: 560px;
  margin: 0 auto 22px;
  padding: 0;
  background: transparent;
  backdrop-filter: none;
}

.hero-brand-anim {
  width: min(780px, 100%);
}

.hero-logo-draw,
.hero-logo-draw svg,
.hero-logo-draw img {
  display: block;
  width: 100%;
}

.hero-logo-draw {
  opacity: 0;
}

.hero-logo-draw img {
  filter: brightness(0) invert(1) drop-shadow(0 6px 18px rgba(0, 0, 0, 0.28));
}

.topbar-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.topbar-links a {
  padding: 10px 14px;
  border-radius: 999px;
  color: #f7efe7;
  background: rgba(27, 19, 14, 0.24);
  border: 1px solid rgba(255, 244, 231, 0.18);
}

.hero-content {
  width: 100%;
  padding: 14vh 0 6vh;
  color: #fff9f2;
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.82;
}

.hero h1,
.section-heading h2,
.product-copy h3,
.banner-panel h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.hero h1 {
  width: 100%;
  max-width: none;
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.92;
}

.hero-text {
  max-width: 56rem;
  margin: 24px auto 0;
  font-size: 1.04rem;
  line-height: 1.8;
  color: rgba(255, 247, 239, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff7f0;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
}

.button-secondary {
  color: #fff7f0;
  border: 1px solid rgba(255, 244, 231, 0.34);
  background: rgba(20, 14, 11, 0.2);
}

.section {
  width: 100vw;
  margin-top: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 42px;
  border: 0;
  border-radius: 0;
  background: var(--surface);
  backdrop-filter: blur(16px);
  box-shadow: none;
}

.section > * {
  width: var(--container);
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

main > .section:nth-of-type(1) {
  background: #f3eadf;
}

main > .section:nth-of-type(2) {
  background: #ece2d5;
}

main > .section:nth-of-type(3) {
  background: #f7f0e6;
}

main > .section:nth-of-type(4) {
  background: #e8ddcf;
}

main > .section:nth-of-type(5) {
  background: #efe5d9;
}

.section-heading {
  width: var(--container);
  max-width: 100%;
  margin: 0 auto 28px;
}

.section-heading h2 {
  max-width: 760px;
  font-size: clamp(2.6rem, 4vw, 4.3rem);
  line-height: 0.95;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 18px;
}

.manifest-card,
.value-card,
.product-card,
.banner-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
}

.manifest-card {
  min-height: 100%;
  padding: 28px;
  font-size: 1.06rem;
  line-height: 1.9;
}

.value-card {
  padding: 24px;
}

.value-card span {
  display: inline-flex;
  margin-bottom: 44px;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.value-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.value-card p,
.product-copy p,
.details-copy p,
.details-list,
.banner-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.product-card {
  grid-column: span 4;
  overflow: hidden;
}

.product-card-wide {
  grid-column: span 8;
}

.product-visual {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.product-card-wide .product-visual {
  aspect-ratio: 16 / 10;
}

.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-copy {
  padding: 22px 22px 26px;
}

.product-type {
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.product-copy h3 {
  margin-bottom: 10px;
  font-size: 2rem;
  line-height: 0.98;
}

.details-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  align-items: start;
}

.details-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.details-gallery img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.details-copy {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
}

.details-list {
  padding-left: 20px;
  margin-top: 18px;
}

.details-list li + li {
  margin-top: 12px;
}

.site-footer {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  color: #f5f5f4;
  background: #1c1917;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.footer-main {
  padding: 64px 24px 0;
}

.footer-shell {
  width: min(1280px, calc(100vw - 48px));
  margin: 0 auto;
  padding-bottom: 32px;
}

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

.footer-column h4,
.footer-logo {
  margin: 0 0 16px;
  color: #fef3c7;
  font-weight: 400;
}

.footer-logo {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1.2;
}

.footer-column h4 {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.footer-copy,
.footer-links a,
.footer-contact-copy a,
.footer-contact-copy span,
.footer-bottom,
.footer-bottom-links a {
  color: #d6d3d1;
}

.footer-copy {
  max-width: 30ch;
  margin: 0 0 24px;
  line-height: 1.625;
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  color: #f5f5f4;
  background: #292524;
  transition: background-color 180ms ease, color 180ms ease;
}

.footer-socials a:hover {
  background: #b45309;
}

.footer-socials svg,
.footer-contact-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-links,
.footer-contacts {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li + li {
  margin-top: 12px;
}

.footer-links a,
.footer-contact-copy a,
.footer-contact-copy span {
  font-size: 1rem;
  line-height: 1.5;
  transition: color 180ms ease;
}

.footer-links a:hover,
.footer-contact-copy a:hover {
  color: #fbbf24;
}

.footer-contacts {
  display: grid;
  gap: 16px;
}

.footer-contacts li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  min-width: 20px;
  color: #fbbf24;
  transform: translateY(2px);
}

.footer-contact-copy {
  display: grid;
  gap: 4px;
}

.footer-contact-label {
  color: #a8a29e;
  font-size: 0.75rem;
  line-height: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bottom {
  display: block;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid #292524;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-accent {
  height: 8px;
  background: linear-gradient(90deg, #92400e 0%, #d97706 50%, #92400e 100%);
}

@media (max-width: 1100px) {
  .intro-grid {
    grid-template-columns: 1fr 1fr;
  }

  .manifest-card {
    grid-column: 1 / -1;
  }

  .product-card,
  .product-card-wide {
    grid-column: span 6;
  }

  .details-layout {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 28px;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100vw - 20px, 100%);
    padding: 0;
  }

  .hero,
  .section {
    padding: 20px;
  }

  .section {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    border-radius: 0;
  }

  .hero {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    border-radius: 0;
  }

  .hero-inner {
    width: min(100vw - 20px, 100%);
  }

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

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 64px 0 10px;
  }

  .hero h1 {
    font-size: clamp(3rem, 18vw, 4.4rem);
  }

  .intro-grid,
  .product-grid,
  .details-gallery {
    grid-template-columns: 1fr;
  }

  .product-card,
  .product-card-wide {
    grid-column: auto;
  }

  .product-visual,
  .product-card-wide .product-visual {
    aspect-ratio: 4 / 5;
  }

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

  .footer-main {
    padding: 44px 24px 0;
  }

  .footer-shell {
    width: min(100%, calc(100vw - 48px));
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom-links {
    flex-direction: column;
    gap: 12px;
  }
}
