:root{
  --black: #0a0908;
  --near-black: #131110;
  --panel: #17140f;
  --gold: #c9a15a;
  --gold-light: #e6cd97;
  --gold-dim: #8a713f;
  --cream: #f3ede1;
  --stone: #ffffff;
  --line: rgba(201, 161, 90, 0.25);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--cream);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .serif {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  letter-spacing: 0.01em;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 500;
}

.bar-divider {
  display: flex;
  gap: 4px;
  height: 14px;
  margin: 18px 0;
}

.bar-divider span {
  flex: 1;
  background: linear-gradient(180deg, var(--gold-dim), transparent);
  opacity: 0.5;
}

.bar-divider span:nth-child(3n) {
  opacity: 0.9;
  background: var(--gold);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 9, 8, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 28px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  color: var(--gold-light);
}

.logo .mark {
  width: 34px;
  height: 34px;
  border: 1.4px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold);
  border-radius: 2px;
  transform: rotate(45deg);
}

.logo .mark span {
  transform: rotate(-45deg);
}

nav ul {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

nav ul a {
  text-decoration: none;
  color: var(--stone);
  transition: color 0.25s;
}

nav ul a:hover {
  color: var(--gold-light);
}

.nav-cta {
  border: 1px solid var(--gold);
  color: var(--gold-light);
  padding: 9px 20px;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.25s;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--black);
}

.nav-toggle {
  display: none;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 120px 0 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 75% 20%, rgba(201, 161, 90, 0.14), transparent 55%),
    linear-gradient(100deg, rgba(10, 9, 8, 0.97) 0%, rgba(10, 9, 8, 0.93) 32%, rgba(10, 9, 8, 0.72) 55%, rgba(10, 9, 8, 0.4) 100%),
    url('../img/04%2001_.jpg.jpeg') center 30% / cover no-repeat,
    var(--black);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, var(--black) 100%);
  pointer-events: none;
}

.hero .wrap {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 40px;
}

.hero .stat-row {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero .eyebrow {
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(2.6rem, 5.2vw, 4.6rem);
  line-height: 1.05;
  color: var(--cream);
  margin: 0 0 26px;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero p.lead {
  font-size: 1.08rem;
  color: var(--stone);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  padding: 15px 30px;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.25s;
  border: 1px solid var(--gold);
}

.btn-primary:hover {
  background: transparent;
  color: var(--gold-light);
}

.btn-ghost {
  padding: 15px 30px;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--stone);
  border: 1px solid var(--line);
  transition: all 0.25s;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.hero-art {
  position: relative;
  aspect-ratio: 3 / 4;
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6);
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.03);
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(200deg, rgba(10, 9, 8, 0) 55%, rgba(10, 9, 8, 0.55) 100%);
}

.hero-art .frame-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold-light);
  text-transform: uppercase;
  background: rgba(10, 9, 8, 0.55);
  padding: 8px 12px;
  backdrop-filter: blur(4px);
  border: 1px solid var(--line);
}

.hero-strip-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  z-index: 2;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1180px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.stat {
  padding: 26px 28px;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: none;
}

.stat .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--gold-light);
}

.stat .label {
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: var(--stone);
  margin-top: 4px;
}

section {
  padding: 110px 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}

.section-head h2 {
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  color: var(--cream);
  margin: 12px 0 0;
}

.section-head p {
  color: var(--stone);
  margin-top: 16px;
  line-height: 1.7;
  font-size: 1.02rem;
}

.about {
  background: var(--near-black);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: start;
}

.about-copy p {
  color: var(--stone);
  line-height: 1.85;
  font-size: 1.02rem;
  margin-bottom: 20px;
}

.about-copy strong {
  color: var(--gold-light);
  font-weight: 500;
}

.focus-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.focus-list li {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.02rem;
  color: var(--cream);
}

.focus-list li:first-child {
  border-top: 1px solid var(--line);
}

.focus-list .idx {
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold);
  font-size: 1.1rem;
}

.scope-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.scope-card {
  background: var(--black);
  padding: 34px 30px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
}

.scope-card .n {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold-dim);
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.scope-card h3 {
  color: var(--gold-light);
  font-size: 1.4rem;
  margin: 0 0 16px;
}

.scope-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  flex: 1;
}

.scope-card li {
  font-size: 0.9rem;
  color: var(--stone);
  padding: 6px 0 6px 16px;
  position: relative;
  line-height: 1.5;
}

.scope-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 1px;
  background: var(--gold);
}

.gallery {
  background: var(--black);
}

.carousel {
  position: relative;
  max-width: 1380px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 22px;
}

