:root {
  color-scheme: only light;
  --bg: #f6f2ec;
  --ink: #1c1b19;
  --muted: #7a7268;
  --accent: #c4a07a;
  --accent-dark: #a07c58;
  --line: rgba(28, 27, 25, 0.12);
  --panel: #ffffff;
  --shadow: 0 18px 38px rgba(28, 27, 25, 0.12);
}

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

body {
  font-family: "Manrope", "Helvetica Neue", sans-serif;
  background: radial-gradient(circle at top, #ffffff 0%, var(--bg) 55%, #efe9e1 100%);
  color: var(--ink);
  line-height: 1.6;
}

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

.page {
  min-height: 100vh;
}

.container {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(246, 242, 236, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  gap: 18px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.brand-tag {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.6px;
}

.nav a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--ink);
}

.nav-cta {
  padding: 8px 14px;
  border: 1px solid var(--ink);
  border-radius: 999px;
}

.hero {
  padding: 90px 0 70px;
}

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

.kicker {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-dark);
  font-weight: 600;
}

.hero-copy h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 4.2vw, 4.2rem);
  line-height: 1.05;
  margin: 18px 0 20px;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--ink);
  color: #fdfcf9;
  box-shadow: 0 16px 24px rgba(28, 27, 25, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-outline {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}

.btn-outline:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.hero-meta {
  margin-top: 34px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  display: grid;
  gap: 16px;
}

.meta-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 0.7rem;
  color: var(--muted);
}

.hero-media {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 18px;
}

.media-block {
  background: linear-gradient(140deg, #f0e7dd, #e4d4c3 55%, #f6ede5 100%);
  border-radius: 18px;
  min-height: 180px;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.media-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media-block::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0));
  pointer-events: none;
}

.media-block.tall {
  grid-row: span 2;
  min-height: 380px;
}

.media-block img {
  cursor: zoom-in;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(18, 17, 16, 0.78);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
  z-index: 50;
}

.lightbox.is-open {
  display: flex;
}

.lightbox-content {
  max-width: min(1000px, 92vw);
  max-height: 86vh;
}

.lightbox-content img {
  width: 100%;
  height: auto;
  max-height: 86vh;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
  left: 22px;
}

.lightbox-next {
  right: 22px;
}

@media (max-width: 720px) {
  .lightbox-nav {
    width: 42px;
    height: 42px;
    font-size: 1.6rem;
  }
}

section {
  padding: 70px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 34px;
}

.section-head h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 3rem);
}

.section-note {
  max-width: 340px;
  color: var(--muted);
}

.intro {
  background: var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: start;
}

.intro-text {
  display: grid;
  gap: 16px;
  color: var(--muted);
  font-size: 1.05rem;
}

.process-list {
  list-style: none;
  display: grid;
  gap: 18px;
}

.process-list li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 18px;
  padding: 22px;
  border-radius: 18px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(28, 27, 25, 0.08);
}

.step {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  color: var(--accent-dark);
}

.process-list h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.process-list p {
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 22px;
}

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

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

.tile {
  padding: 24px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 16px 30px rgba(28, 27, 25, 0.08);
}

.tile h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.tile p {
  color: var(--muted);
}

.tile-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
}

.brand-logo {
  width: 100%;
  max-width: 180px;
  max-height: 72px;
  height: auto;
  object-fit: contain;
}

.brand-hidden {
  display: none;
}

.selection.brands-show-all .brand-hidden {
  display: flex;
}

.brands-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 18px;
}

.brands-toggle {
  min-width: 160px;
}

.store {
  background: #f1ece6;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.store-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: stretch;
}

.store-contacts,
.store-social {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.store-contacts a,
.store-social a {
  color: var(--accent-dark);
  font-weight: 600;
}

.store-hours {
  margin-top: 22px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 16px 30px rgba(28, 27, 25, 0.08);
}

.store-hours h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
}

.hours-list {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-top: 12px;
  color: var(--muted);
}

.hours-list li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 4px 12px;
}

.hours-list span:first-child {
  font-weight: 600;
  color: var(--ink);
}

.map-embed {
  min-height: 360px;
  height: 100%;
  border-radius: 22px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: #e9e4dd;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 260px;
  border: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 32px;
  align-items: center;
}

.contact-card {
  background: var(--panel);
  border-radius: 22px;
  border: 1px solid var(--line);
  padding: 28px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
}

.contact-card p {
  color: var(--muted);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-details {
  display: grid;
  gap: 6px;
  font-size: 0.95rem;
  color: var(--muted);
}

.site-footer {
  padding: 32px 0 40px;
  background: #f4f1ec;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid,
  .intro-grid,
  .store-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

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

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

@media (max-width: 720px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    padding-top: 60px;
  }

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

  .media-block.tall {
    grid-row: span 1;
    min-height: 260px;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .grid-4,
  .grid-3 {
    grid-template-columns: 1fr;
  }
}
