/* SS Events & Catering — brand theme
   Logo colours: green #006820 · gold #F8C800 */

:root {
  --green: #006820;
  --green-mid: #007a26;
  --green-deep: #003d14;
  --green-dark: #061108;
  --gold: #f8c800;
  --gold-deep: #d4a800;
  --gold-soft: rgba(248, 200, 0, 0.16);
  --cream: #f6f1e4;
  --paper: #fffdf6;
  --ink: #102214;
  --muted: #5d6a5e;
  --line: rgba(248, 200, 0, 0.28);
  --shadow: 0 24px 50px rgba(6, 17, 8, 0.18);
  --radius: 14px;
  --header-h: 88px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-ui: "Outfit", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }

body.nav-open { overflow: hidden; }

.container {
  width: min(1200px, calc(100% - 40px));
  margin-inline: auto;
}

.container-wide {
  width: min(1400px, calc(100% - 32px));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.35s var(--ease), background 0.3s, color 0.3s, box-shadow 0.3s;
}

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

.btn-gold {
  background: var(--gold);
  color: var(--green-dark);
  box-shadow: 0 10px 24px rgba(248, 200, 0, 0.28);
}

.btn-gold:hover { background: #ffd84a; color: var(--green-dark); }

.btn-line {
  background: transparent;
  color: var(--paper);
  border-color: var(--gold);
}

.btn-line:hover { background: var(--gold); color: var(--green-dark); }

.btn-green {
  background: var(--green);
  color: #fff;
}

.btn-green:hover { background: var(--green-mid); color: #fff; }

/* ---------- Kicker / titles ---------- */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
}

.section-head {
  max-width: 680px;
  margin-bottom: 48px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head.center .kicker { justify-content: center; }

.section-head h2,
.display {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.2rem, 4.4vw, 4.4rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.section-head h2 em,
.display em {
  font-style: italic;
  color: var(--green);
}

.section-head p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.05rem;
}

.section { padding: 96px 0; }
.section-dark {
  background: var(--green-dark);
  color: var(--paper);
}

.section-dark .section-head h2 em { color: var(--gold); }
.section-dark .section-head p { color: rgba(255, 253, 246, 0.68); }

::selection {
  background: var(--gold);
  color: var(--green-dark);
}

.inquiry-form { color-scheme: dark; }
.page-form { color-scheme: light; }

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: var(--green-dark);
  transition: opacity 0.5s ease, visibility 0.5s;
}

.preloader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  position: relative;
  width: 140px;
  height: 140px;
  display: grid;
  place-items: center;
}

.preloader-ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(248, 200, 0, 0.25);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.preloader img {
  width: 88px;
  mix-blend-mode: lighten;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(6, 17, 8, 0.55);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: background 0.35s, border-color 0.35s, height 0.35s;
}

.site-header.is-scrolled {
  background: rgba(6, 17, 8, 0.94);
  border-bottom-color: var(--line);
  height: 76px;
}

.header-inner {
  width: min(1400px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand-logo {
  display: flex;
  align-items: center;
  height: 70px;
}

.brand-logo img {
  height: 68px;
  width: auto;
  mix-blend-mode: lighten;
}

.site-nav ul {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.site-nav a {
  position: relative;
  display: block;
  padding: 10px 14px;
  color: rgba(255, 253, 246, 0.82);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.site-nav a:hover,
.site-nav a.is-active { color: var(--gold); }

.site-nav a.is-active::after,
.site-nav a:hover::after { transform: scaleX(1); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-actions .btn { min-height: 44px; padding: 0 18px; font-size: 11px; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  position: relative;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  position: absolute;
  left: 12px;
  width: 18px;
  height: 1.5px;
  background: var(--gold);
  transition: 0.3s;
}

.menu-toggle span { top: 21px; }
.menu-toggle span::before,
.menu-toggle span::after { content: ""; left: 0; }
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }

body.nav-open .menu-toggle span { background: transparent; }
body.nav-open .menu-toggle span::before { top: 0; transform: rotate(45deg); }
body.nav-open .menu-toggle span::after { top: 0; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: var(--green-dark);
  color: var(--paper);
}

.hero-slides { position: absolute; inset: 0; }

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.1s ease, transform 6s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 17, 8, 0.88) 0%, rgba(6, 17, 8, 0.55) 48%, rgba(6, 17, 8, 0.28) 100%),
    linear-gradient(180deg, rgba(6, 17, 8, 0.35) 0%, rgba(6, 17, 8, 0.15) 40%, rgba(6, 17, 8, 0.7) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.18;
  background-image: radial-gradient(rgba(248, 200, 0, 0.35) 0.6px, transparent 0.8px);
  background-size: 4px 4px;
  mix-blend-mode: overlay;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: calc(var(--header-h) + 72px) 0 140px;
  max-width: 760px;
}

.hero-content .kicker { color: var(--gold); }

.hero-content h1 {
  margin: 18px 0 18px;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 7.2rem);
  font-weight: 600;
  line-height: 0.92;
}

.hero-content h1 em {
  display: block;
  font-style: italic;
  color: var(--gold);
}

.hero-content p {
  max-width: 520px;
  color: rgba(255, 253, 246, 0.78);
  font-size: 1.08rem;
  margin-bottom: 32px;
}

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

.hero-ornament {
  position: absolute;
  right: 8%;
  top: 28%;
  width: min(280px, 30vw);
  height: min(280px, 30vw);
  border: 1px solid rgba(248, 200, 0, 0.28);
  border-radius: 50%;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
  pointer-events: none;
}

.hero-ornament::before,
.hero-ornament::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px dashed rgba(248, 200, 0, 0.35);
  border-radius: 50%;
  animation: spin 22s linear infinite;
}

