/* ── Reset ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { margin: 0; background: #f5f3f0; color: #111; font-family: Arial, sans-serif; font-weight: 300; line-height: 1.6; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── Header ───────────────────────────────────────────────────── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 40px; height: 76px;
  background: rgba(245,243,240,0.97); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,0.09);
}
.header-left { display: flex; align-items: center; }
.logo { height: 64px; width: auto; object-fit: contain; display: block; }
.logo-fallback { font-size: 1.5rem; font-weight: 900; letter-spacing: .25em; text-transform: uppercase; color: #111; display: none; }
nav { display: flex; align-items: center; gap: 32px; }
nav a { font-size: .74rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: #111; position: relative; padding-bottom: 3px; transition: color .2s; }
nav a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: #e63329; transition: width .25s ease; }
nav a:hover { color: #e63329; }
nav a:hover::after { width: 100%; }

/* ── Hero Cinematic Slideshow ─────────────────────────────────── */
.hero {
  height: 100vh; min-height: 620px;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center; text-align: center;
}

/* Slide stack */
.hero-slides { position: absolute; inset: 0; }

.slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.slide.active { opacity: 1; }

.slide img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
  /* Ken Burns: each active slide gets a slow zoom */
  transform: scale(1.08);
  transition: transform 6s ease-out, opacity 1.4s ease;
  will-change: transform;
}
.slide.active img { transform: scale(1); }

/* Dark overlay */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.25) 45%,
    rgba(0,0,0,0.65) 100%
  );
}

