:root {
  --bg: #faf8f5;
  --surface: #ffffff;
  --line: rgba(40,28,20,0.1);
  --line-strong: rgba(40,28,20,0.18);
  --text: #1c1410;
  --muted: #7a6a5e;
  --accent: #8f6a52;
  --accent-deep: #5c3d2c;
  --radius: 4px;
  --radius-lg: 8px;
  --shadow: 0 1px 4px rgba(40,28,20,0.06);
  --shadow-lg: 0 8px 40px rgba(40,28,20,0.09);
  --max-width: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
}

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(250,248,245,0.90);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}

.brand {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text);
}
.brand span { color: var(--accent); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.main-nav a:hover { color: var(--text); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  transition: 0.2s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}
.btn-primary:hover {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
}

.btn-secondary,
.btn-outline {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--text);
}
.btn-secondary:hover,
.btn-outline:hover {
  border-color: var(--text);
}

/* ── HERO ── */
.hero { padding: 80px 0 40px; }

.hero-grid,
.split-grid,
.lookbook-grid,
.visit-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: center;
}

.eyebrow,
.section-label {
  display: inline-block;
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

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

.hero-copy h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3.4rem, 7vw, 6.8rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 0.93;
  margin: 0 0 22px;
  color: var(--text);
  max-width: 9ch;
}

.hero-text,
.section-heading p,
.panel p,
.lookbook-copy p,
.info-card p,
.visit-copy p,
.contact-copy p,
.site-footer p {
  color: var(--muted);
  font-size: 0.97rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

/* ── HERO VISUAL ── */
.hero-visual,
.visit-photo {
  min-height: 640px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}

.hero-visual {
  position: relative;
  background:
    linear-gradient(180deg, rgba(28,20,16,0.04), rgba(28,20,16,0.28)),
    url("https://images.unsplash.com/photo-1529139574466-a303027c1d8b?auto=format&fit=crop&w=1200&q=80") center/cover;
}

.hero-card {
  position: absolute;
  left: 22px;
  bottom: 22px;
  padding: 18px 22px;
  border-radius: var(--radius-lg);
  background: rgba(250,248,245,0.95);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
  max-width: 240px;
}

.hero-card p {
  margin: 0 0 6px;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-card strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
}

/* ── SECTIONS ── */
.section { padding: 44px 0; }

.soft-section {
  background: linear-gradient(180deg, rgba(232,220,208,0.4), transparent);
}

/* ── CARDS — transparent, just bordered ── */
.card {
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.accent-card {
  background: linear-gradient(145deg, rgba(143,106,82,0.06), rgba(250,248,245,0));
  border-color: rgba(143,106,82,0.2);
}

/* ── SECTION HEADING ── */
.section-heading {
  margin-bottom: 28px;
  max-width: 620px;
}

.section-heading h2,
.panel h2,
.lookbook-copy h2,
.visit-copy h2,
.contact-copy h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0 0 12px;
  color: var(--text);
}

/* ── COLLECTION GRID ── */
.collection-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 14px;
  grid-auto-rows: 280px;
}

.collection-card,
.lookbook-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background-size: cover;
  background-position: center;
}

.tall-card {
  grid-row: span 2;
  background-image: url("https://images.unsplash.com/photo-1483985988355-763728e1935b?auto=format&fit=crop&w=1200&q=80");
}

.essentials-card {
  background-image: url("https://images.unsplash.com/photo-1524504388940-b1c1722653e1?auto=format&fit=crop&w=1000&q=80");
}

.weekend-card {
  background-image: url("https://images.unsplash.com/photo-1496747611176-843222e1e57c?auto=format&fit=crop&w=1000&q=80");
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,15,12,0.04), rgba(20,15,12,0.52));
}

.card-content {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 1;
  color: #faf8f5;
}

.card-content p {
  margin: 0 0 6px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.8;
  color: #faf8f5;
}

.card-content h3 {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 1;
  max-width: 14ch;
}

/* ── LOOKBOOK ── */
.lookbook-grid { align-items: start; }
.lookbook-stack { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.lookbook-image { min-height: 440px; }

.image-one {
  background-image: url("https://images.unsplash.com/photo-1515886657613-9f3515b0c78f?auto=format&fit=crop&w=1000&q=80");
}
.image-two {
  background-image: url("https://images.unsplash.com/photo-1524504388940-b1c1722653e1?auto=format&fit=crop&w=1000&q=80");
}

.feature-list {
  margin: 24px 0 0;
  padding-left: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.93rem;
}

.feature-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-list li::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

/* ── INFO GRID ── */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}

.info-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.65rem;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--text);
}

/* ── VISIT ── */
.visit-photo {
  background:
    linear-gradient(180deg, rgba(28,20,16,0.04), rgba(28,20,16,0.14)),
    url("https://images.unsplash.com/photo-1445205170230-053b83016050?auto=format&fit=crop&w=1200&q=80") center/cover;
}

.visit-details {
  display: grid;
  gap: 0;
  margin: 22px 0 26px;
}

.visit-details div {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.visit-details span {
  display: block;
  margin-bottom: 4px;
  color: var(--accent);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.visit-details strong { font-size: 0.95rem; }

/* ── CONTACT ── */
.contact-section { padding-bottom: 60px; }

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label { display: grid; gap: 7px; }

.contact-form span {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

input, textarea {
  width: 100%;
  border: none;
  border-bottom: 1.5px solid var(--line-strong);
  background: transparent;
  color: var(--text);
  border-radius: 0;
  padding: 12px 0;
  font: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s;
}

input:focus, textarea:focus {
  outline: none;
  border-bottom-color: var(--text);
}

textarea { min-height: 120px; resize: vertical; }

/* ── FOOTER ── */
.site-footer {
  padding: 14px 0 44px;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid var(--line-strong);
}

.site-footer p { font-size: 0.88rem; margin-top: 6px; }

/* ── RESPONSIVE ── */
@media (max-width: 1080px) {
  .hero-grid,
  .split-grid,
  .lookbook-grid,
  .visit-grid,
  .contact-grid,
  .collection-grid,
  .info-grid {
    grid-template-columns: 1fr 1fr;
  }
  .tall-card { grid-row: span 1; }
}

@media (max-width: 820px) {
  .main-nav { display: none; }
  .hero, .section { padding-top: 32px; }
  .hero-grid,
  .split-grid,
  .lookbook-grid,
  .visit-grid,
  .contact-grid,
  .collection-grid,
  .info-grid,
  .footer-wrap,
  .lookbook-stack {
    grid-template-columns: 1fr;
  }
  .footer-wrap { justify-content: unset; }
  .hero-visual, .visit-photo { min-height: 420px; }
}

@media (max-width: 560px) {
  .hero-copy h1 { font-size: clamp(2.8rem, 13vw, 4rem); }
  .card { padding: 22px; }
  .btn { width: 100%; }
  .hero-actions { flex-direction: column; }
}