.hero-ornament::after {
  inset: 40px;
  animation-direction: reverse;
  animation-duration: 16s;
}

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

.hero-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 253, 246, 0.35);
  cursor: pointer;
}

.hero-dots button.is-active {
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(248, 200, 0, 0.18);
}

.marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: rgba(6, 17, 8, 0.72);
  backdrop-filter: blur(10px);
  padding: 14px 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.marquee-track span { padding: 0 28px; white-space: nowrap; }

/* ---------- Gold frame ---------- */
.gold-frame {
  position: relative;
}

.gold-frame::before,
.gold-frame::after {
  content: "";
  position: absolute;
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold);
  z-index: 2;
  pointer-events: none;
}

.gold-frame::before { top: -8px; left: -8px; border-right: 0; border-bottom: 0; }
.gold-frame::after { right: -8px; bottom: -8px; border-left: 0; border-top: 0; }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: center;
}

.about-copy h2 { margin: 12px 0 18px; }

.about-copy > p { color: var(--muted); font-size: 1.06rem; }

.strength-list {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

.strength-item {
  padding: 18px 20px;
  background: var(--paper);
  border: 1px solid rgba(16, 34, 20, 0.08);
  border-left: 3px solid var(--gold);
  border-radius: 0 12px 12px 0;
}

.strength-item h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 6px;
}

.strength-item p { color: var(--muted); font-size: 0.95rem; }

.about-photos {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
  min-height: 520px;
}

.about-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.about-photos .tall { height: 520px; }
.about-photos .short {
  height: 340px;
  margin-top: 80px;
}

/* ---------- Services grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.service-card {
  grid-column: span 3;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #0d1c10;
  min-height: 280px;
  color: var(--paper);
  isolation: isolate;
  transition: transform 0.45s var(--ease), box-shadow 0.45s;
}

.service-card:nth-child(1),
.service-card:nth-child(2) {
  grid-column: span 6;
  min-height: 360px;
}

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 0.8s var(--ease);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 17, 8, 0.1) 10%, rgba(6, 17, 8, 0.88) 100%);
  z-index: 1;
}

.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card:hover img { transform: scale(1.12); }

.service-card-body {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
}

.service-num {
  position: absolute;
  top: 16px;
  right: 18px;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  opacity: 0.85;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1.15;
  margin-bottom: 8px;
}

.service-card p {
  color: rgba(255, 253, 246, 0.78);
  font-size: 0.9rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ---------- Stats ---------- */
.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, #07210d 0%, #003d14 55%, #0a2a12 100%);
  color: var(--paper);
}

.stat-item {
  padding: 36px 20px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.stat-item:last-child { border-right: 0; }

.stat-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.4vw, 3.4rem);
  color: var(--gold);
  line-height: 1;
}

.stat-item span {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 253, 246, 0.7);
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 160px;
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}

.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-row: span 2; }
.gallery-item:nth-child(6) { grid-column: span 2; }
.gallery-item:nth-child(9) { grid-column: span 2; grid-row: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-item::after {
  content: "+";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 104, 32, 0.42);
  color: var(--gold);
  font-size: 2rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover::after { opacity: 1; }

.works-masonry {
  columns: 3;
  column-gap: 14px;
}

.works-masonry .gallery-item {
  break-inside: avoid;
  margin-bottom: 14px;
  height: auto;
  display: block;
}

.works-masonry .gallery-item img { height: auto; }

/* ---------- Testimonials ---------- */
.quote-wrap {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 0.6;
  color: var(--gold);
}

.quote-slides { position: relative; min-height: 180px; }

.quote-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s, transform 0.5s;
}

.quote-slide.is-active {
  position: relative;
  opacity: 1;
  transform: none;
}

.quote-slide p {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.4;
}

.quote-nav {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.quote-nav button {
  width: 36px;
  height: 4px;
  border: 0;
  background: rgba(16, 34, 20, 0.18);
  cursor: pointer;
}

.quote-nav button.is-active { background: var(--gold); }

.section-dark .quote-nav button { background: rgba(255, 253, 246, 0.2); }
.section-dark .quote-nav button.is-active { background: var(--gold); }

/* ---------- Inquiry ---------- */
.inquiry {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: stretch;
  background: var(--green-dark);
  color: var(--paper);
  border-radius: 24px;
  overflow: hidden;
}

.inquiry-copy {
  padding: 56px 40px;
  background:
    linear-gradient(160deg, rgba(0, 104, 32, 0.72), rgba(6, 17, 8, 0.55)),
    url("../images/slider/slide2.jpg") center/cover no-repeat;
}

.inquiry-copy h2 { color: var(--paper); }
.inquiry-copy h2 em { color: var(--gold); }
.inquiry-copy p { margin-top: 14px; color: rgba(255, 253, 246, 0.75); }

.inquiry-form { padding: 48px 40px; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  background: rgba(255, 253, 246, 0.04);
  border: 1px solid rgba(248, 200, 0, 0.22);
  color: var(--paper);
  border-radius: 10px;
  padding: 13px 14px;
  outline: none;
  transition: border-color 0.25s, background 0.25s;
}

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

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--gold);
  background: rgba(248, 200, 0, 0.06);
}

.form-note {
  margin-top: 12px;
  font-size: 0.9rem;
}

.form-note.ok { color: var(--gold); }
.form-note.err { color: #ff8a8a; }

.page-form .field input,
.page-form .field textarea,
.page-form .field select {
  background: #fff;
  color: var(--ink);
  border-color: rgba(16, 34, 20, 0.12);
}

.page-form .field label { color: var(--green); }

/* ---------- Page hero ---------- */
.page-hero {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: end start;
  padding: calc(var(--header-h) + 48px) 0 56px;
  background: var(--green-dark);
  color: var(--paper);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 17, 8, 0.88), rgba(6, 17, 8, 0.45)),
    url("../images/page-title.jpg") center/cover no-repeat;
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1;
  margin: 8px 0 12px;
}

