:root {
  --ink: #0a0909;
  --paper: #ebe1d3;
  --paper-strong: #fff8eb;
  --muted: #786f65;
  --line: rgba(166, 126, 62, 0.28);
  --gold: #d6b36a;
  --champagne: #fff2cf;
  --wine: #6d1835;
  --plum: #211018;
  --shadow: 0 34px 110px rgba(8, 4, 5, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #050404 0, #180b12 420px, var(--paper) 980px);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-140%);
  background: #070606;
  color: #fff;
  padding: 10px 14px;
  border-radius: 6px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 20px clamp(18px, 4vw, 56px);
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(8, 6, 6, 0.94);
  box-shadow: 0 12px 42px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(16px);
  padding-block: 10px;
}

.brand {
  width: 96px;
  background: rgba(5, 4, 4, 0.58);
  border: 1px solid rgba(214, 179, 106, 0.2);
  opacity: 0.92;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 38px);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a,
.header-cta {
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.site-nav a:hover {
  color: var(--champagne);
}

.header-cta {
  justify-self: end;
  border: 1px solid rgba(214, 179, 106, 0.58);
  border-radius: 6px;
  padding: 11px 16px;
  font-weight: 800;
}

.header-cta:hover {
  background: var(--champagne);
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.2);
  padding: 11px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

.hero {
  min-height: 94vh;
  position: relative;
  display: grid;
  align-items: center;
  padding: 136px clamp(20px, 7vw, 96px) 72px;
  color: #fff;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: #080606;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
  filter: saturate(0.86) contrast(0.96);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 4, 4, 0.86) 0%, rgba(33, 16, 24, 0.64) 48%, rgba(5, 4, 4, 0.2) 100%),
    linear-gradient(0deg, rgba(5, 4, 4, 0.78) 0%, rgba(5, 4, 4, 0.08) 58%);
}

.hero-content {
  width: min(680px, 100%);
}

.hero-mark {
  width: clamp(142px, 16vw, 210px);
  margin-bottom: 34px;
  background: rgba(5, 4, 4, 0.42);
  opacity: 0.96;
}

.eyebrow,
.section-label {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.intro .section-label,
.contact .section-label {
  color: var(--champagne);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2rem, 5vw, 4.15rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 6px;
  padding: 13px 20px;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, #f6df9f 0%, var(--gold) 52%, #9b7130 100%);
  color: #150d08;
  box-shadow: 0 14px 34px rgba(214, 179, 106, 0.24);
}

.button-secondary {
  border: 1px solid currentColor;
  color: inherit;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  width: min(720px, 100%);
  margin: 42px 0 0;
  background: transparent;
  border-top: 1px solid rgba(255, 242, 207, 0.24);
  border-bottom: 1px solid rgba(255, 242, 207, 0.18);
}

.hero-facts div {
  padding: 18px 28px 18px 0;
  margin-right: 28px;
  background: transparent;
  border-right: 1px solid rgba(255, 242, 207, 0.18);
}

.hero-facts div:last-child {
  border-right: 0;
  margin-right: 0;
}

.hero-facts dt {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 4px 0 0;
  font-weight: 800;
}

.section-pad {
  padding: clamp(68px, 9vw, 124px) clamp(20px, 7vw, 96px);
}

.intro {
  background:
    linear-gradient(135deg, rgba(109, 24, 53, 0.5), rgba(10, 9, 9, 0) 46%),
    var(--ink);
  color: #fff;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: end;
}

.intro p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
}

.section-heading {
  max-width: 900px;
  margin-bottom: 42px;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(166, 126, 62, 0.42);
  border: 1px solid rgba(166, 126, 62, 0.42);
}

.offer-card {
  min-height: 340px;
  padding: 28px;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(255, 242, 207, 0.08), rgba(8, 4, 5, 0.82)),
    #120b0d;
  color: #fff;
  box-shadow: none;
}

.card-number {
  display: block;
  margin-bottom: 120px;
  color: var(--champagne);
  font-weight: 800;
}

.offer-card p {
  color: rgba(255, 242, 207, 0.66);
}

.salon-copy p,
.contact-main p {
  color: var(--muted);
}

.atelier-note {
  max-width: 880px;
  margin-top: 34px;
  padding-left: 28px;
  border-left: 2px solid var(--gold);
}

.atelier-note p {
  margin-bottom: 0;
  color: #3f3630;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.salon {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: center;
  background:
    linear-gradient(135deg, #f8efd9 0%, #e4d3bc 48%, #f7eee4 100%);
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--wine);
  font-weight: 800;
  border-bottom: 2px solid currentColor;
}

.salon-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.salon-gallery img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 0;
  box-shadow: var(--shadow);
}

.salon-gallery .gallery-large {
  grid-column: span 2;
  height: 430px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.72fr);
  gap: clamp(28px, 6vw, 86px);
  background:
    linear-gradient(135deg, var(--plum) 0%, #0a0909 100%);
  color: #fff;
}

.contact-main {
  max-width: 760px;
}

.contact-main p {
  color: rgba(255, 242, 207, 0.68);
}

.contact-details {
  border-left: 1px solid rgba(214, 179, 106, 0.32);
}

.contact-details div {
  padding: 0 0 26px 30px;
  margin-bottom: 26px;
  border-bottom: 1px solid rgba(214, 179, 106, 0.24);
}

.contact-details span {
  display: block;
  color: rgba(255, 242, 207, 0.64);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-details strong {
  display: block;
  margin-top: 8px;
  font-size: 1.08rem;
  line-height: 1.45;
}

.contact .button-secondary {
  color: #fff;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 28px clamp(20px, 7vw, 96px);
  background: #050404;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer img {
  width: 96px;
  background: #050404;
}

.site-footer p {
  margin: 0;
}

.copyright {
  justify-self: end;
  color: rgba(255, 255, 255, 0.46);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .brand {
    width: 92px;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border-radius: 8px;
    background: rgba(8, 6, 6, 0.97);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 14px 12px;
  }

  .header-cta {
    display: none;
  }

  .intro-grid,
  .salon,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .contact-details {
    border-left: 0;
  }

  .contact-details div {
    padding-left: 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .copyright {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 88vh;
    padding: 116px 18px 42px;
  }

  .hero-media img {
    object-position: center top;
  }

  .hero::after {
    background: linear-gradient(0deg, rgba(8, 4, 5, 0.93) 0%, rgba(33, 16, 24, 0.66) 65%, rgba(8, 4, 5, 0.32) 100%);
  }

  h1 {
    font-size: 2.85rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-actions,
  .contact-actions,
  .button {
    width: 100%;
  }

  .offer-grid,
  .salon-gallery {
    grid-template-columns: 1fr;
  }

  .hero-facts {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-facts div {
    padding: 14px 0;
    margin-right: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 242, 207, 0.14);
  }

  .hero-facts div:last-child {
    border-bottom: 0;
  }

  .offer-card {
    min-height: 220px;
  }

  .card-number {
    margin-bottom: 44px;
  }

  .salon-gallery .gallery-large {
    grid-column: span 1;
    height: 250px;
  }

  .salon-gallery img {
    height: 220px;
  }
}
