:root {
  --bg: #0a0a0b;
  --bg-deep: #111113;
  --bg-panel: rgba(255, 255, 255, 0.06);
  --bg-soft: #f3eee8;
  --bg-cream: #e8ddd1;
  --text: #171412;
  --text-soft: #6b625b;
  --white: #ffffff;
  --line: rgba(255, 255, 255, 0.1);
  --line-dark: rgba(23, 20, 18, 0.12);
  --accent: #c7a07c;
  --accent-deep: #9a6e4b;
  --shadow: 0 24px 56px rgba(12, 11, 10, 0.16);
  --radius: 28px;
  --container: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--bg-soft);
  line-height: 1.6;
}

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

svg {
  display: block;
}

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

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

.container {
  width: min(calc(100% - 34px), var(--container));
  margin: 0 auto;
}

.topbar {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 10px 16px;
  background: #0c0c0d;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  font-size: 0.92rem;
}

.topbar span {
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.topbar p {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(10, 10, 11, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #d2b294, #8f6544);
  color: var(--white);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(199, 160, 124, 0.25);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text strong {
  font-size: 1rem;
  letter-spacing: 0.2em;
}

.brand-text small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.68);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.68rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(255, 255, 255, 0.86);
}

.site-nav a {
  font-size: 0.92rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.2s ease, transform 0.2s ease;
}

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

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 42px;
  height: 42px;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 20%, rgba(197, 149, 115, 0.18), transparent 20%),
    radial-gradient(circle at 80% 12%, rgba(119, 87, 255, 0.12), transparent 22%),
    linear-gradient(135deg, rgba(7, 7, 8, 0.95), rgba(17, 17, 19, 0.92));
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -140px auto;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 160, 124, 0.14), transparent 62%);
  filter: blur(14px);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 7, 8, 0.54), rgba(7, 7, 8, 0.22));
}

.hero-home-grid,
.hero-studio-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 48px;
  align-items: center;
  padding: 86px 0 94px;
}

.hero-home-grid {
  grid-template-columns: 0.95fr 1.05fr;
  min-height: calc(100vh - 126px);
}

.hero-studio-grid {
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 72vh;
}

.hero-copy.compact h1 {
  max-width: 620px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.73rem;
  font-weight: 800;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.eyebrow.dark {
  color: var(--accent-deep);
}

.hero h1,
.section h2,
.info-card h3 {
  margin: 18px 0 18px;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.hero h1 {
  font-size: clamp(3.2rem, 7vw, 6.6rem);
}

.section h2 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
}

.hero-text {
  max-width: 620px;
  font-size: 1.06rem;
  color: rgba(255, 255, 255, 0.78);
}

.hero-text.short {
  max-width: 420px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, #d1ae8d, #8e6344);
  box-shadow: 0 16px 34px rgba(142, 99, 68, 0.28);
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.full-width {
  width: 100%;
}

.hero-collage {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: stretch;
}

.hero-panel,
.look-card,
.about-card,
.experience-panel,
.contact-card,
.feature-list div,
.benefit-card,
.step-card,
.info-card {
  border-radius: var(--radius);
  overflow: hidden;
}

.hero-panel {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.22);
}

.panel-large {
  grid-row: span 2;
  min-height: 620px;
}

.panel-small {
  min-height: 300px;
}

.panel-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 300px;
}

.glow-card {
  background:
    radial-gradient(circle at top left, rgba(152, 118, 255, 0.15), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
}

.panel-card span,
.glass-card span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.62);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
}

.panel-card strong,
.glass-card strong {
  font-size: 1.12rem;
  line-height: 1.45;
}

.section {
  padding: 104px 0;
}

.section-light {
  background: var(--bg-soft);
}

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(199, 160, 124, 0.12), transparent 24%),
    linear-gradient(180deg, #121214, #0b0b0c);
}

.section-cream {
  background: var(--bg-cream);
}

.section-contact {
  background: linear-gradient(180deg, #f7f2ec, #efe4d8);
}

.statement-strip {
  padding: 18px 0;
  background: #0d0d0e;
  color: rgba(255, 255, 255, 0.74);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.strip-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
}

.strip-wrap span {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
}

.section-heading {
  margin-bottom: 38px;
}

.section-heading.center {
  text-align: center;
}

.section-heading.center .eyebrow {
  justify-content: center;
}

.section-heading.center h2,
.section-heading.center p {
  margin-left: auto;
  margin-right: auto;
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.section-heading p,
.section-copy p,
.benefit-card p,
.step-card p,
.info-card p,
.contact-list span,
.demo-form input,
.demo-form select,
.demo-form textarea,
.form-note {
  color: var(--text-soft);
}

.section-dark .section-heading p,
.section-dark .service-card p {
  color: rgba(255, 255, 255, 0.72);
}

.looks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: 240px;
  gap: 18px;
}

.look-card {
  background: #ded2c5;
  box-shadow: var(--shadow);
}

.look-card.tall {
  grid-row: span 2;
}

.look-card.wide {
  grid-column: span 2;
}

.info-card {
  padding: 34px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.info-card h3 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  color: var(--text);
  margin-top: 16px;
  margin-bottom: 18px;
}

.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--accent-deep);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.text-link::after {
  content: "→";
}