.crumbs {
  display: flex;
  gap: 10px;
  color: rgba(255, 253, 246, 0.65);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.crumbs a { color: var(--gold); }

/* ---------- Contact cards ---------- */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: -48px;
  position: relative;
  z-index: 2;
}

.contact-card {
  background: var(--paper);
  border: 1px solid rgba(16, 34, 20, 0.08);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease);
}

.contact-card:hover { transform: translateY(-6px); }

.contact-card .icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--gold);
  margin-bottom: 14px;
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

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

/* ---------- Catalog / grid-list ---------- */
.catalog-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.view-toggle {
  display: inline-flex;
  border: 1px solid rgba(16, 34, 20, 0.12);
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
}

.view-toggle button {
  width: 46px;
  height: 42px;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.view-toggle button.is-active {
  background: var(--green);
  color: var(--gold);
}

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

.catalog-card {
  background: #fff;
  border: 1px solid rgba(16, 34, 20, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.35s;
}

.catalog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(248, 200, 0, 0.55);
}

.catalog-card .thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #122016;
}

.catalog-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.catalog-card:hover .thumb img { transform: scale(1.08); }

.catalog-card .meta {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.catalog-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1.2;
}

.catalog-card .meta .btn { width: 100%; }

.catalog-grid.is-list {
  grid-template-columns: 1fr;
}

.catalog-grid.is-list .catalog-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: stretch;
}

.catalog-grid.is-list .thumb { aspect-ratio: auto; height: 100%; min-height: 150px; }

.catalog-grid.is-list .meta {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.catalog-grid.is-list .meta .btn { width: auto; min-width: 180px; }

.empty-state {
  text-align: center;
  padding: 64px 20px;
  color: var(--muted);
}

/* ---------- Cart ---------- */
.cart-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 24px;
  align-items: start;
}

.cart-panel,
.cart-form {
  background: #fff;
  border: 1px solid rgba(16, 34, 20, 0.08);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(6, 17, 8, 0.06);
}

.cart-form { position: sticky; top: 100px; }

.cart-item {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(16, 34, 20, 0.08);
}

.cart-item img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 10px;
}

.cart-item h3 { font-family: var(--font-display); font-size: 1.25rem; }

.qty {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.qty button {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid rgba(16, 34, 20, 0.14);
  background: var(--cream);
  cursor: pointer;
}

.qty input {
  width: 52px;
  height: 32px;
  text-align: center;
  border-radius: 8px;
  border: 1px solid rgba(16, 34, 20, 0.14);
}

.remove-btn {
  border: 0;
  background: transparent;
  color: #b42318;
  cursor: pointer;
  font-size: 13px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(16, 34, 20, 0.08);
  font-weight: 600;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--green-dark);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 40px;
  padding: 72px 0 40px;
  border-bottom: 1px solid var(--line);
}

.footer-brand img {
  height: 72px;
  mix-blend-mode: lighten;
  margin-bottom: 16px;
}

.footer-brand p { color: rgba(255, 253, 246, 0.68); max-width: 360px; }

.socials { display: flex; gap: 10px; margin-top: 18px; }

.socials a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--gold);
  transition: 0.3s;
}

.socials a:hover { background: var(--gold); color: var(--green-dark); }

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  padding: 6px 0;
  color: rgba(255, 253, 246, 0.75);
}

.footer-links a:hover { color: var(--gold); }

.footer-contact p {
  color: rgba(255, 253, 246, 0.75);
  margin-bottom: 8px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 20px 0;
  color: rgba(255, 253, 246, 0.55);
  font-size: 13px;
}

.footer-goldline {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ---------- Floats ---------- */
.whatsapp-float,
.cart-float-btn {
  position: fixed;
  z-index: 1200;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(6, 17, 8, 0.28);
  transition: transform 0.3s;
}

.whatsapp-float { right: 22px; bottom: 22px; background: #25d366; }
.whatsapp-float img { width: 32px; height: 32px; }
.cart-float-btn {
  right: 22px;
  bottom: 92px;
  background: var(--green);
  color: var(--gold);
  font-size: 20px;
}

.whatsapp-float:hover,
.cart-float-btn:hover { transform: scale(1.08); color: var(--gold); }

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 700;
  display: grid;
  place-items: center;
  padding: 0 5px;
}

.cart-notification {
  position: fixed;
  top: 96px;
  right: 22px;
  z-index: 1300;
  background: var(--green);
  color: #fff;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid var(--gold);
  animation: slideIn 0.35s var(--ease);
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(6, 17, 8, 0.92);
  display: none;
  place-items: center;
  padding: 40px;
}

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

.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 84vh;
  object-fit: contain;
  border: 1px solid var(--line);
}

.lightbox button {
  position: absolute;
  border: 0;
  background: transparent;
  color: var(--gold);
  font-size: 2rem;
  cursor: pointer;
}

.lightbox-close { top: 18px; right: 24px; }
.lightbox-prev { left: 18px; }
.lightbox-next { right: 18px; }

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-in { opacity: 1; transform: none; }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }

