:root {
  --accent: #d8b46a;
  --accent-2: #e55039;
  --dark: #101014;
  --ink: #171717;
  --paper: #f5efe4;
  --soft: #fff8ec;
  --muted: #62666d;
  --line: rgba(20, 24, 31, 0.14);
  --radius: 8px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 64px);
  background: color-mix(in srgb, var(--soft) 92%, transparent);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--dark), var(--accent));
  font-weight: 900;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: clamp(1rem, 2vw, 1.3rem);
  line-height: 1.1;
}

.brand small {
  max-width: 320px;
  color: var(--muted);
  font-size: 0.78rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  font-weight: 800;
}

.main-nav a {
  color: var(--ink);
  padding: 10px 0;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav .is-active {
  color: var(--accent-2);
  border-color: var(--accent);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero,
.subhero,
.intro-band,
.product-section,
.story-section,
.process-section,
.faq-section,
.cta-section,
.two-column,
.values-grid,
.team-section,
.contact-layout,
.legal-content,
.success-panel {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: 760px;
  padding: clamp(56px, 8vw, 110px) 0;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  margin: 18px 0 22px;
  font-size: clamp(3rem, 8vw, 6.8rem);
}

h2 {
  font-size: clamp(2rem, 4.5vw, 4.2rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.65rem);
}

p {
  color: color-mix(in srgb, var(--ink) 74%, #ffffff 0%);
}

.hero-copy p,
.subhero p,
.intro-band p,
.section-heading p,
.story-copy p,
.cta-section p,
.success-panel p {
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
}

.hero-actions,
.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button,
.product-actions a,
.notice button,
.contact-form button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 0;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
}

.button.primary,
.contact-form button,
.notice button {
  color: #fff;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  box-shadow: 0 14px 34px color-mix(in srgb, var(--accent) 35%, transparent);
}

.button.ghost {
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
}

.hero-visual {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--dark);
}

.hero-visual img {
  width: 100%;
  height: min(650px, 70vh);
  min-height: 440px;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 2px;
  width: 132px;
  padding: 18px;
  color: #fff;
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
}

.hero-badge strong {
  font-size: 2.8rem;
  line-height: 1;
}

.intro-band {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  align-items: start;
  padding: clamp(34px, 5vw, 60px);
  color: #fff;
  background: var(--dark);
  border-radius: 8px;
}

.intro-band h2,
.intro-band p {
  color: #fff;
}

.product-section,
.process-section,
.faq-section,
.team-section {
  padding: clamp(70px, 9vw, 120px) 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

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

.product-card,
.process-grid article,
.values-grid article,
.info-card,
.contact-form,
.contact-panel,
.legal-aside,
.legal-sections article,
.faq-grid details {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.08);
}

.product-card {
  display: grid;
  overflow: hidden;
}

.product-media {
  background: var(--dark);
}

.product-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-copy {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.product-copy p {
  margin-bottom: 0;
}

.product-actions {
  justify-content: space-between;
  margin-top: 6px;
}

.product-actions strong {
  color: var(--accent-2);
  font-size: 1.4rem;
}

.product-actions a {
  min-height: 42px;
  color: #fff;
  background: var(--dark);
  font-size: 0.9rem;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
  background: var(--line);
}

.feature-strip div {
  padding: 30px;
  background: color-mix(in srgb, var(--paper) 70%, var(--soft));
}

.feature-strip span {
  display: block;
  width: 38px;
  height: 4px;
  margin-bottom: 18px;
  background: var(--accent);
}

.story-section {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  padding: clamp(76px, 10vw, 130px) 0;
}

.story-media {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 16px;
}

.story-img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.story-img-1 {
  height: 420px;
  grid-row: span 2;
}

.story-img-2,
.story-img-3 {
  height: 202px;
}

.process-grid,
.values-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.process-grid article,
.values-grid article {
  padding: 26px;
}

.process-grid b {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--accent-2);
  font-size: 2rem;
}

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

.faq-grid details {
  padding: 24px;
}

.faq-grid summary {
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.cta-section,
.success-panel {
  margin-bottom: clamp(70px, 10vw, 130px);
  padding: clamp(44px, 7vw, 78px);
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, var(--dark), color-mix(in srgb, var(--dark) 76%, var(--accent-2)));
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.cta-section h2,
.cta-section p,
.success-panel h1,
.success-panel p {
  color: #fff;
}

.subhero {
  padding: clamp(70px, 10vw, 130px) 0 clamp(38px, 6vw, 76px);
}

.subhero h1 {
  max-width: 1000px;
}

.subhero p {
  max-width: 820px;
}

.two-column {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  padding-bottom: clamp(62px, 8vw, 100px);
}

.info-card,
.contact-panel,
.legal-aside {
  padding: 30px;
}

.info-card ul {
  display: grid;
  gap: 12px;
  padding-left: 18px;
}

.values-grid {
  padding-bottom: clamp(70px, 10vw, 120px);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) 0.95fr;
  gap: 28px;
  padding-bottom: clamp(70px, 10vw, 120px);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 15px;
  color: var(--ink);
  background: #fff;
}

.consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  font-weight: 600;
}

