:root {
  --bg: #fbfbfb;
  --surface: #ffffff;
  --ink: #111111;
  --muted: #5f5f5f;
  --line: #dfdfdf;
  --line-strong: #c7c7c7;
  --accent: #2a2a2a;
  --radius: 1.2rem;
  --shadow-soft: 0 18px 55px rgba(0, 0, 0, 0.08);
  --container: min(1180px, 92vw);
  --header-h: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 95% 0%, rgba(0, 0, 0, 0.04) 0, rgba(0, 0, 0, 0) 38%),
    radial-gradient(circle at 0% 10%, rgba(0, 0, 0, 0.03) 0, rgba(0, 0, 0, 0) 35%),
    var(--bg);
  font-family: "Plus Jakarta Sans", "Trebuchet MS", sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.is-loading {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.loader {
  position: fixed;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 0.9rem;
  background: #ffffff;
  z-index: 999;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.loader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.4rem, 2vw, 2rem);
  letter-spacing: 0.16rem;
  text-transform: uppercase;
}

.loader-line {
  width: 140px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #121212, transparent);
  animation: sweep 1.1s linear infinite;
}

@keyframes sweep {
  from {
    transform: scaleX(0.4);
    opacity: 0.35;
  }
  to {
    transform: scaleX(1);
    opacity: 1;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid var(--line);
}

.nav-shell {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  letter-spacing: 0.1rem;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav a {
  font-size: 0.92rem;
  color: #2e2e2e;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: #1a1a1a;
  transition: transform 0.3s ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: var(--surface);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span {
  width: 16px;
  height: 1px;
  background: #161616;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.active span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle.active span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  padding: clamp(3.2rem, 8vw, 6.8rem) 0 3.4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
}

.eyebrow,
.section-kicker {
  margin: 0;
  font-size: 0.77rem;
  letter-spacing: 0.17rem;
  text-transform: uppercase;
  color: #545454;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
.footer-brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.13;
  font-weight: 600;
}

h1 {
  margin-top: 0.9rem;
  font-size: clamp(2.3rem, 5.7vw, 4.3rem);
  max-width: 13ch;
}

.hero-text {
  margin-top: 1rem;
  max-width: 52ch;
  color: var(--muted);
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.2rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 0.88rem;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-dark {
  background: #111111;
  border-color: #111111;
  color: #f4f4f4;
}

.btn-dark:hover,
.btn-dark:focus-visible {
  background: #242424;
}

.btn-light {
  background: #f4f4f4;
  color: #111111;
}

.btn-light:hover,
.btn-light:focus-visible {
  background: #ebebeb;
}

.btn-ghost {
  background: transparent;
  color: #2d2d2d;
}

.hero-visual {
  position: relative;
}

/* decorative offset ring */
.hero-deco {
  position: absolute;
  inset: -1rem;
  border-radius: 2rem;
  pointer-events: none;
  z-index: 0;
}

.hero-frame {
  position: relative;
  z-index: 1;
  border-radius: 1.8rem;
  overflow: hidden;
  box-shadow:
    0 4px 18px rgba(0, 0, 0, 0.07),
    0 20px 60px rgba(0, 0, 0, 0.10),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  animation: hero-float 6s ease-in-out infinite;
}

@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* fixed portrait crop */
.hero-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #ececec;
}

.hero-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* soft vignette overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0) 55%, rgba(0,0,0,0.30) 100%),
    linear-gradient(130deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0) 50%);
}

.hero-frame figcaption {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  font-size: 0.84rem;
  color: #2c2c2c;
  letter-spacing: 0.01rem;
}

.fig-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1a1a1a;
  flex-shrink: 0;
}

.media {
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.media.loaded {
  opacity: 1;
  transform: scale(1);
}

section {
  padding: clamp(3.4rem, 7vw, 6rem) 0;
}

.section-shell h2 {
  margin-top: 0.6rem;
  font-size: clamp(1.9rem, 4vw, 3rem);
}

.section-text {
  margin-top: 0.8rem;
  max-width: 70ch;
  color: var(--muted);
}

.about-list {
  margin: 1.7rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.about-list li {
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  background: #ffffff;
  border-radius: 0.8rem;
}

.card-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.collection-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.38s ease, box-shadow 0.38s ease, border-color 0.38s ease;
}

.collection-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.10);
  border-color: #c4c4c4;
}

/* ---- image wrapper ---- */
.card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f0f0f0;
  flex-shrink: 0;
}

.card-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s ease;
}

.collection-card:hover .card-img-wrap img {
  transform: scale(1.06);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 55%,
    rgba(0, 0, 0, 0.18) 100%
  );
  opacity: 0;
  transition: opacity 0.38s ease;
  pointer-events: none;
}