.car-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 0 24px;
  flex: 1;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.car-track::-webkit-scrollbar {
  display: none;
}

.car-slide {
  position: relative;
  flex: 0 0 auto;
  width: 420px;
  aspect-ratio: 4 / 5;
  scroll-snap-align: start;
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.car-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.car-slide:hover img {
  transform: scale(1.05);
}

.car-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10, 9, 8, 0.88) 100%);
}

.car-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cap-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.cap-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  color: var(--cream);
}

.car-btn {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: rgba(10, 9, 8, 0.74);
  color: var(--gold-light);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
  box-shadow: 0 8px 18px rgba(201, 161, 90, 0.18);
}

.car-btn:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-1px);
}

.car-btn:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 2px;
}

.car-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 6px;
}

.car-dots .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--line);
  border: 1px solid var(--gold-dim);
  cursor: pointer;
  transition: all 0.25s;
}

.car-dots .dot.active {
  background: var(--gold);
  width: 22px;
  border-radius: 4px;
}

.exclusions {
  background: var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.excl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.excl-note {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.excl-list {
  list-style: none;
  margin: 0;
  padding: 0;
  columns: 1;
}

.excl-list li {
  font-size: 0.96rem;
  color: var(--stone);
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
}

.excl-list li::before {
  content: "— ";
  color: var(--gold-dim);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.why-card {
  background: var(--near-black);
  padding: 30px 32px;
}

.why-card h4 {
  color: var(--gold-light);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  margin: 0 0 8px;
  font-weight: 600;
}

.why-card p {
  color: var(--stone);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

.trends {
  background: var(--near-black);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trends-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  border: 1px solid var(--line);
  padding: 10px 18px;
  font-size: 0.86rem;
  color: var(--cream);
  border-radius: 999px;
  transition: all 0.25s;
}

.pill:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.trends-art {
  aspect-ratio: 4 / 5;
  background: linear-gradient(155deg, rgba(201, 161, 90, 0.14), transparent 60%), url('../img/CR%2003%2006.jpg.jpeg') center/cover no-repeat, var(--panel);
  border: 1px solid var(--line);
}

.contact {
  padding-top: 110px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
}

.contact-info h2 {
  font-size: clamp(2rem, 3.2vw, 2.7rem);
  margin: 12px 0 20px;
}

.contact-info p.lead {
  color: var(--stone);
  line-height: 1.7;
  margin-bottom: 36px;
}

.info-row {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.info-row:last-of-type {
  border-bottom: 1px solid var(--line);
}

.info-row .ic {
  width: 38px;
  height: 38px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.info-row .label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.info-row .val {
  color: var(--cream);
  font-size: 0.98rem;
}

form {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 44px;
}

form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field {
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field label {
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.field input,
.field textarea,
.field select {
  background: var(--black);
  border: 1px solid var(--line);
  color: var(--cream);
  padding: 13px 14px;
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.25s;
  width: 100%;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--gold);
}

.field textarea {
  resize: vertical;
  min-height: 110px;
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8'><path d='M1 1l5 5 5-5' stroke='%23c9a15a' stroke-width='1.4' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.checks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.chk {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  padding: 9px 14px;
  font-size: 0.86rem;
  color: var(--stone);
  cursor: pointer;
}

.chk input {
  width: auto;
  accent-color: var(--gold);
}

.chk:has(input:checked) {
  border-color: var(--gold);
  color: var(--gold-light);
}

.submit-btn {
  width: 100%;
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 16px;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s;
  margin-top: 6px;
}

.submit-btn:hover {
  background: var(--gold-light);
}

.form-note {
  font-size: 0.8rem;
  color: var(--stone);
  margin-top: 14px;
  text-align: center;
}

.form-success {
  display: none;
  text-align: center;
  padding: 60px 20px;
  color: var(--gold-light);
}

.form-success h3 {
  font-size: 1.7rem;
  margin-bottom: 10px;
}

.form-success p {
  color: var(--stone);
}

footer {
  border-top: 1px solid var(--line);
  padding: 44px 0 30px;
  background: var(--black);
}

.foot-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.foot-tag {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--gold-dim);
  text-transform: uppercase;
}

.foot-copy {
  font-size: 0.8rem;
  color: var(--stone);
}

@media (max-width: 860px) {
  nav ul {
    display: none;
  }

  .hero-grid,
  .about-grid,
  .excl-grid,
  .trends-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .scope-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .stat-row {
    grid-template-columns: 1fr;
  }

  .stat {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  form .row {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 120px;
  }

  .car-slide {
    width: 78vw;
  }

  .car-btn {
    display: none;
  }
}
