:root {
  --clay: #c4a882;
  --sand: #e8d9c5;
  --ash: #b5a898;
  --earth: #5c4a3a;
  --smoke: #f5f0ea;
  --ink: #2a211a;
  --terra: #9b6b4a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--smoke);
  color: var(--ink);
  font-weight: 300;
  overflow-x: hidden;
}

/* ── NOISE TEXTURE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.5;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 60px;
  mix-blend-mode: multiply;
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 100px;
  width: auto;
  mix-blend-mode: multiply;
  transition: opacity 0.3s;
}

.nav-logo-img:hover { opacity: 0.8; }

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--earth);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s;
  font-weight: 800;
}

.nav-links a:hover { opacity: 1; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 60px 80px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 24px;
  animation: fadeUp 1.2s ease forwards;
  opacity: 0;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 6vw, 6rem);
  font-weight: 300;
  line-height: 1.0;
  color: var(--earth);
  margin-bottom: 32px;
  animation: fadeUp 1.2s 0.2s ease forwards;
  opacity: 0;
}

.hero-title em {
  font-style: italic;
  color: var(--terra);
}

.hero-subtitle {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--ash);
  max-width: 360px;
  margin-bottom: 48px;
  animation: fadeUp 1.2s 0.4s ease forwards;
  opacity: 0;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--earth);
  text-decoration: none;
  animation: fadeUp 1.2s 0.6s ease forwards;
  opacity: 0;
  transition: gap 0.3s;
}

.hero-cta:hover { gap: 24px; }

.hero-cta::after {
  content: '→';
  font-size: 1rem;
}

.hero-right {
  position: relative;
  background: var(--clay);
  overflow: hidden;
}

.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--clay) 0%, var(--earth) 100%);
  opacity: 0.6;
}

/* Decorative ceramic shape */
.ceramic-shape {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 420px;
  animation: floatShape 8s ease-in-out infinite;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 60px;
  writing-mode: vertical-rl;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ash);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.hero-scroll::before {
  content: '';
  display: block;
  width: 1px;
  height: 50px;
  background: var(--clay);
  animation: scrollLine 2s ease-in-out infinite;
}

/* ── MARQUEE ── */
.marquee-wrap {
  overflow: hidden;
  background: var(--earth);
  padding: 18px 0;
  position: relative;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}

.marquee-track span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--sand);
  padding: 0 48px;
  opacity: 0.8;
}

.marquee-track span.dot {
  color: var(--clay);
  font-style: normal;
  padding: 0;
  opacity: 1;
}

/* ── ABOUT ── */
.about {
  padding: 120px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-label {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 20px;
}

.about-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--earth);
  margin-bottom: 32px;
}

.about-heading em { font-style: italic; color: var(--terra); }

.about-text {
  font-size: 0.95rem;
  line-height: 1.95;
  color: #7a6a5e;
  margin-bottom: 20px;
}

.about-signature {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-style: italic;
  color: var(--clay);
  margin-top: 40px;
}

.about-visual {
  position: relative;
  height: 560px;
}

.about-card {
  position: absolute;
  background: var(--sand);
  border: 1px solid rgba(196,168,130,0.3);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-card-main {
  width: 80%;
  height: 78%;
  top: 0; right: 0;
  background: linear-gradient(145deg, var(--clay) 0%, var(--earth) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-card-accent {
  width: 55%;
  height: 45%;
  bottom: 0; left: 0;
  background: var(--sand);
  border: 1px solid rgba(196,168,130,0.4);
  flex-direction: column;
  gap: 8px;
}

.about-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: var(--earth);
  font-weight: 300;
}

.about-stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ash);
}

.clay-icon {
  width: 100px;
  opacity: 0.5;
}

/* ── COLLECTIONS ── */
.collections {
  padding: 80px 60px 120px;
  background: var(--earth);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}

.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 12px;
}

.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--sand);
  line-height: 1.2;
}

.section-heading em { font-style: italic; }

.section-link {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clay);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: gap 0.3s;
}

.section-link:hover { gap: 18px; }
.section-link::after { content: '→'; }

.collections-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2px;
}

.coll-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.coll-item:first-child { grid-row: span 1; }

.coll-bg {
  height: 420px;
  display: flex;
  align-items: flex-end;
  padding: 32px;
  transition: transform 0.6s ease;
  position: relative;
}

.coll-item:hover .coll-bg { transform: scale(1.03); }

