:root {
  --bg: #0d1117;
  --bg-soft: #131922;
  --bg-panel: #171e28;
  --surface: #f5f0e8;
  --surface-soft: #ece4d7;
  --text: #0f1720;
  --text-muted: #5a6470;
  --text-light: #d8d0c2;
  --text-light-muted: #a99f8e;
  --line: rgba(255, 255, 255, 0.08);
  --line-dark: rgba(15, 23, 32, 0.12);
  --accent: #b78b52;
  --accent-strong: #d3a469;
  --shadow: 0 26px 60px rgba(0, 0, 0, 0.22);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: #f6f1e8;
  line-height: 1.6;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(252, 248, 241, 0.92);
  border-bottom: 1px solid rgba(15, 23, 32, 0.08);
}

.header-row {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, #c79a61, #8b663a);
  color: #fff8ef;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-text strong,
.brand-text span {
  display: block;
}

.brand-text strong {
  font-size: 1rem;
}

.brand-text span {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line-dark);
  background: #fff9f0;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  margin: 0 auto 4px;
  border-radius: 999px;
}

.nav-toggle::after {
  margin-bottom: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.96rem;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--text);
}

.header-meta {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-meta .meta-chip {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, #bd9157, #9b6f3a);
  color: #fff9f1;
  box-shadow: 0 14px 30px rgba(155, 111, 58, 0.2);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
  color: #fff4e5;
}

.btn-light {
  border-color: rgba(15, 23, 32, 0.12);
  background: #fffaf3;
  color: var(--text);
}

.btn-linkish {
  color: var(--accent);
  font-weight: 700;
}

.hero {
  padding: 80px 0 44px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 36px;
  align-items: stretch;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--accent);
  margin: 0 0 18px;
}

.display-title,
h1,
h2,
h3,
.serif {
  font-family: "Cormorant Garamond", serif;
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.display-title {
  font-size: clamp(3.5rem, 7vw, 6.4rem);
  margin: 0 0 22px;
  color: #111821;
}

.lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 640px;
}

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

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.mini-card {
  background: rgba(255, 250, 243, 0.85);
  border: 1px solid rgba(15, 23, 32, 0.08);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  box-shadow: 0 10px 30px rgba(18, 26, 35, 0.05);
}

.mini-card strong {
  display: block;
  font-size: 1rem;
}

.mini-card span {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.hero-visual {
  min-height: 620px;
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(11, 16, 22, 0.08), rgba(11, 16, 22, 0.4)),
    url("images/hero-look-1.jpg") center top / cover no-repeat;
  box-shadow: var(--shadow);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: auto 20px 20px auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(183, 139, 82, 0.6), transparent 70%);
  filter: blur(6px);
}

.hero-panel {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  background: rgba(10, 14, 20, 0.8);
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 22px;
  backdrop-filter: blur(12px);
}

.hero-panel strong {
  display: block;
  font-size: 1.3rem;
  color: #fff7e9;
  margin-bottom: 8px;
}

.hero-panel p {
  margin: 0;
  color: var(--text-light-muted);
}

.section {
  padding: 44px 0 84px;
}

.section-dark {
  background:
    radial-gradient(circle at top right, rgba(183, 139, 82, 0.18), transparent 25%),
    linear-gradient(180deg, #0d1117 0%, #121924 100%);
  color: var(--text-light);
}

.section-dark .section-heading h2,
.section-dark .display-title,
.section-dark h2,
.section-dark h3 {
  color: #fff6eb;
}

.section-dark p,
.section-dark li,
.section-dark .section-copy {
  color: var(--text-light-muted);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 460px);
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}

.section-heading h2 {
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  margin: 0;
}

.section-copy {
  color: var(--text-muted);
  font-size: 1.02rem;
}

.cards-3,
.cards-4,
.service-grid,
.gallery-grid,
.contact-grid,
.footer-grid,
.feature-grid {
  display: grid;
  gap: 22px;
}

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

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

.feature-grid {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
}

