:root {
  color-scheme: light;
  --bg: #f6f2ed;
  --bg-alt: #efe6dd;
  --ink: #1f1a17;
  --muted: #6d625a;
  --accent: #b88a56;
  --accent-strong: #8f6840;
  --accent-glow: rgba(184, 138, 86, 0.35);
  --surface: #fffaf4;
  --surface-glass: rgba(255, 250, 244, 0.76);
  --border: rgba(31, 26, 23, 0.12);
  --shadow: 0 30px 80px rgba(31, 26, 23, 0.18);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Sora", sans-serif;
  background: radial-gradient(circle at top, #fdf9f3 0%, var(--bg) 40%, #efe7dd 100%);
  color: var(--ink);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.35;
  z-index: -2;
}

body::before {
  top: -120px;
  left: -120px;
  background: radial-gradient(circle, rgba(184, 138, 86, 0.45), rgba(184, 138, 86, 0));
}

body::after {
  bottom: -140px;
  right: -140px;
  background: radial-gradient(circle, rgba(34, 31, 28, 0.35), rgba(34, 31, 28, 0));
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 0.8rem;
}

h3 {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}

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

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

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

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

.section {
  padding: 6rem 0;
}

.section-header {
  max-width: 620px;
  margin-bottom: 2.8rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(246, 242, 237, 0.78);
  border-bottom: 1px solid rgba(31, 26, 23, 0.08);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
}

.logo {
  display: inline-flex;
  flex-direction: column;
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}

.logo span:last-child {
  font-size: 1.6rem;
  letter-spacing: 0.24em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links {
  display: flex;
  gap: 1.4rem;
  align-items: center;
  font-size: 0.95rem;
  color: var(--muted);
}

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

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-size: 0.9rem;
}

.hero {
  position: relative;
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -120px 0 auto 0;
  height: 420px;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.7), transparent 60%),
    radial-gradient(circle at 80% 0%, var(--accent-glow), transparent 55%);
  z-index: -1;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.hero-content .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-strong);
  font-size: 0.75rem;
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.btn {
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 25px rgba(184, 138, 86, 0.3);
}

.btn-primary:hover,
.btn-primary:focus {
  transform: translateY(-2px);
  box-shadow: 0 18px 35px rgba(184, 138, 86, 0.35);
}

.btn-ghost {
  border: 1px solid var(--border);
  color: var(--ink);
  background: transparent;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.4rem;
}

.hero-highlights div {
  background: var(--surface-glass);
  border: 1px solid rgba(184, 138, 86, 0.18);
  border-radius: 18px;
  padding: 1rem 1.2rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 30px rgba(31, 26, 23, 0.1);
}

.hero-highlights span {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
}

.hero-highlights small {
  display: block;
  color: var(--muted);
  margin-top: 0.3rem;
}

.hero-art {
  position: relative;
  min-height: 420px;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(0px);
}

.orb-one {
  width: 280px;
  height: 280px;
  top: 0;
  right: 10%;
  background: radial-gradient(circle, rgba(184, 138, 86, 0.6), rgba(184, 138, 86, 0));
}

.orb-two {
  width: 220px;
  height: 220px;
  bottom: 0;
  left: 0;
  background: radial-gradient(circle, rgba(31, 26, 23, 0.5), rgba(31, 26, 23, 0));
}

.hero-media {
  position: relative;
  width: min(480px, 90%);
  margin-left: auto;
}