.coll-bg-1 {
  background: linear-gradient(to top, rgba(44,32,22,0.85) 0%, rgba(92,74,58,0.3) 60%),
              linear-gradient(135deg, #9b6b4a 0%, #c4a882 50%, #7a5840 100%);
}

.coll-bg-2 {
  background: linear-gradient(to top, rgba(44,32,22,0.85) 0%, transparent 60%),
              linear-gradient(135deg, #b5a898 0%, #e8d9c5 50%, #9b8878 100%);
}

.coll-bg-3 {
  background: linear-gradient(to top, rgba(44,32,22,0.85) 0%, transparent 60%),
              linear-gradient(135deg, #5c4a3a 0%, #9b6b4a 50%, #c4a882 100%);
}

.coll-info { position: relative; z-index: 2; }

.coll-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--sand);
  margin-bottom: 6px;
}

.coll-desc {
  font-size: 0.75rem;
  color: #FFF;
  letter-spacing: 0.05em;
}

/* ── PHILOSOPHY ── */
.philosophy {
  padding: 120px 60px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.phil-sticky {
  position: sticky;
  top: 120px;
}

.phil-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 8rem;
  color: var(--sand);
  line-height: 1;
  margin-bottom: -20px;
}

.phil-label {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terra);
}

.phil-items { display: flex; flex-direction: column; gap: 64px; padding-top: 20px; }

.phil-item {
  border-top: 1px solid rgba(196,168,130,0.25);
  padding-top: 40px;
}

.phil-item-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--clay);
  font-style: italic;
  margin-bottom: 16px;
}

.phil-item-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--earth);
  margin-bottom: 16px;
}

.phil-item-text {
  font-size: 0.95rem;
  line-height: 1.95;
  color: #7a6a5e;
}

/* ── QUOTE ── */
.quote-section {
  background: var(--clay);
  padding: 100px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 30rem;
  color: rgba(255,255,255,0.07);
  position: absolute;
  top: -80px; left: 20px;
  line-height: 1;
  pointer-events: none;
}

.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-style: italic;
  font-weight: 300;
  color: var(--smoke);
  max-width: 800px;
  margin: 0 auto 32px;
  line-height: 1.5;
  position: relative;
  z-index: 2;
}

.quote-source {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245,240,234,0.6);
  position: relative;
  z-index: 2;
}

/* ── CONTACT / FOOTER ── */
.contact {
  padding: 120px 60px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 300;
  color: var(--earth);
  line-height: 1.1;
  margin-bottom: 32px;
}

.contact-heading em { font-style: italic; color: var(--terra); }

.contact-text {
  font-size: 0.95rem;
  line-height: 1.9;
  color: #7a6a5e;
  margin-bottom: 40px;
}

.contact-links { display: flex; flex-direction: column; gap: 20px; }

.contact-link {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: var(--earth);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  transition: gap 0.3s;
}

.contact-link:hover { gap: 24px; }

.contact-link-label {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ash);
  min-width: 90px;
}

.contact-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.contact-form-note {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--ash);
  line-height: 1.7;
  margin-bottom: 40px;
  padding-left: 24px;
  border-left: 2px solid var(--clay);
}

footer {
  border-top: 1px solid rgba(196,168,130,0.2);
  padding: 32px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  color: var(--ash);
  letter-spacing: 0.1em;
}

/* ── LANGUAGE TOGGLE ── */
.lang-toggle {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 200;
  background: var(--earth);
  color: var(--sand);
  border: none;
  padding: 10px 18px;
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
}

.lang-toggle:hover { background: var(--terra); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes floatShape {
  0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
  33%       { transform: translate(-50%, -53%) rotate(1.5deg); }
  66%       { transform: translate(-50%, -47%) rotate(-1deg); }
}

@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.2); }
}

/* ── HAMBURGER (hidden on desktop) ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 110;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--earth);
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}

.nav-hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav {
    padding: 16px 24px;
    flex-wrap: wrap;
    mix-blend-mode: normal;
    background: var(--smoke);
  }

  .nav-logo-img { height: 56px; }

  .nav-hamburger { display: flex; }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    width: 100%;
    background: var(--smoke);
    padding: 12px 0 20px;
    order: 3;
  }

  .nav-links.is-open { display: flex; }

  .nav-links li { border-top: 1px solid rgba(196,168,130,0.2); }

  .nav-links a {
    display: block;
    padding: 14px 0;
    font-size: 0.8rem;
  }

  .hero { grid-template-columns: 1fr; }
  .hero-right { height: 50vh; }
  .hero-left { padding: 100px 28px 60px; }
  .about, .contact { grid-template-columns: 1fr; padding: 60px 28px; }
  .philosophy { grid-template-columns: 1fr; padding: 60px 28px; }
  .collections { padding: 60px 28px 80px; }
  .collections-grid { grid-template-columns: 1fr; }
  .quote-section { padding: 80px 28px; }
  footer { flex-direction: column; gap: 16px; padding: 28px; text-align: center; }
  .about-visual { height: 320px; }
  .hero-scroll { display: none; }
}
