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

:root {
  --cream: #faf7f2;
  --off-white: #ede8e0;
  --warm-black: #1c1410;
  --brown: #5c3d2e;
  --copper: #c4956a;
  --gold: #c9a84c;
  --muted: #9c8878;
  --rule: #ddd6cc;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--cream);
  color: var(--warm-black);
  font-family: 'Jost', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 300;
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', 'Palatino Linotype', Palatino, Georgia, serif;
  font-weight: 400;
  line-height: 1.15;
}

h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1rem; font-weight: 500; }

em { font-style: italic; }

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

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

/* ─── HEADER ─────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1rem 2.5rem;
  background: var(--cream);
  border-bottom: 1px solid var(--rule);
}

.nav-left,
.nav-right {
  display: flex;
  gap: 2rem;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 400;
}

.nav-right {
  justify-content: flex-end;
}

.site-header a:not(.logo) {
  transition: color 0.2s;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.site-header a:not(.logo):hover {
  color: var(--copper);
  border-bottom-color: var(--copper);
}

.logo {
  justify-self: center;
  transition: opacity 0.2s;
}

.logo:hover {
  opacity: 0.75;
}

/* ─── EYEBROW / LABELS ───────────────────────────────── */

.eyebrow,
.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 400;
  font-family: 'Jost', sans-serif;
}

/* ─── HERO ───────────────────────────────────────────── */

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 72px);
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.4rem;
  padding: 5rem 4rem 5rem 7vw;
}

.hero-desc {
  font-size: 1rem;
  color: var(--muted);
  max-width: 32ch;
  line-height: 1.8;
}

.btn-primary {
  display: inline-block;
  margin-top: 0.25rem;
  padding: 0.9rem 2.4rem;
  background: var(--warm-black);
  color: var(--cream);
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  align-self: flex-start;
  transition: background 0.25s;
}

.btn-primary:hover {
  background: var(--copper);
}

.hero-image {
  position: relative;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: sepia(0.06) contrast(1.04);
}

.hero-image-caption {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 0.82rem;
  color: var(--cream);
  background: rgba(28, 20, 16, 0.52);
  padding: 0.3rem 0.75rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* ─── SHOP ───────────────────────────────────────────── */

.shop {
  padding: 6rem 5vw;
  background: var(--off-white);
}

.section-intro {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-intro .section-label {
  display: block;
  margin-bottom: 0.8rem;
}

.section-intro p {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 38ch;
  margin-inline: auto;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem 1.25rem;
}

.item-card {
  background: var(--cream);
}

.item-image-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.item-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.55s ease;
}

.item-card:hover .item-image-wrap img {
  transform: scale(1.05);
}

.item-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 0.75rem;
  background: rgba(28, 20, 16, 0);
  transition: background 0.3s;
}

.item-card:hover .item-overlay {
  background: rgba(28, 20, 16, 0.06);
}

.coming-soon-tag {
  background: var(--warm-black);
  color: var(--cream);
  font-family: 'Jost', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 400;
  padding: 0.28rem 0.6rem;
}

.item-info {
  padding: 0.85rem 0 1rem;
  border-top: 1px solid var(--rule);
}

.item-info h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.98rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
  line-height: 1.3;
}

.item-info p {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ─── ABOUT ──────────────────────────────────────────── */

.about {
  padding: 7rem 5vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text .section-label {
  display: block;
  margin-bottom: 1rem;
}

.about-text h2 {
  margin-bottom: 2rem;
}

.about-text p {
  font-size: 1rem;
  color: var(--brown);
  line-height: 1.85;
  max-width: 46ch;
  margin-bottom: 1.2rem;
}

.about-text p:last-child {
  margin-bottom: 0;
}

/* Photo collage — 2x2 with varied sizing */
.photo-grid {
  display: grid;
  grid-template-columns: 5fr 4fr;
  grid-template-rows: auto auto;
  gap: 0.5rem;
}

.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.08) contrast(1.03);
  display: block;
}

.photo-a {
  grid-column: 1;
  grid-row: 1;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.photo-b {
  grid-column: 2;
  grid-row: 1;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.photo-c {
  grid-column: 1;
  grid-row: 2;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.photo-d {
  grid-column: 2;
  grid-row: 2;
  aspect-ratio: 4/3;
  overflow: hidden;
}

/* ─── NOTIFY ─────────────────────────────────────────── */

.notify {
  background: var(--warm-black);
  padding: 6rem 5vw;
  text-align: center;
}

.notify-inner {
  max-width: 520px;
  margin: 0 auto;
}

.notify .section-label {
  display: block;
  margin-bottom: 1rem;
  color: var(--copper);
}

.notify h2 {
  color: var(--off-white);
  margin-bottom: 1rem;
}

.notify > .notify-inner > p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 2.25rem;
  line-height: 1.8;
}

.notify-form {
  display: flex;
  max-width: 420px;
  margin: 0 auto;
}

.notify-form input[type="email"] {
  flex: 1;
  padding: 0.9rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-right: none;
  background: rgba(255, 255, 255, 0.06);
  color: var(--off-white);
  font-family: 'Jost', sans-serif;
  font-size: 0.875rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s;
}

.notify-form input[type="email"]::placeholder {
  color: var(--muted);
}

.notify-form input[type="email"]:focus {
  border-color: var(--copper);
}

.notify-form button {
  padding: 0.9rem 1.6rem;
  background: var(--copper);
  color: var(--cream);
  border: none;
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 400;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.notify-form button:hover {
  background: var(--gold);
}

.notify-confirm {
  margin-top: 1.25rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  color: var(--copper);
  font-size: 1rem;
  min-height: 1.5rem;
}

/* ─── FOOTER ─────────────────────────────────────────── */

.site-footer {
  background: #110d0a;
  padding: 3rem 5vw;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.footer-copy {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: rgba(156, 136, 120, 0.45);
  text-transform: uppercase;
}

/* ─── RESPONSIVE ─────────────────────────────────────── */

@media (max-width: 1100px) {
  .shop-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-text {
    padding: 4rem 6vw;
    order: 1;
  }

  .hero-image {
    order: 0;
    height: 60vw;
    min-height: 280px;
    max-height: 480px;
  }

  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 5rem 6vw;
  }

  .about-text p {
    max-width: none;
  }
}

@media (max-width: 680px) {
  .site-header {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
  }

  .nav-right {
    justify-content: center;
  }

  .hero-text {
    padding: 3rem 5vw;
  }

  .shop {
    padding: 4rem 4vw;
  }

  .shop-grid {
    gap: 1rem 0.75rem;
  }

  .notify-form {
    flex-direction: column;
    gap: 0;
  }

  .notify-form input[type="email"] {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: none;
  }

  .notify-form input[type="email"]:focus {
    border-color: var(--copper);
  }

  .about {
    padding: 4rem 5vw;
  }
}