/* ---------- Animations ---------- */
@keyframes spin { to { transform: rotate(360deg); } }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes slideIn {
  from { transform: translateX(40px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .services-grid .service-card { grid-column: span 6; }
  .catalog-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .about-grid,
  .inquiry,
  .cart-layout,
  .footer-top { grid-template-columns: 1fr; }
  .about-photos .short { margin-top: 0; }
  .hero-ornament { display: none; }
}

@media (max-width: 860px) {
  .site-nav {
    position: fixed;
    inset: 76px 16px auto;
    background: rgba(6, 17, 8, 0.97);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 16px;
    display: none;
  }

  body.nav-open .site-nav { display: block; }

  .site-nav ul { flex-direction: column; }
  .menu-toggle { display: block; }
  .header-inner { grid-template-columns: auto 1fr auto; }
  .header-actions .btn { min-height: 40px; padding: 0 14px; font-size: 10px; }
  .stats-band,
  .contact-cards { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: 0; }
  .stat-item:nth-child(1),
  .stat-item:nth-child(2) { border-bottom: 1px solid var(--line); }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .works-masonry { columns: 2; }
  .form-grid { grid-template-columns: 1fr; }
  .inquiry-copy,
  .inquiry-form { padding: 32px 22px; }
  .catalog-grid.is-list .catalog-card { grid-template-columns: 1fr; }
  .catalog-grid.is-list .meta { flex-direction: column; align-items: stretch; }
}

@media (max-width: 640px) {
  .container { width: calc(100% - 28px); }
  .section { padding: 72px 0; }
  .services-grid .service-card,
  .service-card:nth-child(1),
  .service-card:nth-child(2) { grid-column: span 12; min-height: 260px; }
  .stats-band,
  .contact-cards,
  .catalog-grid,
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item,
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(6),
  .gallery-item:nth-child(9) {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 220px;
  }
  .stat-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .works-masonry { columns: 1; }
  .cart-item { grid-template-columns: 72px 1fr; }
  .cart-item .remove-btn { grid-column: 1 / -1; }
  .hero-content { padding-bottom: 120px; }
  .brand-logo img { height: 56px; }
}

/* ---------- Contact page ---------- */
.contact-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 36px) 0 88px;
  overflow: hidden;
  background: var(--green-dark);
  color: var(--paper);
}

.contact-hero-media {
  position: absolute;
  inset: 0;
}

.contact-hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.06);
  animation: contactKen 18s ease-in-out infinite alternate;
}

.contact-hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 78% 42%, rgba(248, 200, 0, 0.16), transparent 42%),
    linear-gradient(105deg, rgba(6, 17, 8, 0.94) 8%, rgba(6, 17, 8, 0.62) 48%, rgba(6, 17, 8, 0.35) 100%);
}

.contact-hero-orbit,
.contact-hero-orbit-2 {
  position: absolute;
  right: 6%;
  top: 18%;
  width: min(420px, 48vw);
  height: min(420px, 48vw);
  border: 1px solid rgba(248, 200, 0, 0.28);
  border-radius: 50%;
  animation: spin 28s linear infinite;
  pointer-events: none;
}

.contact-hero-orbit-2 {
  inset: auto 10% 12% auto;
  width: min(220px, 28vw);
  height: min(220px, 28vw);
  top: auto;
  right: 10%;
  bottom: 12%;
  border-style: dashed;
  animation-duration: 16s;
  animation-direction: reverse;
}

.contact-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.contact-hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6.4rem);
  font-weight: 600;
  line-height: 0.92;
  margin: 14px 0 18px;
}

.contact-hero-copy h1 em {
  font-style: italic;
  color: var(--gold);
}

.contact-hero-copy p {
  max-width: 520px;
  color: rgba(255, 253, 246, 0.78);
  margin-bottom: 28px;
}

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

.contact-hero-panel {
  justify-self: end;
  width: min(380px, 100%);
  padding: 28px 26px 22px;
  background: rgba(6, 17, 8, 0.55);
  border: 1px solid var(--line);
  border-radius: 28px;
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.28);
}

.contact-seal {
  width: 92px;
  height: 92px;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  text-align: center;
  animation: float 6s ease-in-out infinite;
}

.contact-seal span {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
  line-height: 1;
}

.contact-seal small {
  display: block;
  font-size: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 253, 246, 0.7);
}

.contact-quick { display: grid; gap: 8px; }

.contact-quick a {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid transparent;
  transition: 0.3s;
}

.contact-quick a:hover {
  border-color: var(--line);
  background: rgba(248, 200, 0, 0.08);
}

.contact-quick i {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--gold);
}

.contact-quick strong {
  display: block;
  font-size: 0.95rem;
}

.contact-quick span {
  display: block;
  color: rgba(255, 253, 246, 0.62);
  font-size: 0.85rem;
}

.contact-hours {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.contact-hours-ring {
  width: 42px;
  height: 42px;
  border: 2px solid var(--gold);
  border-bottom-color: transparent;
  border-radius: 50%;
  animation: spin 3.2s linear infinite;
  flex-shrink: 0;
}

.contact-hours strong { display: block; color: var(--gold); font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; }
.contact-hours span { color: rgba(255, 253, 246, 0.7); font-size: 0.9rem; }

.contact-scroll {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 28px;
  margin: 8px auto 0;
  background: var(--gold);
  animation: contactDrop 1.6s ease-in-out infinite;
}

.contact-studio { background: var(--cream); }

.contact-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(140px, auto);
  gap: 16px;
}

.contact-map {
  grid-column: span 7;
  grid-row: span 2;
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(16, 34, 20, 0.08);
}

.contact-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.85) contrast(1.05);
}

.contact-map-pin {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-tile {
  grid-column: span 5;
  position: relative;
  padding: 28px 26px;
  background: var(--paper);
  border-radius: 22px;
  border: 1px solid rgba(16, 34, 20, 0.08);
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s;
}

.contact-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(248, 200, 0, 0.55);
}

