:root {
  --bg: #121212;
  --bg-2: #1a1a1a;
  --bg-3: #232323;
  --cream: #f4efe6;
  --cream-2: #e9e1d5;
  --gold: #c9a962;
  --gold-light: #dcc98a;
  --gold-dark: #9f8448;
  --white: #ffffff;
  --text: #ece7de;
  --muted: #9d968c;
  --text-dark: #2a241f;
  --muted-dark: #6f6860;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Montserrat', system-ui, sans-serif;
  --header-h: 92px;
  --radius: 10px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  --line: rgba(201, 169, 98, 0.18);
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
address { font-style: normal; }
button, input, textarea { font: inherit; }

.container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

.section { padding: 112px 0; }
.section--dark { background: var(--bg); }
.section--alt { background: var(--bg-2); }
.section--cream { background: var(--cream); color: var(--text-dark); }

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}

.eyebrow--dark { color: var(--gold-dark); }

.section-heading {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 500;
  line-height: 1.12;
  color: var(--white);
  letter-spacing: -0.02em;
}

.section-heading--dark { color: var(--text-dark); }

.section-intro { max-width: 720px; }
.section-intro--center { margin-inline: auto; text-align: center; }

.section-lead {
  margin-top: 18px;
  color: var(--muted);
  font-size: 16px;
  max-width: 620px;
}

.section-intro--center .section-lead { margin-inline: auto; }
.section-lead--dark { color: var(--muted-dark); }

.divider {
  width: 72px;
  height: 2px;
  margin: 24px 0 28px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.divider--dark { background: linear-gradient(90deg, var(--gold-dark), transparent); }
.section-intro--center .divider { margin-inline: auto; }

.body-text {
  color: var(--muted);
  margin-bottom: 18px;
}

.section-cta {
  margin-top: 56px;
  text-align: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 28px;
  border: 0;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn--gold {
  background: var(--gold);
  color: var(--bg);
  box-shadow: 0 10px 30px rgba(201, 169, 98, 0.18);
}

.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn--dark {
  background: var(--bg);
  color: var(--white);
}

.btn--dark:hover {
  background: var(--bg-3);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn--outline:hover {
  background: var(--gold);
  color: var(--bg);
}

.btn--full { width: 100%; }
.btn--header { min-height: 44px; padding-inline: 20px; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  transition: color 0.25s ease;
}

.text-link:hover { color: var(--gold); }

/* Header */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(18, 18, 18, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.header--scrolled {
  background: rgba(18, 18, 18, 0.96);
  box-shadow: var(--shadow);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.logo__emblem { width: 54px; height: 54px; }
.logo__emblem svg { width: 100%; height: 100%; }
.logo__emblem--small { width: 38px; height: 38px; }

.logo__name {
  display: block;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.15;
  color: var(--white);
}

.logo__name--small { font-size: 14px; }

.logo__tagline {
  display: block;
  margin-top: 2px;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav__link {
  padding: 10px 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  border-radius: 6px;
  transition: color 0.25s ease, background 0.25s ease;
}

.nav__link:hover {
  color: var(--gold);
  background: rgba(201, 169, 98, 0.06);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--gold);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding-top: var(--header-h);
  overflow: clip;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(18, 18, 18, 0.96) 0%, rgba(18, 18, 18, 0.82) 42%, rgba(18, 18, 18, 0.35) 100%),
    radial-gradient(circle at 80% 20%, rgba(201, 169, 98, 0.08), transparent 30%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: center;
  padding: 88px 0 96px;
}

.hero__title {
  max-width: 11ch;
  margin-bottom: 22px;
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--white);
}

.hero__lead {
  max-width: 34rem;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 16px;
}

.hero__metrics {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 34px;
  margin-bottom: 38px;
  padding: 22px 0;
  border-block: 1px solid var(--line);
}

.metric__value {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
  color: var(--gold);
}

.metric__label {
  display: block;
  margin-top: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__visual {
  position: relative;
}

.hero__frame {
  position: relative;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
}

.hero__frame::before {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(201, 169, 98, 0.12);
  border-radius: 12px;
  pointer-events: none;
}

.hero__image {
  width: 100%;
  aspect-ratio: 4 / 4.2;
  object-fit: cover;
  border-radius: 12px;
}

.seal {
  position: absolute;
  display: grid;
  place-items: center;
  text-align: center;
  width: 132px;
  height: 132px;
  padding: 18px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: rgba(18, 18, 18, 0.92);
  box-shadow: var(--shadow);
}

.seal--hero { left: -28px; bottom: 18px; }
.seal--about { left: -18px; bottom: 24px; width: 118px; height: 118px; }

.seal__icon {
  margin-bottom: 4px;
  color: var(--gold);
  font-size: 18px;
}

.seal__text {
  font-size: 10px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Trust bar */
.trust-bar {
  position: relative;
  z-index: 2;
  margin-top: -34px;
  padding-bottom: 12px;
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--white);
  border: 1px solid #ece4d8;
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.trust-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 28px 26px;
  border-right: 1px solid #ece4d8;
}

.trust-item:last-child { border-right: 0; }

.trust-item__icon {
  width: 42px;
  height: 42px;
  color: var(--gold-dark);
}

.trust-item__icon svg { width: 100%; height: 100%; }

.trust-item__title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dark);
}

.trust-item__text {
  margin-top: 6px;
  font-size: 13px;
  color: var(--muted-dark);
  line-height: 1.5;
}

/* About */
.about__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 84px;
  align-items: center;
}

.checklist { margin: 28px 0 34px; }

.checklist li {
  position: relative;
  padding: 9px 0 9px 28px;
  color: var(--text);
  font-size: 14px;
}

.checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--gold);
  border-radius: 50%;
}