/* Text content */
.hero-content {
  position: relative; z-index: 2;
  padding: 0 24px;
}
.hero-eyebrow {
  font-size: .68rem; letter-spacing: .32em; text-transform: uppercase;
  color: #e63329; font-weight: 700; margin-bottom: 20px;
  display: inline-block; padding: 6px 18px;
  border: 1px solid rgba(230,51,41,.4); border-radius: 2px;
}
.hero h1 {
  font-size: clamp(3.4rem, 9vw, 9rem); font-weight: 900; line-height: .98;
  color: #fff; letter-spacing: -.02em; margin-bottom: 22px;
  text-shadow: 0 3px 24px rgba(0,0,0,.45);
}
.hero h1 .art { color: #e63329; font-style: italic; }
.hero-sub {
  font-size: .92rem; letter-spacing: .08em;
  color: rgba(255,255,255,.72); margin-bottom: 44px;
  max-width: 400px; margin-left: auto; margin-right: auto;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* Slide dots */
.slide-dots {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; gap: 10px;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.35); cursor: pointer;
  transition: background .3s, transform .3s;
  border: none; padding: 0;
}
.dot.active { background: #e63329; transform: scale(1.3); }

/* ── Buttons ──────────────────────────────────────────────────── */
.btn-primary {
  display: inline-block; padding: 14px 38px;
  background: #e63329; color: #fff;
  font-size: .72rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  border: 2px solid #e63329; cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.btn-primary:hover { background: #fff; border-color: #fff; color: #111; }
.btn-outline {
  display: inline-block; padding: 14px 38px;
  background: transparent; color: #fff;
  font-size: .72rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  border: 2px solid rgba(255,255,255,.55); cursor: pointer;
  transition: border-color .2s, background .2s, color .2s;
}
.btn-outline:hover { background: #fff; border-color: #fff; color: #111; }

/* ── Sections ─────────────────────────────────────────────────── */
section { padding: 88px 48px; }
#collections   { background: #f5f3f0; }
#gallery       { background: #111; }
.philosophy    { background: #fff; text-align: center; padding: 88px 48px; border-top: 1px solid rgba(0,0,0,.07); border-bottom: 1px solid rgba(0,0,0,.07); }
.contact-section { background: #1a1a1a; }

.section-label { font-size: .66rem; letter-spacing: .32em; text-transform: uppercase; color: #e63329; margin-bottom: 10px; font-weight: 700; }
.section-title { font-size: clamp(1.8rem,4vw,3rem); font-weight: 900; line-height: 1.1; color: #111; margin-bottom: 48px; }
.section-title.light { color: #f5f3f0; }
#gallery .section-title { color: #f5f3f0; }

/* ── Collections — grouped layout ────────────────────────────── */
.col-group-label {
  font-size: .68rem; letter-spacing: .28em; text-transform: uppercase;
  color: #888; font-weight: 700; margin-bottom: 16px;
  padding-left: 10px; border-left: 3px solid #e63329;
}

/* 2-column group */
.col-group-2 {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; max-width: 900px; margin: 0 auto;
}
/* 3-column group */
.col-group-3 {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; max-width: 1100px; margin: 0 auto;
}
/* Wide single */
.col-group-wide { max-width: 1000px; margin: 0 auto; }

/* Standard card */
.collection-card { cursor: pointer; }
.card-img {
  width: 100%; aspect-ratio: 3/4;
  overflow: hidden; background: #e0dbd4;
}
.card-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  transition: transform .6s ease;
}
.collection-card:hover .card-img img { transform: scale(1.05); }
.card-info { padding: 16px 0 4px; }
.card-name { font-size: 1.05rem; font-weight: 700; color: #111; margin-bottom: 3px; }
.card-sub  { font-size: .72rem; letter-spacing: .1em; color: #888; }
.card-link {
  font-size: .7rem; letter-spacing: .15em; text-transform: uppercase;
  color: #e63329; font-weight: 700;
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 10px; transition: gap .2s;
}
.card-link:hover { gap: 12px; }
.card-link::after { content: '→'; }

/* Landscape editorial card */
.card-landscape {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; overflow: hidden;
  background: #1a1a1a;
}
.card-landscape .card-img {
  aspect-ratio: auto; height: 420px;
}
.card-landscape .card-img img {
  height: 100%; object-position: center top;
}
.card-body-side {
  padding: 40px 36px;
  display: flex; flex-direction: column; justify-content: center;
  background: #1a1a1a;
}
.card-body-side .card-name { font-size: 1.5rem; color: #f5f3f0; margin-bottom: 8px; }
.card-body-side .card-sub  { font-size: .78rem; color: rgba(245,243,240,.5); margin-bottom: 16px; }
.card-body-side .card-desc { font-size: .85rem; color: rgba(245,243,240,.6); line-height: 1.75; margin-bottom: 24px; }
.card-body-side .card-link { color: #e63329; }

/* ── Gallery ──────────────────────────────────────────────────── */
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 8px; max-width: 1100px; margin: 0 auto;
}
.gallery-cat-label {
  font-size: .68rem; letter-spacing: .28em; text-transform: uppercase;
  color: rgba(245,243,240,.4); font-weight: 700;
  margin-bottom: 14px; padding-left: 10px; border-left: 3px solid #e63329;
}
.gallery-item { overflow: hidden; background: #222; cursor: pointer; position: relative; }
.gallery-item img {
  width: 100%; height: 100%;
  aspect-ratio: 1/1; object-fit: cover; object-position: center top;
  display: block; transition: transform .5s ease, opacity .3s;
}
.gallery-item:hover img { transform: scale(1.06); opacity: .82; }
.gallery-item:hover::after {
  content: '⤢'; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: #fff; background: rgba(0,0,0,.18); pointer-events: none;
}

/* ── Lightbox ─────────────────────────────────────────────────── */
.lightbox { display: none; position: fixed; inset: 0; z-index: 999; background: rgba(0,0,0,.93); align-items: center; justify-content: center; padding: 24px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; }
.lightbox-close { position: absolute; top: 20px; right: 28px; font-size: 2rem; color: #fff; cursor: pointer; background: none; border: none; opacity: .8; transition: opacity .2s; }
.lightbox-close:hover { opacity: 1; }
.lightbox-prev, .lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); font-size: 3rem; color: #fff; cursor: pointer; background: none; border: none; padding: 16px; font-weight: 200; opacity: .6; transition: opacity .2s; }
.lightbox-prev:hover, .lightbox-next:hover { opacity: 1; }
.lightbox-prev { left: 8px; }
.lightbox-next { right: 8px; }

/* ── Philosophy ───────────────────────────────────────────────── */
.philosophy blockquote { font-size: clamp(1.4rem,3.5vw,2.5rem); font-weight: 300; font-style: italic; line-height: 1.45; color: #111; max-width: 700px; margin: 0 auto 18px; }
.philosophy cite { font-size: .68rem; letter-spacing: .25em; text-transform: uppercase; color: #e63329; font-style: normal; font-weight: 700; }

/* ── Contact Form ─────────────────────────────────────────────── */
.contact-section { padding: 88px 48px; }
.contact-intro { font-size: .95rem; color: rgba(245,243,240,.6); max-width: 560px; margin-bottom: 48px; line-height: 1.8; }
.shop-form { max-width: 720px; }
.form-row { margin-bottom: 20px; }
.form-row.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(245,243,240,.5); font-weight: 600; }
.form-group input, .form-group select, .form-group textarea {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.15);
  color: #f5f3f0; padding: 12px 14px; font-size: .9rem;
  font-family: Arial, sans-serif; border-radius: 3px; outline: none; width: 100%;
  transition: border-color .2s, background .2s;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(245,243,240,.28); }
.form-group select option { background: #1a1a1a; color: #f5f3f0; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: #e63329; background: rgba(255,255,255,.09); }
.form-group textarea { resize: vertical; min-height: 110px; }
.btn-submit {
  display: inline-block; padding: 15px 44px;
  background: #e63329; color: #fff;
  font-size: .78rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  border: 2px solid #e63329; cursor: pointer; transition: background .2s, color .2s; margin-top: 8px; border-radius: 2px;
}
.btn-submit:hover { background: #fff; color: #111; border-color: #fff; }
.form-note { font-size: .75rem; color: rgba(245,243,240,.3); margin-top: 14px; }

/* ── Footer ───────────────────────────────────────────────────── */
footer {
  background: #111; color: rgba(255,255,255,.5);
  padding: 64px 48px 36px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px;
  border-top: 3px solid #e63329;
}
.footer-logo-img { height: 56px; width: auto; object-fit: contain; margin-bottom: 14px; display: block; }
.footer-brand p { font-size: .8rem; line-height: 1.9; color: rgba(255,255,255,.32); }
.footer-col h4 { font-size: .65rem; letter-spacing: .28em; text-transform: uppercase; color: #e63329; margin-bottom: 18px; font-weight: 700; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: .8rem; color: rgba(255,255,255,.38); transition: color .2s; }
.footer-col ul li a:hover { color: #e63329; }
.footer-bottom { grid-column: 1/-1; border-top: 1px solid rgba(255,255,255,.07); padding-top: 22px; font-size: .7rem; letter-spacing: .08em; color: rgba(255,255,255,.2); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 900px) {
  header { padding: 8px 20px; height: 68px; }
  .logo { height: 52px; }
  section { padding: 64px 20px; }
  .col-group-2, .col-group-3 { grid-template-columns: 1fr 1fr; }
  .card-landscape { grid-template-columns: 1fr; }
  .card-landscape .card-img { height: 300px; }
  .card-body-side { padding: 28px 24px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row.two-col { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr 1fr; }
  .footer-bottom { grid-column: 1/-1; flex-direction: column; gap: 8px; }
}
@media (max-width: 600px) {
  header { padding: 8px 16px; }
  nav { gap: 14px; }
  nav a { font-size: .66rem; letter-spacing: .1em; }
  .logo { height: 44px; }
  .hero h1 { font-size: clamp(2.6rem, 12vw, 4.5rem); }
  .col-group-2, .col-group-3 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  footer { grid-template-columns: 1fr; }
  .contact-section { padding: 64px 20px; }
}