.contact-tile-index {
  position: absolute;
  top: 16px;
  right: 18px;
  font-family: var(--font-display);
  color: var(--gold-deep);
  font-size: 1.2rem;
}

.contact-tile i {
  color: var(--green);
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.contact-tile h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  margin-bottom: 8px;
}

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

.contact-tile-wide {
  grid-column: span 5;
  background:
    linear-gradient(160deg, rgba(0, 104, 32, 0.94), rgba(6, 17, 8, 0.92)),
    url("../images/slider/slide3.jpg") center/cover no-repeat;
  color: var(--paper);
}

.contact-tile-wide h3 { color: var(--paper); }
.contact-tile-wide p { color: rgba(255, 253, 246, 0.78); }
.contact-tile-wide .contact-tile-index { color: var(--gold); }
.contact-tile-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }

.contact-letter {
  background:
    radial-gradient(circle at 12% 20%, rgba(248, 200, 0, 0.12), transparent 28%),
    var(--paper);
}

.contact-letter-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}

.contact-letter-aside p {
  margin: 14px 0 28px;
  color: var(--muted);
}

.contact-steps {
  display: grid;
  gap: 18px;
  counter-reset: none;
}

.contact-steps li {
  padding: 16px 0 16px 18px;
  border-left: 2px solid var(--gold);
}

.contact-steps strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 4px;
}

.contact-steps span { color: var(--muted); }

.contact-invite {
  position: relative;
  padding: 36px 32px 28px;
  background: #fffdf6;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-invite-foil {
  position: absolute;
  inset: 10px;
  border: 1px solid var(--gold);
  pointer-events: none;
  opacity: 0.7;
}

.contact-invite-head {
  text-align: center;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(248, 200, 0, 0.35);
}

.contact-invite-head span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--green);
}

.contact-invite-head em {
  display: block;
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-style: italic;
  color: var(--ink);
}

.contact-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.contact-chips button {
  border: 1px solid rgba(16, 34, 20, 0.12);
  background: transparent;
  color: var(--ink);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.25s;
}

.contact-chips button.is-active,
.contact-chips button:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--gold);
}

.contact-invite-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.contact-invite-foot span {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.06em;
}

@keyframes contactKen {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.12) translate3d(-1.5%, -1%, 0); }
}

@keyframes contactDrop {
  0%, 100% { transform: scaleY(1); opacity: 0.3; }
  50% { transform: scaleY(1.35); opacity: 1; }
}

@media (max-width: 1100px) {
  .contact-hero-grid,
  .contact-letter-grid { grid-template-columns: 1fr; }
  .contact-hero-panel { justify-self: stretch; width: 100%; }
  .contact-map,
  .contact-tile,
  .contact-tile-wide { grid-column: span 12; }
  .contact-map { grid-row: auto; min-height: 320px; }
  .contact-hero-orbit { display: none; }
}

@media (max-width: 640px) {
  .contact-hero { padding-bottom: 72px; align-items: end; }
  .contact-invite { padding: 28px 18px 20px; }
}

/* ---------- Estimate atelier ---------- */
.atelier-hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 28px) 0 56px;
  overflow: hidden;
  background: var(--green-dark);
  color: var(--paper);
}

.atelier-hero-compact { min-height: 62vh; }

.atelier-hero-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  animation: contactKen 18s ease-in-out infinite alternate;
}

.atelier-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 30%, rgba(248, 200, 0, 0.14), transparent 36%),
    linear-gradient(100deg, rgba(6, 17, 8, 0.92) 6%, rgba(6, 17, 8, 0.58) 52%, rgba(6, 17, 8, 0.38) 100%);
}

.atelier-orbit {
  position: absolute;
  right: 8%;
  top: 16%;
  width: min(340px, 40vw);
  height: min(340px, 40vw);
  border: 1px solid rgba(248, 200, 0, 0.28);
  border-radius: 50%;
  animation: spin 26s linear infinite;
  pointer-events: none;
}

.atelier-orbit::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px dashed rgba(248, 200, 0, 0.35);
  border-radius: 50%;
}

.atelier-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.atelier-hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  line-height: 0.95;
  margin: 12px 0 16px;
}

.atelier-hero-copy h1 em {
  font-style: italic;
  color: var(--gold);
}

.atelier-hero-copy p {
  max-width: 540px;
  color: rgba(255, 253, 246, 0.78);
  margin-bottom: 16px;
}

.atelier-hero-copy .crumbs { margin-bottom: 8px; }

.atelier-path {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 18px;
  margin-top: 22px;
}

.atelier-path li {
  position: relative;
  padding-right: 18px;
}

.atelier-path li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 10px;
  height: 1px;
  background: var(--gold);
}

.atelier-path em {
  font-family: var(--font-display);
  font-style: normal;
  color: var(--gold);
  margin-right: 6px;
}

.atelier-path a,
.atelier-path span {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 253, 246, 0.42);
}

.atelier-path .is-on a,
.atelier-path .is-on span { color: var(--paper); }
.atelier-path .is-now a,
.atelier-path .is-now span { color: var(--gold); }

.atelier-hero-card {
  justify-self: end;
  width: min(360px, 100%);
  padding: 28px 26px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(6, 17, 8, 0.55);
  backdrop-filter: blur(16px);
}

.atelier-seal {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 14px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
}

.atelier-hero-card h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.atelier-hero-card p,
.atelier-hero-card li {
  color: rgba(255, 253, 246, 0.72);
  font-size: 0.95rem;
}

.atelier-hero-card ul { display: grid; gap: 10px; margin: 0 0 20px; }
.atelier-hero-card .btn { width: 100%; }
.atelier-hero-card .btn span {
  margin-left: 8px;
  min-width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--green-dark);
  color: var(--gold);
  display: inline-grid;
  place-items: center;
  font-size: 12px;
}