.feature-banner {
  padding: 72px 0;
}

.feature-banner-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.split-section.reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.feature-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.feature-list div,
.benefit-card,
.step-card,
.contact-card {
  padding: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.feature-list strong,
.benefit-card h3,
.step-card h3,
.service-card h3,
.contact-list strong {
  display: block;
  margin-bottom: 8px;
}

.simple-visual {
  min-height: 540px;
}

.about-visual {
  position: relative;
}

.about-card {
  box-shadow: var(--shadow);
}

.about-card-main {
  min-height: 540px;
}

.image-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(12, 12, 13, 0.72);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
}

.services-grid,
.benefits-grid,
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.service-card,
.glass-card {
  padding: 28px;
  border-radius: 24px;
}

.service-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.service-card h3,
.glass-card strong {
  color: var(--white);
}

.experience-visual {
  display: flex;
}

.experience-panel {
  width: 100%;
  min-height: 580px;
  background: #151517;
  box-shadow: var(--shadow);
}

.step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin-bottom: 12px;
  background: rgba(154, 110, 75, 0.12);
  color: var(--accent-deep);
  font-weight: 800;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.contact-list div {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-dark);
}

.demo-form {
  display: grid;
  gap: 18px;
}

.demo-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
}

.demo-form input,
.demo-form select,
.demo-form textarea {
  width: 100%;
  border: 1px solid rgba(23, 20, 18, 0.12);
  background: #fcfaf7;
  border-radius: 16px;
  padding: 15px 16px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.demo-form input:focus,
.demo-form select:focus,
.demo-form textarea:focus {
  border-color: rgba(154, 110, 75, 0.45);
  box-shadow: 0 0 0 4px rgba(154, 110, 75, 0.12);
}

.form-note {
  margin: -4px 0 0;
  font-size: 0.92rem;
}

.form-success {
  margin: 0;
  min-height: 24px;
  color: var(--accent-deep);
  font-weight: 700;
}

.site-footer {
  background: #0d0d0e;
  color: rgba(255, 255, 255, 0.74);
  padding: 34px 0;
}

.footer-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 24px;
  align-items: center;
}

.footer-wrap strong {
  display: block;
  color: var(--white);
  margin-bottom: 8px;
  font-size: 1.06rem;
  letter-spacing: 0.06em;
}

.footer-wrap p {
  margin: 0;
}

.footer-links,
.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 1080px) {
  .hero-home-grid,
  .hero-studio-grid,
  .split-section,
  .split-section.reverse,
  .contact-grid,
  .footer-wrap,
  .feature-banner-grid {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: start;
  }

  .hero-home-grid,
  .hero-studio-grid {
    min-height: auto;
    padding: 72px 0 80px;
  }

  .services-grid,
  .benefits-grid,
  .steps-grid,
  .looks-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .looks-grid {
    grid-auto-rows: 260px;
  }

  .look-card.wide {
    grid-column: auto;
  }

  .split-heading {
    flex-direction: column;
    align-items: start;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(12, 12, 13, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.22);
  }

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

  .hero-collage,
  .services-grid,
  .benefits-grid,
  .steps-grid,
  .looks-grid {
    grid-template-columns: 1fr;
  }

  .panel-large,
  .panel-small,
  .panel-card,
  .about-card-main,
  .experience-panel {
    min-height: 340px;
  }

  .look-card.tall,
  .look-card.wide {
    grid-row: auto;
    grid-column: auto;
  }

  .section {
    padding: 82px 0;
  }

  .topbar {
    flex-direction: column;
    gap: 4px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 22px), var(--container));
  }

  .nav-wrap {
    min-height: 74px;
  }

  .hero-home-grid,
  .hero-studio-grid {
    padding: 58px 0 64px;
  }

  .section {
    padding: 68px 0;
  }

  .feature-list div,
  .benefit-card,
  .step-card,
  .contact-card,
  .service-card,
  .panel-card,
  .glass-card,
  .info-card {
    padding: 20px;
  }
}