.consent input {
  width: 20px;
  height: 20px;
  margin-top: 4px;
}

.consent a {
  color: var(--accent-2);
  font-weight: 900;
}

.contact-panel {
  align-self: start;
  color: #fff;
  background: var(--dark);
}

.contact-panel p,
.contact-panel h2 {
  color: #fff;
}

.mini-list {
  margin-top: 28px;
  padding: 20px;
  color: var(--ink);
  background: var(--paper);
  border-radius: 8px;
}

.mini-list p {
  margin-bottom: 0;
}

.legal-content {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 26px;
  padding-bottom: clamp(70px, 10vw, 120px);
}

.legal-aside {
  align-self: start;
  position: sticky;
  top: 100px;
}

.legal-sections {
  display: grid;
  gap: 18px;
}

.legal-sections article {
  padding: 28px;
}

.site-footer {
  padding: clamp(46px, 7vw, 76px) clamp(18px, 4vw, 64px) 28px;
  color: #fff;
  background: var(--dark);
}

.site-footer p,
.site-footer a,
.site-footer span,
.site-footer strong {
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.7fr 1fr;
  gap: 28px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.footer-grid div {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-grid span {
  font-weight: 900;
  opacity: 0.72;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(1180px, 100%);
  margin: 38px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.92rem;
  opacity: 0.82;
}

.notice {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
  padding: 18px;
  color: #fff;
  background: rgba(12, 14, 20, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.notice p,
.notice strong {
  color: #fff;
  margin: 0;
}

.notice.is-hidden {
  display: none;
}

.marble .hero {
  grid-template-columns: 0.9fr 1.1fr;
}

.marble .hero-visual {
  border: 12px solid #fff;
}

.noir {
  background: radial-gradient(circle at 20% 0%, rgba(46, 230, 166, 0.14), transparent 32%), var(--dark);
  color: #fff;
}

.noir .site-header,
.noir .product-card,
.noir .values-grid article,
.noir .process-grid article,
.noir .faq-grid details,
.noir .contact-form,
.noir .legal-sections article,
.noir .legal-aside,
.noir .feature-strip div {
  background: #111923;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
}

.noir p,
.noir h1,
.noir h2,
.noir h3,
.noir .main-nav a,
.noir .brand strong,
.noir .brand small,
.noir .faq-grid summary,
.noir .contact-form label,
.noir .legal-aside p,
.noir .legal-sections p {
  color: #fff;
}

.noir .button.ghost {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.26);
}

.vault .product-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.vault .product-card {
  grid-template-columns: 0.9fr 1.1fr;
}

.vault .product-media img {
  height: 100%;
  min-height: 300px;
}

.curio .hero {
  grid-template-columns: 1fr 0.9fr;
}

.curio .product-card {
  background: #fffaf6;
}

.atelier .hero {
  color: #fff;
}

.atelier {
  background: linear-gradient(180deg, #100f13 0%, #1c1410 42%, var(--paper) 42%);
}

.atelier .hero h1,
.atelier .hero p,
.atelier .brand strong,
.atelier .brand small {
  color: #fff;
}

.atelier .site-header {
  background: rgba(16, 16, 20, 0.88);
  border-color: rgba(255, 255, 255, 0.14);
}

.atelier .main-nav a {
  color: #fff;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 18px;
    right: 18px;
    display: none;
    grid-template-columns: 1fr;
    padding: 18px;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: grid;
  }

  .noir .main-nav,
  .atelier .main-nav {
    background: var(--dark);
  }

  .hero,
  .intro-band,
  .story-section,
  .two-column,
  .contact-layout,
  .legal-content {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .product-grid,
  .process-grid,
  .values-grid,
  .faq-grid,
  .feature-strip,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .vault .product-card {
    grid-template-columns: 1fr;
  }

  .legal-aside {
    position: static;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand small {
    display: none;
  }

  .hero,
  .subhero {
    padding-top: 46px;
  }

  .hero-visual img {
    min-height: 320px;
  }

  .product-grid,
  .process-grid,
  .values-grid,
  .faq-grid,
  .feature-strip,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .story-media {
    grid-template-columns: 1fr;
  }

  .story-img-1,
  .story-img-2,
  .story-img-3 {
    height: 260px;
  }

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

  .notice button {
    width: 100%;
  }
}