.atelier-board { background: var(--cream); }

.atelier-tools {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.atelier-search {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 220px;
  padding: 0 14px;
  background: #fff;
  border: 1px solid rgba(16, 34, 20, 0.12);
  border-radius: 999px;
  color: var(--muted);
}

.atelier-search input {
  border: 0;
  outline: 0;
  height: 42px;
  width: 100%;
  background: transparent;
  color: var(--ink);
}

.atelier-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.atelier-chips a {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(16, 34, 20, 0.12);
  background: #fff;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: 0.25s;
}

.atelier-chips a:hover,
.atelier-chips a.is-active {
  background: var(--green);
  border-color: var(--green);
  color: var(--gold);
}

.atelier-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.atelier-card {
  grid-column: span 3;
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border-radius: 22px;
  color: var(--paper);
  isolation: isolate;
  transition: transform 0.45s var(--ease);
}

.atelier-card:nth-child(1) { grid-column: span 8; min-height: 440px; }
.atelier-card:nth-child(2) { grid-column: span 4; min-height: 440px; }

.atelier-card:hover { transform: translateY(-6px); }

.atelier-card-media {
  position: absolute;
  inset: 0;
}

.atelier-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.atelier-card:hover .atelier-card-media img { transform: scale(1.1); }

.atelier-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 17, 8, 0.05) 20%, rgba(6, 17, 8, 0.88) 100%);
  z-index: 1;
}

.atelier-card-body {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  gap: 10px;
}

.atelier-no {
  position: absolute;
  top: 16px;
  right: 18px;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
}

.atelier-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2vw, 2.2rem);
  line-height: 1.1;
}

.atelier-card-body .btn { align-self: flex-start; }

.atelier-mosaic.is-courses .atelier-card { grid-column: span 4; min-height: 320px; }
.atelier-mosaic.is-courses .atelier-card:nth-child(1),
.atelier-mosaic.is-courses .atelier-card:nth-child(2) {
  grid-column: span 6;
  min-height: 380px;
}

.atelier-mosaic.is-plates .atelier-card,
.atelier-mosaic.is-plates .atelier-card:nth-child(1),
.atelier-mosaic.is-plates .atelier-card:nth-child(2) {
  grid-column: span 3;
  min-height: 0;
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(16, 34, 20, 0.08);
  display: flex;
  flex-direction: column;
}

.atelier-mosaic.is-plates .atelier-card::after { display: none; }

.atelier-mosaic.is-plates .atelier-card-media {
  position: relative;
  aspect-ratio: 1;
  margin: 18px 18px 0;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--gold);
  box-shadow: 0 0 0 8px rgba(0, 104, 32, 0.08);
}

.atelier-mosaic.is-plates .atelier-no {
  top: 22px;
  right: 22px;
}

.atelier-mosaic.is-plates .atelier-card-body {
  min-height: 0;
  height: auto;
  justify-content: flex-start;
  padding: 16px 18px 20px;
}

.atelier-mosaic.is-plates h3 { font-size: 1.35rem; }

.atelier-mosaic.is-plates .btn { width: 100%; }

.atelier-mosaic.is-list {
  grid-template-columns: 1fr;
}

.atelier-mosaic.is-list .atelier-card,
.atelier-mosaic.is-list .atelier-card:nth-child(1),
.atelier-mosaic.is-list .atelier-card:nth-child(2),
.atelier-mosaic.is-list.is-courses .atelier-card:nth-child(1),
.atelier-mosaic.is-list.is-courses .atelier-card:nth-child(2),
.atelier-mosaic.is-list.is-plates .atelier-card,
.atelier-mosaic.is-list.is-plates .atelier-card:nth-child(1),
.atelier-mosaic.is-list.is-plates .atelier-card:nth-child(2) {
  grid-column: 1;
  min-height: 150px;
  display: grid;
  grid-template-columns: 220px 1fr;
}

.atelier-mosaic.is-list .atelier-card-media {
  position: relative;
  margin: 0;
  border-radius: 0;
  border: 0;
  box-shadow: none;
  aspect-ratio: auto;
  height: 100%;
}

.atelier-mosaic.is-list .atelier-card-body {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 0;
  height: auto;
}

.atelier-mosaic.is-list.is-plates .atelier-card-body .btn { width: auto; min-width: 180px; }

.atelier-card.is-hidden { display: none !important; }

@media (max-width: 1100px) {
  .atelier-hero-grid { grid-template-columns: 1fr; }
  .atelier-hero-card { justify-self: stretch; width: 100%; }
  .atelier-orbit { display: none; }
  .atelier-card,
  .atelier-card:nth-child(1),
  .atelier-card:nth-child(2),
  .atelier-mosaic.is-courses .atelier-card,
  .atelier-mosaic.is-courses .atelier-card:nth-child(1),
  .atelier-mosaic.is-courses .atelier-card:nth-child(2),
  .atelier-mosaic.is-plates .atelier-card {
    grid-column: span 6;
    min-height: 280px;
  }
}

@media (max-width: 700px) {
  .atelier-card,
  .atelier-card:nth-child(1),
  .atelier-card:nth-child(2),
  .atelier-mosaic.is-courses .atelier-card,
  .atelier-mosaic.is-plates .atelier-card {
    grid-column: span 12;
    min-height: 260px;
  }
  .atelier-mosaic.is-list .atelier-card,
  .atelier-mosaic.is-list .atelier-card:nth-child(1),
  .atelier-mosaic.is-list .atelier-card:nth-child(2) {
    grid-template-columns: 1fr;
  }
  .atelier-mosaic.is-list .atelier-card-body { flex-direction: column; align-items: stretch; }
  .atelier-search { min-width: 0; flex: 1; }
}