.about__media {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: stretch;
}

.about__primary {
  position: relative;
}

.about__primary img,
.about__secondary img {
  width: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.about__primary img {
  min-height: 100%;
  height: 100%;
  object-position: center;
}

.about__secondary {
  display: grid;
  gap: 18px;
}

.about__secondary img {
  height: 100%;
  min-height: 170px;
}

/* Products */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(42, 36, 31, 0.06);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(42, 36, 31, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(42, 36, 31, 0.12);
}

.product-card__media {
  position: relative;
  aspect-ratio: 4 / 3.2;
  overflow: hidden;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.product-card:hover .product-card__media img {
  transform: scale(1.05);
}

.tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--bg);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tag--outline {
  background: rgba(18, 18, 18, 0.82);
  color: var(--gold);
  border: 1px solid var(--gold);
}

.product-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px 22px 26px;
}

.product-card__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.product-card__title {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--text-dark);
}

.product-card__price {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-dark);
  white-space: nowrap;
}

.product-card__desc {
  flex: 1;
  margin-bottom: 18px;
  font-size: 14px;
  color: var(--muted-dark);
}

/* Why */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.why-card {
  padding: 30px 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
}

.why-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  color: var(--gold);
}

.why-card__icon svg { width: 100%; height: 100%; }

.why-card__title {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--white);
}

.why-card__text {
  font-size: 14px;
  color: var(--muted);
}

/* Testimonials */
.testimonials__layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: start;
}

.quote-grid {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.quote-card {
  padding: 28px 28px 24px;
  border: 1px solid rgba(42, 36, 31, 0.08);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(42, 36, 31, 0.05);
}

.quote-card__stars {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 0.18em;
}

.quote-card__text {
  margin-bottom: 16px;
  font-size: 15px;
  font-style: italic;
  color: #4d4741;
}

.quote-card__author {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  font-style: normal;
}

.quote-card__author::before { content: '— '; }

.testimonials__media img {
  width: 100%;
  aspect-ratio: 4 / 5.2;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.news-block {
  margin-top: 92px;
  padding-top: 92px;
  border-top: 1px solid var(--cream-2);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 42px;
}

.news-card {
  padding: 28px;
  border: 1px solid rgba(42, 36, 31, 0.08);
  border-radius: 16px;
  background: var(--white);
}

.news-card__date {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.news-card__title {
  margin: 12px 0 10px;
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--text-dark);
}

.news-card__text {
  font-size: 14px;
  color: var(--muted-dark);
}

/* Location */
.location__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  margin-top: 56px;
  align-items: stretch;
}

.location__details {
  display: grid;
  gap: 18px;
}

.info-panel {
  padding: 26px 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
}

.info-panel__title {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--gold);
}