.card,
.service-card,
.gallery-card,
.info-card,
.contact-card {
  background: rgba(255, 250, 243, 0.92);
  border: 1px solid rgba(15, 23, 32, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(18, 26, 35, 0.06);
}

.section-dark .card,
.section-dark .service-card,
.section-dark .gallery-card,
.section-dark .info-card {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.card-body,
.service-card-body,
.gallery-card-body,
.contact-card-body {
  padding: 24px;
}

.card h3,
.service-card h3,
.gallery-card h3,
.info-card h3 {
  margin: 0 0 10px;
  font-size: 2rem;
  line-height: 1;
}

.card p,
.service-card p,
.gallery-card p,
.contact-card p,
.info-card p,
.info-card li {
  margin: 0;
  color: var(--text-muted);
}

.section-dark .card p,
.section-dark .service-card p,
.section-dark .gallery-card p,
.section-dark .info-card p,
.section-dark .info-card li {
  color: var(--text-light-muted);
}

.service-card-image,
.gallery-card-image {
  height: 340px;
  overflow: hidden;
}

.service-card-image img,
.gallery-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: center;
  background: rgba(255, 250, 243, 0.94);
  border: 1px solid rgba(15, 23, 32, 0.08);
  border-radius: 34px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.split-panel.reverse {
  grid-template-columns: 1.05fr 0.95fr;
}

.split-panel-image {
  min-height: 520px;
  border-radius: 26px;
  overflow: hidden;
}

.split-panel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-panel-content h2 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  margin: 0 0 18px;
}

.split-panel-content p {
  color: var(--text-muted);
}

.bullet-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.bullet-list li {
  padding-left: 18px;
  position: relative;
}

.bullet-list li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.trust-tile {
  background: rgba(255, 250, 243, 0.92);
  border: 1px solid rgba(15, 23, 32, 0.08);
  border-radius: var(--radius-md);
  padding: 20px;
}

.trust-tile strong {
  display: block;
  font-size: 1.35rem;
  margin-bottom: 6px;
}

.trust-tile span {
  color: var(--text-muted);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.process-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 24px;
}

.process-number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: rgba(183, 139, 82, 0.18);
  color: #ffe3be;
  font-weight: 800;
  margin-bottom: 16px;
}

.process-card h3 {
  font-size: 1.55rem;
  margin: 0 0 8px;
}

.cta-band {
  background:
    linear-gradient(135deg, rgba(183, 139, 82, 0.12), rgba(18, 26, 35, 0.86)),
    #131922;
  color: #fff7eb;
  border-radius: 34px;
  padding: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.cta-band h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  margin: 0 0 12px;
}

.cta-band p {
  margin: 0;
  color: var(--text-light-muted);
  max-width: 700px;
}

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

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

.contact-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.contact-stack {
  display: grid;
  gap: 16px;
}

.contact-card {
  background: rgba(255, 250, 243, 0.92);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 32, 0.12);
  background: #fffdf9;
  padding: 14px 16px;
  color: var(--text);
}

.field textarea {
  min-height: 160px;
  resize: vertical;
}

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

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

.footer {
  background: #0d1117;
  color: var(--text-light);
  padding: 56px 0 30px;
  margin-top: 40px;
}

.footer-grid {
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  margin-bottom: 28px;
}

.footer h3,
.footer h4 {
  color: #fff6eb;
  margin: 0 0 12px;
}