/* ---------- About house ---------- */
.house-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 24px) 0 88px;
  overflow: hidden;
  background: var(--green-dark);
  color: var(--paper);
}

.house-hero-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: contactKen 18s ease-in-out infinite alternate;
}

.house-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(6, 17, 8, 0.92) 8%, rgba(6, 17, 8, 0.55) 55%, rgba(6, 17, 8, 0.35) 100%);
}

.house-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.house-hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6.5vw, 5.8rem);
  line-height: 0.94;
  margin: 12px 0 16px;
}

.house-hero-copy h1 em { font-style: italic; color: var(--gold); }
.house-hero-copy p { max-width: 520px; color: rgba(255, 253, 246, 0.78); margin-bottom: 16px; }

.house-stack {
  position: relative;
  height: min(460px, 56vh);
}

.house-stack img {
  position: absolute;
  width: 58%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
}

.house-stack img:nth-child(1) { left: 0; top: 12%; transform: rotate(-7deg); z-index: 1; }
.house-stack img:nth-child(2) { right: 8%; top: 0; transform: rotate(5deg); z-index: 2; }
.house-stack img:nth-child(3) { left: 22%; bottom: 0; width: 48%; transform: rotate(2deg); z-index: 3; }

.house-marquee {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: rgba(6, 17, 8, 0.72);
  backdrop-filter: blur(10px);
  padding: 14px 0;
}

.house-story-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.house-sticky { position: sticky; top: 108px; }
.house-sticky img { width: 100%; height: 560px; object-fit: cover; border-radius: var(--radius); }
.house-caption {
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.house-scroll p { color: var(--muted); margin: 16px 0 28px; }

.house-values { display: grid; gap: 0; }
.house-values li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-top: 1px solid rgba(16, 34, 20, 0.1);
}
.house-values em {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-style: normal;
  color: var(--gold-deep);
}
.house-values h3 { font-family: var(--font-display); font-size: 1.6rem; margin-bottom: 6px; }
.house-values p { margin: 0; }

.house-stats-row {
  background: var(--green-dark);
  color: var(--paper);
  padding: 56px 0;
}

.house-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.house-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 4rem);
  color: var(--gold);
  line-height: 1;
}

.house-stats span {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 253, 246, 0.65);
}

.house-strip-wrap { padding-bottom: 40px; }
.house-strip {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 0 20px 20px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.house-strip-shot {
  flex: 0 0 min(72vw, 340px);
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  overflow: hidden;
  scroll-snap-align: start;
}

.house-strip-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.house-strip-shot:hover img { transform: scale(1.08); }

.house-voice .kicker { color: var(--gold); }
.house-voice-cta { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 36px; }

/* ---------- Services score ---------- */
.score-hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  place-items: end start;
  padding: calc(var(--header-h) + 40px) 0 64px;
  background: var(--green-dark);
  color: var(--paper);
  overflow: hidden;
}

.score-hero-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: contactKen 16s ease-in-out infinite alternate;
}

.score-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 17, 8, 0.9), rgba(6, 17, 8, 0.35));
}

.score-hero-copy { position: relative; z-index: 1; max-width: 760px; }
.score-hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: 0.92;
  margin: 12px 0 16px;
}
.score-hero-copy h1 em { font-style: italic; color: var(--gold); }
.score-hero-copy p { color: rgba(255, 253, 246, 0.78); margin-bottom: 16px; }

.score-bar {
  position: sticky;
  top: 76px;
  z-index: 40;
  background: rgba(6, 17, 8, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.score-bar-inner {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  padding: 10px 20px;
  scrollbar-width: none;
}

.score-bar-inner::-webkit-scrollbar { display: none; }

.score-bar a {
  flex: 0 0 auto;
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(255, 253, 246, 0.55);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.score-bar a em { color: var(--gold); margin-right: 6px; font-family: var(--font-display); font-style: normal; }
.score-bar a.is-active { background: var(--green); color: var(--gold); }

.score-chapter {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  min-height: 78vh;
  padding: 72px min(60px, 5vw);
  scroll-margin-top: 140px;
  background: var(--paper);
}

.score-chapter:nth-child(even) {
  grid-template-columns: 0.95fr 1.05fr;
  background: var(--cream);
}

.score-chapter:nth-child(even) .score-visual { order: 2; }

.score-visual {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  min-height: 420px;
}

.score-visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.score-chapter:hover .score-visual img { transform: scale(1.06); }

.score-tag {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--green-dark);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.score-copy { max-width: 480px; }
.score-num {
  display: block;
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: 1;
  color: var(--gold-deep);
  margin-bottom: 8px;
}

.score-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 14px;
}

.score-copy p { color: var(--muted); margin-bottom: 24px; }

.score-end {
  background: var(--green-dark);
  color: var(--paper);
  text-align: center;
  padding: 88px 20px;
}

.score-end h2 em { color: var(--gold); }
.score-end p { color: rgba(255, 253, 246, 0.7); margin: 12px 0 24px; }

/* ---------- Works reel ---------- */
.reel-hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  place-items: end start;
  padding: calc(var(--header-h) + 40px) 0 88px;
  background: var(--green-dark);
  color: var(--paper);
  overflow: hidden;
}

.reel-hero-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  animation: contactKen 18s ease-in-out infinite alternate;
}

.reel-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 17, 8, 0.35), rgba(6, 17, 8, 0.82));
}