.collection-card:hover .card-overlay {
  opacity: 1;
}

/* ---- card text ---- */
.card-body {
  padding: 1rem 1.1rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
}

.collection-card h3 {
  font-size: 1.05rem;
  margin: 0;
}

.collection-card p {
  margin: 0;
  color: #5d5d5d;
  font-size: 0.9rem;
  line-height: 1.5;
}

.season {
  border-block: 1px solid var(--line);
  background: linear-gradient(130deg, #ffffff, #f4f4f4);
}

.season-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem 2rem;
  align-items: center;
}

.season-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: flex-end;
}

.season-tags span {
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  font-size: 0.84rem;
  background: rgba(255, 255, 255, 0.86);
}

.reason-grid {
  margin-top: 1.9rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.reason-item {
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1rem;
  background: #ffffff;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.reason-item:hover {
  background: #f8f8f8;
  border-color: #cfcfcf;
}

.icon {
  width: 2.3rem;
  height: 2.3rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid #d3d3d3;
  margin-bottom: 0.8rem;
}

.icon svg {
  width: 1.2rem;
  height: 1.2rem;
  stroke: #101010;
}

.reason-item h3 {
  font-size: 1rem;
}

.slider {
  margin-top: 2rem;
}

.slides {
  position: relative;
  min-height: min(68vw, 600px);
  border-radius: 1.2rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #f3f3f3;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.slide.is-active {
  opacity: 1;
  visibility: visible;
}

.slide img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.slide:hover img {
  transform: scale(1.03);
}

.slide-caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  max-width: 24rem;
  padding: 0.85rem 1rem;
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.87);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.slide-caption h3 {
  font-size: 1.1rem;
}

.slide-caption p {
  margin-top: 0.3rem;
  font-size: 0.9rem;
  color: #4f4f4f;
}

.slider-controls {
  margin-top: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.slider-btn {
  border: 1px solid var(--line-strong);
  background: #ffffff;
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font-size: 0.83rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.slider-btn:hover {
  background: #f3f3f3;
}

.slider-dots {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.dot {
  border: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c8c8c8;
  cursor: pointer;
  padding: 0;
}

.dot.active {
  width: 22px;
  border-radius: 999px;
  background: #151515;
}

.process-grid {
  margin-top: 1.8rem;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
}

.process-grid li {
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  padding: 1rem;
  background: #ffffff;
}

.process-grid span {
  font-size: 0.76rem;
  letter-spacing: 0.12rem;
  color: #6f6f6f;
}

.process-grid h3 {
  margin-top: 0.55rem;
  font-size: 1rem;
}

.stats {
  border-block: 1px solid var(--line);
}

.stats-grid {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.stat-item {
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: #ffffff;
  padding: 1.3rem 1rem;
}

.stat-value {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.1rem, 5vw, 3.2rem);
  line-height: 1;
}

.stat-label {
  margin-top: 0.45rem;
  font-size: 0.9rem;
  color: #5a5a5a;
}

.contact-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 0.55rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: #ffffff;
}

.contact-form label {
  font-size: 0.86rem;
  color: #4f4f4f;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d2d2d2;
  border-radius: 0.75rem;
  padding: 0.72rem 0.82rem;
  font: inherit;
  color: #111111;
  background: #fbfbfb;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #929292;
}

.form-note {
  min-height: 1.4rem;
  margin-top: 0.2rem;
  font-size: 0.88rem;
  color: #3f3f3f;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.6rem 0 2.2rem;
  background: #ffffff;
}

.footer-shell {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.footer-brand {
  font-size: 1.5rem;
  letter-spacing: 0.08rem;
}

.footer-text {
  margin-top: 0.3rem;
  max-width: 55ch;
  color: #5f5f5f;
  font-size: 0.9rem;
}

.socials {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.socials a {
  width: 2.15rem;
  height: 2.15rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: #fafafa;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.socials a:hover {
  background: #efefef;
  transform: translateY(-2px);
}

.socials svg {
  width: 1rem;
  height: 1rem;
  stroke: #101010;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  :root {
    --header-h: 72px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 4vw;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.9rem;
    border: 1px solid var(--line);
    border-radius: 0.8rem;
    min-width: 220px;
    background: rgba(255, 255, 255, 0.96);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero-grid,
  .season-grid,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }

  .about-list,
  .card-grid,
  .reason-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .season-tags {
    justify-content: flex-start;
  }

  .slides {
    min-height: min(82vw, 530px);
  }
}

@media (max-width: 680px) {
  section {
    padding: 3.1rem 0;
  }

  .hero {
    padding-top: 2.6rem;
  }

  .about-list,
  .card-grid,
  .reason-grid,
  .stats-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .slider-controls {
    flex-wrap: wrap;
  }

  .footer-shell {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