.footer p,
.footer a,
.footer li {
  color: var(--text-light-muted);
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.footer-bottom {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-light-muted);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.page-hero {
  padding: 72px 0 26px;
}

.page-hero.narrow .section-heading {
  grid-template-columns: 1fr;
  max-width: 760px;
}

.page-hero h1 {
  font-size: clamp(3rem, 5.5vw, 5.3rem);
  margin: 0 0 18px;
}

.stat-line {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.stat-chip {
  border-radius: 999px;
  padding: 10px 16px;
  background: rgba(255, 250, 243, 0.82);
  border: 1px solid rgba(15, 23, 32, 0.08);
  color: var(--text-muted);
}

.hidden-mobile {
  display: block;
}

@media (max-width: 1100px) {
  .hero-grid,
  .feature-grid,
  .contact-grid,
  .split-panel,
  .split-panel.reverse,
  .section-heading,
  .footer-grid,
  .cards-3,
  .cards-4,
  .service-grid,
  .gallery-grid,
  .process-grid,
  .trust-row {
    grid-template-columns: 1fr 1fr;
  }

  .hero-visual {
    min-height: 520px;
  }

  .site-nav {
    gap: 16px;
  }
}

@media (max-width: 860px) {
  .header-row {
    min-height: 78px;
    flex-wrap: wrap;
    padding: 14px 0;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 0 4px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .header-meta {
    margin-left: auto;
    gap: 12px;
  }

  .header-meta .meta-chip {
    display: none;
  }

  .hero,
  .page-hero {
    padding-top: 42px;
  }

  .hero-grid,
  .feature-grid,
  .contact-grid,
  .split-panel,
  .split-panel.reverse,
  .section-heading,
  .footer-grid,
  .cards-3,
  .cards-4,
  .service-grid,
  .gallery-grid,
  .process-grid,
  .trust-row,
  .hero-points {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .split-panel-image,
  .service-card-image,
  .gallery-card-image {
    min-height: auto;
    height: 360px;
  }

  .split-panel {
    padding: 20px;
  }

  .cta-band {
    grid-template-columns: 1fr;
    padding: 26px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .hidden-mobile {
    display: none;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100vw - 28px, 100%);
  }

  .display-title {
    font-size: 3rem;
  }

  .page-hero h1 {
    font-size: 2.7rem;
  }

  .hero-panel {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 18px;
  }

  .card-body,
  .service-card-body,
  .gallery-card-body,
  .contact-card-body {
    padding: 20px;
  }
}

.home-hero {
  padding: 44px 0 34px;
}

.home-slideshow {
  padding: 28px 0 28px;
}

.slideshow-frame {
  position: relative;
  height: clamp(420px, 66vw, 760px);
  overflow: hidden;
  border-radius: 34px;
  background: #10161d;
  box-shadow: 0 22px 50px rgba(18, 26, 35, 0.12);
}

.slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.slide.is-active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #10161d;
}

.slideshow-dots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}

.slideshow-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: rgba(255, 248, 239, 0.55);
}

.slideshow-dots button.is-active {
  background: #fff8ef;
}

.home-hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 38px;
  align-items: center;
}

.home-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.6rem, 7vw, 6rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
  margin: 0 0 20px;
  color: #121921;
  max-width: 760px;
}

.home-lead {
  font-size: 1.08rem;
  color: #5d6772;
  max-width: 620px;
}

.home-quick-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.home-quick-facts div {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(15, 23, 32, 0.08);
  box-shadow: 0 8px 24px rgba(18, 26, 35, 0.05);
}

.home-quick-facts strong,
.home-ribbon-item strong {
  display: block;
  font-size: 0.98rem;
}

.home-quick-facts span,
.home-ribbon-item span {
  color: #63707c;
  font-size: 0.92rem;
}

.home-hero-visual {
  position: relative;
  min-height: 690px;
  display: grid;
  grid-template-columns: 1fr 0.46fr;
  gap: 16px;
  align-items: stretch;
}

.hero-look {
  overflow: hidden;
  border-radius: 30px;
  background: #e8ded0;
  box-shadow: 0 22px 54px rgba(18, 26, 35, 0.14);
}

.hero-look img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-look-main {
  min-height: 690px;
}

.hero-look-side {
  min-height: 440px;
  margin-top: 56px;
}

.hero-floating-note {
  position: absolute;
  left: 22px;
  bottom: 22px;
  max-width: 380px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 250, 242, 0.9);
  border: 1px solid rgba(15, 23, 32, 0.08);
  box-shadow: 0 16px 38px rgba(18, 26, 35, 0.12);
}

.hero-floating-note span {
  display: block;
  color: #27323f;
  font-weight: 600;
}

.home-ribbon {
  padding: 8px 0 50px;
}

.home-ribbon-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.home-ribbon-item {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 23, 32, 0.08);
}

.home-heading h2 {
  max-width: 760px;
}

.home-service-tiles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.collection-card {
  overflow: hidden;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 23, 32, 0.08);
  box-shadow: 0 10px 22px rgba(18, 26, 35, 0.05);
}

.collection-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.collection-card-body {
  padding: 22px;
}