.reel-hero-copy { position: relative; z-index: 2; max-width: 780px; }
.reel-hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: 0.92;
  margin: 12px 0 16px;
}
.reel-hero-copy h1 em { font-style: italic; color: var(--gold); }
.reel-hero-copy p { color: rgba(255, 253, 246, 0.78); margin-bottom: 14px; }

.reel-featured {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 10px;
  padding: 10px;
  margin-top: -48px;
  position: relative;
  z-index: 3;
}

.reel-feature {
  display: block;
  min-height: 280px;
  border-radius: 18px;
  overflow: hidden;
}

.reel-feature img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.reel-feature:hover img { transform: scale(1.06); }

.reel-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.reel-filters button {
  border: 1px solid rgba(16, 34, 20, 0.12);
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.reel-filters button.is-active,
.reel-filters button:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--gold);
}

.reel-wall {
  columns: 3;
  column-gap: 14px;
}

.reel-shot {
  position: relative;
  display: block;
  break-inside: avoid;
  margin-bottom: 14px;
  border-radius: 16px;
  overflow: hidden;
}

.reel-shot img { width: 100%; height: auto; transition: transform 0.7s var(--ease); }
.reel-shot:hover img { transform: scale(1.05); }

.reel-shot span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(6, 17, 8, 0.72);
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.reel-shot.is-hidden { display: none; }

@media (max-width: 1100px) {
  .house-hero-grid,
  .house-story-grid,
  .score-chapter,
  .score-chapter:nth-child(even) { grid-template-columns: 1fr; }
  .score-chapter:nth-child(even) .score-visual { order: 0; }
  .house-sticky { position: relative; top: 0; }
  .house-stack { height: 380px; margin-top: 20px; }
  .house-stats { grid-template-columns: 1fr 1fr; gap: 28px; }
  .reel-featured { grid-template-columns: 1fr; margin-top: 0; }
  .reel-wall { columns: 2; }
}

@media (max-width: 700px) {
  .house-stack img { width: 62%; }
  .reel-wall { columns: 1; }
  .score-visual,
  .score-visual img { min-height: 260px; }
  .score-chapter { padding: 48px 20px; min-height: 0; }
}

/* ---------- Home stage ---------- */
.hero-layout {
  position: relative;
  z-index: 2;
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: calc(var(--header-h) + 48px) 0 140px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.hero-layout .hero-content {
  width: auto;
  max-width: none;
  margin: 0;
  padding: 0;
}

.hero-panel {
  justify-self: end;
  width: min(360px, 100%);
  padding: 28px 24px 20px;
  background: rgba(6, 17, 8, 0.55);
  border: 1px solid var(--line);
  border-radius: 28px;
  backdrop-filter: blur(16px);
}

.house-stack-inline {
  height: min(520px, 64vh);
}

.house-sticky .house-stack img {
  width: 58%;
  height: auto;
  aspect-ratio: 3 / 4;
}

.compose {
  padding: 96px 0 72px;
  background:
    radial-gradient(circle at 88% 12%, rgba(248, 200, 0, 0.12), transparent 28%),
    var(--cream);
}

.compose-head {
  max-width: 720px;
  margin-bottom: 40px;
}

.compose-head p { margin-top: 12px; color: var(--muted); }

.compose-stage {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: start;
}

.compose-visual {
  position: sticky;
  top: 100px;
  height: min(78vh, 640px);
  border-radius: 28px;
  overflow: hidden;
  background: #0d1c10;
}

.compose-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.35s ease, transform 0.8s var(--ease);
}

.compose-visual-meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 28px 26px;
  background: linear-gradient(180deg, transparent, rgba(6, 17, 8, 0.88));
  color: var(--paper);
}

.compose-visual-meta span {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
}

.compose-visual-meta h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  margin-top: 6px;
}

.compose-visual { isolation: isolate; }

.compose-list {
  border-top: 1px solid rgba(16, 34, 20, 0.1);
}

.compose-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  padding: 16px 8px 16px 0;
  border-bottom: 1px solid rgba(16, 34, 20, 0.1);
  cursor: pointer;
  transition: 0.3s;
}

.compose-list li em {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: normal;
  color: var(--gold-deep);
}

.compose-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.2;
}

.compose-list span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.88rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}

.compose-list li:hover,
.compose-list li.is-active {
  padding-left: 8px;
  background: rgba(248, 200, 0, 0.08);
}

.compose-list li.is-active span { max-height: 80px; }
.compose-list li.is-active strong { color: var(--green); }

.compose-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 40px;
}

.glimpse { padding: 80px 0 48px; background: var(--paper); }

.glimpse-intro {
  max-width: 680px;
  margin-bottom: 36px;
}

.glimpse-intro p { margin-top: 12px; color: var(--muted); }

.glimpse-featured {
  display: grid;
  grid-template-columns: 1.5fr 0.75fr 0.75fr;
  gap: 12px;
  width: min(1400px, calc(100% - 24px));
  margin: 0 auto 18px;
}

.glimpse-feature {
  display: block;
  min-height: 320px;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
}

.glimpse-feature:first-child { min-height: 460px; }

.glimpse-feature img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.glimpse-feature:hover img { transform: scale(1.07); }

.glimpse-reel { padding-left: max(20px, calc(50% - 700px)); }

@media (max-width: 1100px) {
  .hero-layout,
  .compose-stage { grid-template-columns: 1fr; }
  .hero-panel { justify-self: stretch; width: 100%; }
  .compose-visual { position: relative; top: 0; height: 380px; }
  .glimpse-featured { grid-template-columns: 1fr; }
  .glimpse-feature,
  .glimpse-feature:first-child { min-height: 240px; }
}

@media (max-width: 700px) {
  .hero-layout { padding-bottom: 120px; }
}
