:root {
  --radius: 0.25rem;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Jost", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --background: #faf9f4;
  --foreground: #332d25;
  --card: #fffdf7;
  --primary: #463f35;
  --primary-foreground: #fbfaf5;
  --secondary: #efebe0;
  --muted: #efebe0;
  --muted-foreground: #777066;
  --accent: #be9660;
  --border: #e0d9ca;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  letter-spacing: 0.01em;
}

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

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

p,
h1,
h2,
h3,
h4 {
  margin: 0;
}

h1,
h2,
h3,
h4,
.hero-subtitle,
.brand-name,
.footer-brand,
.look-title {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.container {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  font-weight: 500;
}

.accent {
  color: var(--accent);
}

.muted {
  color: var(--muted-foreground);
}

.lead {
  max-width: 28rem;
  margin-top: 1.5rem;
  color: var(--muted-foreground);
  font-size: 1rem;
  line-height: 1.75;
}

.narrow {
  max-width: 36rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid color-mix(in srgb, var(--border), transparent 30%);
  background: color-mix(in srgb, var(--background), transparent 15%);
  backdrop-filter: blur(12px);
}

.header-inner {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-size: 1.6rem;
  letter-spacing: 0.35em;
}

.brand-subtitle {
  margin-top: 0.35rem;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--muted-foreground);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-nav-link.active {
  color: var(--foreground);
}

.menu-button {
  border: 0;
  background: transparent;
  color: var(--foreground);
  cursor: pointer;
  font: inherit;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
}

.mobile-nav {
  border-top: 1px solid color-mix(in srgb, var(--border), transparent 30%);
  background: var(--background);
  padding: 0.5rem 1.25rem;
}

.mobile-nav-link {
  display: block;
  padding: 0.85rem 0;
  color: var(--muted-foreground);
  font-size: 0.95rem;
}

.hero {
  overflow: hidden;
  border-bottom: 1px solid color-mix(in srgb, var(--border), transparent 30%);
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: 2.5rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.hero h1 {
  max-width: 38rem;
  margin-top: 1.25rem;
  font-size: clamp(3.3rem, 7.5vw, 7rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.hero-gold-line {
  display: block;
  width: 4.5rem;
  height: 2px;
  margin-top: 1.5rem;
  background: var(--accent);
}

.hero-subtitle {
  max-width: 38rem;
  margin-top: 1rem;
  color: var(--accent);
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  font-style: italic;
  line-height: 1.18;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 0.85rem 1.75rem;
  font-size: 0.9rem;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.button.primary {
  background: var(--primary);
  color: var(--primary-foreground);
}

.button.primary:hover {
  background: var(--accent);
}

.button.secondary {
  border: 1px solid var(--primary);
  color: var(--primary);
}

.button.secondary:hover {
  background: var(--primary);
  color: var(--primary-foreground);
}

.hero-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.hero-images img,
.look-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius);
}

.hero-images img:nth-child(2) {
  margin-top: 2.5rem;
}

.section-lg {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.section-md {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.section-soft {
  background: color-mix(in srgb, var(--secondary), transparent 50%);
}

.section-title {
  margin-bottom: 2.5rem;
}

.section-title.center {
  text-align: center;
}

.section-title.split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.section-title h2,
.page-hero h1,
.text-page h1,
.contact-page h1 {
  margin-top: 0.75rem;
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.08;
}

.category-grid {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--border);
  gap: 1px;
}

.category-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--card);
  padding: 2rem;
  transition: background-color 0.2s ease;
}

.category-card:hover {
  background: var(--secondary);
}

.category-content {
  display: block;
  margin-top: 4rem;
}

.category-content strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
}

.category-content small {
  display: block;
  margin-top: 0.5rem;
  color: var(--muted-foreground);
  font-size: 0.9rem;
}

.category-content em {
  display: inline-block;
  margin-top: 1rem;
  color: var(--accent);
  font-size: 0.9rem;
  font-style: normal;
  transition: transform 0.2s ease;
}

.category-card:hover em {
  transform: translateX(0.25rem);
}

.text-link {
  color: var(--accent);
  font-size: 0.9rem;
}

.text-link:hover {
  text-decoration: underline;
}

.look-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.look-card {
  margin: 0;
}

.look-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--secondary);
}