.collection-card-body h3 {
  margin: 0 0 8px;
  font-size: 1.9rem;
}

.collection-card-body p {
  margin: 0 0 10px;
  color: #63707c;
}

.home-service-tile {
  overflow: hidden;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 23, 32, 0.08);
  box-shadow: 0 14px 32px rgba(18, 26, 35, 0.06);
}

.home-service-tile img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.home-service-body {
  padding: 22px;
}

.tile-label {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--accent);
}

.home-service-body h3 {
  margin: 0 0 10px;
  font-size: 2rem;
}

.home-service-body p {
  margin: 0;
  color: #63707c;
}

.home-editorial {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 34px;
  align-items: center;
  padding: 30px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 23, 32, 0.08);
  border-radius: 34px;
  box-shadow: 0 14px 32px rgba(18, 26, 35, 0.05);
}

.home-editorial-image {
  overflow: hidden;
  border-radius: 28px;
  min-height: 560px;
}

.lookbook-mosaic {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.lookbook-shot {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  min-height: 280px;
}

.lookbook-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lookbook-shot-tall {
  grid-row: span 2;
  min-height: 580px;
}

.home-editorial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-editorial-copy h2 {
  font-size: clamp(2.8rem, 4.6vw, 4.4rem);
  margin: 0 0 18px;
}

.home-editorial-copy p {
  color: #5f6975;
}

.home-process-wrap {
  background: transparent;
}

.home-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.home-process-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 23, 32, 0.08);
  box-shadow: 0 10px 24px rgba(18, 26, 35, 0.05);
}

.home-process-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 14px;
  background: rgba(183, 139, 82, 0.14);
  color: #8c6634;
  font-size: 0.92rem;
  font-weight: 800;
}

.home-process-card h3 {
  margin: 0 0 10px;
  font-size: 1.8rem;
}

.home-process-card p {
  margin: 0;
  color: #63707c;
}

.home-final-cta {
  background:
    linear-gradient(135deg, rgba(183, 139, 82, 0.14), rgba(18, 26, 35, 0.92)),
    #18202a;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(15, 23, 32, 0.08);
  color: #384350;
  font-size: 0.92rem;
  font-weight: 700;
}

.collection-sections {
  display: grid;
  gap: 38px;
}

.collection-section {
  padding: 22px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 23, 32, 0.08);
  box-shadow: 0 12px 28px rgba(18, 26, 35, 0.05);
}

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

.collection-section-head h3 {
  margin: 0;
  font-size: 2.2rem;
}

.collection-section-head p {
  margin: 0;
  color: #63707c;
}

.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.lookbook-item {
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: #e8dfd3;
  min-height: 260px;
}

.lookbook-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lookbook-item-wide {
  grid-column: span 2;
}

@media (max-width: 1100px) {
  .home-hero-grid,
  .home-editorial,
  .home-service-tiles,
  .home-process-grid,
  .home-ribbon-grid,
  .home-quick-facts,
  .collection-grid,
  .lookbook-grid {
    grid-template-columns: 1fr 1fr;
  }

  .home-hero-visual {
    grid-template-columns: 1fr 0.52fr;
    min-height: 560px;
  }

  .hero-look-main {
    min-height: 560px;
  }

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

@media (max-width: 860px) {
  .home-slideshow {
    padding-top: 18px;
  }

  .slideshow-frame {
    height: 420px;
    border-radius: 24px;
  }

  .home-hero-grid,
  .home-service-tiles,
  .home-process-grid,
  .home-ribbon-grid,
  .home-editorial,
  .home-quick-facts,
  .collection-grid,
  .lookbook-mosaic,
  .lookbook-grid {
    grid-template-columns: 1fr;
  }

  .home-hero-visual {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero-look-main,
  .hero-look-side,
  .home-editorial-image {
    min-height: auto;
    height: 420px;
    margin-top: 0;
  }

  .hero-floating-note {
    position: static;
    max-width: none;
  }


  .lookbook-shot-tall,
  .lookbook-item-wide {
    grid-row: auto;
    grid-column: auto;
  }

  .lookbook-shot,
  .lookbook-item {
    min-height: 360px;
  }

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