.hero-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 28px 60px rgba(31, 26, 23, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.hero-image.secondary {
  position: absolute;
  width: 70%;
  height: 200px;
  bottom: -36px;
  left: -16%;
  transform: rotate(-4deg);
  border-radius: 24px;
  box-shadow: 0 22px 45px rgba(31, 26, 23, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.frame-card {
  position: absolute;
  right: -10px;
  bottom: -28px;
  background: var(--surface-glass);
  padding: 1.4rem 1.6rem;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(31, 26, 23, 0.2);
  border: 1px solid rgba(184, 138, 86, 0.2);
  backdrop-filter: blur(12px);
}

.frame-card p {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: var(--accent-strong);
  margin-bottom: 0.6rem;
}

.frame-card h3 {
  margin-bottom: 0.4rem;
}

.brands {
  background: var(--bg-alt);
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.6rem;
  margin-top: 2.6rem;
}

.brand-item {
  background: linear-gradient(160deg, #ffffff, #f6eee4);
  border-radius: 20px;
  padding: 1.6rem 1.6rem;
  border: 1px solid rgba(31, 26, 23, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  box-shadow: 0 16px 36px rgba(31, 26, 23, 0.14);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #1b1612;
  position: relative;
  overflow: hidden;
}

.brand-item img {
  width: min(180px, 88%);
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(31, 26, 23, 0.18));
}

.brand-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px rgba(31, 26, 23, 0.2);
}

.brand-item::after {
  content: "";
  position: absolute;
  inset: auto 22% 18px 22%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(184, 138, 86, 0.75), transparent);
  opacity: 0.8;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--surface);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: 0 20px 40px rgba(31, 26, 23, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 50px rgba(31, 26, 23, 0.14);
}

.collections {
  background: #f9f4ee;
}

.collection-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.collection-card {
  background: linear-gradient(145deg, #fffaf4, #f2e6dc);
  padding: 2.2rem;
  border-radius: 28px;
  border: 1px solid rgba(184, 138, 86, 0.2);
  box-shadow: 0 25px 45px rgba(31, 26, 23, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collection-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 55px rgba(31, 26, 23, 0.18);
}

.collection-tag {
  display: inline-block;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(184, 138, 86, 0.16);
  color: var(--accent-strong);
  font-size: 0.75rem;
  margin-bottom: 1rem;
}

.about {
  background: var(--bg-alt);
}

.about-grid {
  display: grid;
  gap: 2.4rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.about-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}

.about-metrics strong {
  display: block;
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 0.2rem;
}

.about-panel {
  background: var(--surface);
  padding: 2rem;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 40px rgba(31, 26, 23, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-panel:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 48px rgba(31, 26, 23, 0.16);
}

.about-panel ul {
  margin-top: 1.2rem;
  list-style: none;
}

.about-panel li {
  margin-bottom: 0.8rem;
  padding-left: 1.3rem;
  position: relative;
  color: var(--muted);
}

.about-panel li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-strong);
}

.contact {
  background: #fdf8f2;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.4rem;
  align-items: stretch;
}

.contact-info h2 {
  margin-bottom: 1rem;
}

.info-block {
  margin-top: 1.2rem;
}

.info-block h4 {
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-strong);
  margin-bottom: 0.4rem;
}

.info-block a {
  color: var(--ink);
}

.map-card {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 24px 50px rgba(31, 26, 23, 0.12);
  min-height: 320px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(31, 26, 23, 0.18);
}

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

.site-footer {
  background: #1f1a17;
  color: #f4eee7;
  padding: 4rem 0 2.5rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer-grid h4 {
  font-family: "Sora", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  color: #d8c7b2;
}

.footer-grid a {
  display: block;
  color: #f4eee7;
  margin-bottom: 0.6rem;
}

.logo-mark {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-note {
  margin-top: 2.5rem;
  font-size: 0.85rem;
  color: rgba(244, 238, 231, 0.7);
}

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

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

@media (max-width: 880px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    right: 4%;
    top: 70px;
    flex-direction: column;
    background: var(--surface);
    padding: 1.2rem 1.5rem;
    border-radius: 18px;
    border: 1px solid var(--border);
    box-shadow: 0 20px 50px rgba(31, 26, 23, 0.18);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .btn,
  .nav-links {
    transition: none;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 6rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-media {
    width: 100%;
    margin-left: 0;
  }

  .hero-image {
    height: 260px;
  }

  .hero-image.secondary {
    position: static;
    width: 100%;
    height: 200px;
    transform: none;
    margin-top: 1rem;
  }

  .frame-card {
    position: static;
    margin-top: 1.2rem;
  }
}