.look-image {
  transition: transform 0.7s ease-out;
}

.look-card:hover .look-image {
  transform: scale(1.05);
}

.look-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.look-title {
  font-size: 1.15rem;
}

.features-grid {
  display: grid;
  gap: 2.5rem;
}

.feature-card {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

.feature-card h3 {
  font-size: 1.7rem;
}

.feature-card p {
  margin-top: 0.75rem;
  color: var(--muted-foreground);
  font-size: 0.95rem;
  line-height: 1.7;
}

.page-hero {
  border-bottom: 1px solid color-mix(in srgb, var(--border), transparent 30%);
}

.page-hero .container {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.section-note {
  margin-top: 3rem;
  text-align: center;
  color: var(--muted-foreground);
  font-size: 0.9rem;
}

.text-page,
.contact-page {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.text-page {
  max-width: 780px;
}

.text-content {
  margin-top: 2rem;
  display: grid;
  gap: 1.5rem;
  color: var(--muted-foreground);
  font-size: 1rem;
  line-height: 1.8;
}

.stats-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}

.stats-grid div {
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
}

.stats-grid strong {
  display: block;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.7rem);
  font-weight: 500;
}

.stats-grid span {
  display: block;
  margin-top: 0.25rem;
  color: var(--muted-foreground);
  font-size: 0.9rem;
}

.contact-grid {
  display: grid;
  gap: 3rem;
  margin-top: 3rem;
}

.contact-details {
  display: grid;
  gap: 2rem;
  align-content: start;
}

.contact-details address {
  margin-top: 0.75rem;
  font-style: normal;
  font-size: 1.35rem;
  line-height: 1.5;
}

.contact-details p {
  margin-top: 0.75rem;
  color: var(--muted-foreground);
  line-height: 1.75;
}

.map-frame {
  overflow: hidden;
  min-height: 320px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

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

.not-found {
  min-height: 55vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.not-found h1 {
  font-size: 5rem;
}

.not-found h2 {
  margin-top: 1rem;
  font-size: 1.5rem;
}

.not-found p {
  margin: 0.75rem 0 1.5rem;
  color: var(--muted-foreground);
}

.site-footer {
  border-top: 1px solid color-mix(in srgb, var(--border), transparent 30%);
  background: var(--primary);
  color: var(--primary-foreground);
}

.footer-inner {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 3.5rem 1.25rem;
  display: grid;
  gap: 2.5rem;
}

.footer-brand {
  font-size: 1.6rem;
  letter-spacing: 0.35em;
}

.footer-muted {
  margin-top: 0.5rem;
  color: color-mix(in srgb, var(--primary-foreground), transparent 40%);
}

.footer-text {
  max-width: 20rem;
  margin-top: 1.25rem;
  color: color-mix(in srgb, var(--primary-foreground), transparent 30%);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
  color: color-mix(in srgb, var(--primary-foreground), transparent 20%);
  font-size: 0.9rem;
}

.footer-list a:hover {
  color: var(--primary-foreground);
}

.footer-address {
  margin-top: 1rem;
  color: color-mix(in srgb, var(--primary-foreground), transparent 20%);
  font-style: normal;
  font-size: 0.9rem;
}

.footer-note {
  padding-top: 0.75rem;
}

.footer-copy {
  border-top: 1px solid color-mix(in srgb, var(--primary-foreground), transparent 90%);
  padding: 1.25rem;
  text-align: center;
  color: color-mix(in srgb, var(--primary-foreground), transparent 50%);
  font-size: 0.8rem;
}

.desktop-only {
  display: none;
}

@media (min-width: 640px) {
  .container,
  .header-inner,
  .footer-inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }

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

  .look-grid {
    gap: 1.5rem;
  }

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

@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
  }

  .menu-button,
  .mobile-nav {
    display: none !important;
  }

  .hero-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .section-lg {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

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

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

  .page-hero .container,
  .text-page,
  .contact-page {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .desktop-only {
    display: inline-block;
  }

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

@media (min-width: 1024px) {
  .category-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

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