.info-panel__text {
  font-size: 14px;
  color: var(--muted);
}

.hours div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 14px;
}

.hours dt { color: var(--muted); }
.hours dd { color: var(--text); font-weight: 600; }

.location__map {
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}

.location__map iframe {
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
}

/* Footer */
.footer {
  padding-top: 92px;
  background: var(--bg-2);
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
  padding-bottom: 72px;
}

.footer__title {
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 1.45rem;
  color: var(--white);
}

.footer__lead {
  margin-bottom: 22px;
  font-size: 14px;
  color: var(--muted);
}

.steps-list {
  counter-reset: step;
  margin-bottom: 28px;
}

.steps-list li {
  position: relative;
  padding: 10px 0 10px 38px;
  font-size: 14px;
  color: var(--muted);
}

.steps-list li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 10px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--bg);
  font-size: 12px;
  font-weight: 700;
  line-height: 26px;
  text-align: center;
}

.contact-form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: var(--bg-3);
  color: var(--white);
  transition: border-color 0.25s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--muted); }

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-list p {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--muted);
}

.contact-list svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--gold);
}

.contact-list a:hover { color: var(--gold); }

.socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.socials__link {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
  transition: background 0.25s ease, color 0.25s ease;
}

.socials__link:hover {
  background: var(--gold);
  color: var(--bg);
}

.footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 22px 0;
}

.footer__bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 12px;
  color: var(--muted);
}

.footer__links {
  display: flex;
  gap: 22px;
}

.footer__links a {
  font-size: 12px;
  color: var(--muted);
}

.footer__links a:hover { color: var(--gold); }

.logo--compact { gap: 10px; }

/* Responsive */
@media (max-width: 1100px) {
  .nav__link { padding-inline: 8px; font-size: 10px; }
  .product-grid,
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .hero__inner,
  .about__grid,
  .testimonials__layout,
  .location__grid { gap: 42px; }
}

@media (max-width: 900px) {
  .section { padding: 84px 0; }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    padding: 18px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: 0.25s ease;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
  }

  .nav__link {
    display: block;
    padding: 14px 12px;
    font-size: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-toggle { display: block; }
  .btn--header { display: none; }

  .hero__inner,
  .about__grid,
  .testimonials__layout,
  .location__grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .hero__inner {
    padding-top: 48px;
    text-align: center;
  }

  .hero__lead,
  .hero__title { margin-inline: auto; }
  .hero__metrics { justify-content: center; }
  .hero__actions { justify-content: center; }
  .hero__visual { max-width: 520px; margin-inline: auto; }
  .seal--hero { left: 8px; }

  .trust-bar { margin-top: 0; }
  .trust-bar__grid { grid-template-columns: 1fr 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid #ece4d8; }
  .trust-item:nth-child(odd) { border-right: 1px solid #ece4d8; }

  .about__media { max-width: 560px; margin-inline: auto; }
  .testimonials__media { max-width: 420px; margin-inline: auto; }
  .news-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --header-h: 78px; }

  .container { width: min(100% - 32px, var(--container)); }

  .hero__metrics {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
  }

  .trust-bar__grid,
  .product-grid,
  .why-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .trust-item:nth-child(odd) { border-right: 0; }

  .about__media {
    grid-template-columns: 1fr;
  }

  .about__secondary {
    grid-template-columns: 1fr 1fr;
  }

  .footer__bar-inner {
    flex-direction: column;
    text-align: center;
  }
}
