:root {
  --ink: #151514;
  --ink-soft: #2c2a28;
  --paper: #f4f0ea;
  --paper-warm: #ebe4d9;
  --line: rgba(21, 21, 20, 0.18);
  --light-line: rgba(244, 240, 234, 0.24);
  --ruby: #9d2233;
  --ruby-deep: #741724;
  --metal: #87817a;
  --white: #fffaf2;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}

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

img,
svg {
  display: block;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 78px;
  padding: 22px clamp(20px, 5vw, 62px);
  display: grid;
  grid-template-columns: 220px 1fr 190px;
  align-items: center;
  gap: 28px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0));
}

.brand {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav a,
.site-footer a,
.text-link {
  transition: color 160ms ease, border-color 160ms ease, opacity 160ms ease;
}

.site-nav a:hover,
.site-footer a:hover {
  color: #f0c9c4;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border: 1px solid currentColor;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.header-cta {
  justify-self: end;
  color: var(--white);
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.76) 0%, rgba(0, 0, 0, 0.46) 38%, rgba(0, 0, 0, 0.14) 72%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.58));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(860px, calc(100% - 40px));
  padding: 22vh 0 16vh clamp(22px, 9vw, 146px);
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(5.2rem, 14vw, 13.5rem);
  font-weight: 500;
  line-height: 0.86;
}

.hero p {
  width: min(470px, 100%);
  margin: 28px 0 30px;
  padding-top: 20px;
  border-top: 3px solid var(--ruby);
  font-size: clamp(0.98rem, 1.5vw, 1.2rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.55;
  text-transform: uppercase;
}

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

.button-primary {
  border-color: var(--ruby);
  background: var(--ruby);
  color: var(--white);
}

.button-primary:hover {
  border-color: var(--ruby-deep);
  background: var(--ruby-deep);
}

.button-secondary {
  border-color: rgba(255, 250, 242, 0.8);
  background: rgba(0, 0, 0, 0.18);
  color: var(--white);
}

.button-secondary:hover {
  background: rgba(255, 250, 242, 0.12);
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 28px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  transform: translateX(-50%);
}

.scroll-cue svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(520px, 1.8fr);
  gap: clamp(44px, 7vw, 96px);
  padding: clamp(68px, 9vw, 112px) clamp(22px, 5vw, 64px);
  background: var(--paper);
}

h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 500;
  line-height: 0.98;
}

.intro-copy p,
.lookbook-copy p,
.process > p,
.appointment-copy p {
  color: var(--ink-soft);
}

.intro-copy p {
  max-width: 420px;
  margin: 30px 0 28px;
}

.intro-copy h2::after,
.lookbook-copy h2::after,
.appointment-copy h2::after,
.process h2::after {
  content: "";
  display: block;
  width: 58px;
  height: 2px;
  margin-top: 28px;
  background: var(--ruby);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.text-link::after {
  content: "->";
  color: var(--ruby);
}

.text-link:hover {
  color: var(--ruby);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-left: 1px solid var(--line);
}

.service-grid article {
  min-height: 300px;
  padding: 30px clamp(20px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-right: 1px solid var(--line);
}

.service-grid svg {
  width: 54px;
  height: 54px;
  margin-bottom: 30px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

h3 {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.service-grid p {
  max-width: 210px;
  margin: 24px auto 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.lookbook {
  display: grid;
  grid-template-columns: minmax(230px, 0.58fr) minmax(540px, 1.8fr);
  gap: clamp(36px, 6vw, 78px);
  align-items: center;
  padding: clamp(64px, 8vw, 92px) clamp(22px, 5vw, 64px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(21, 21, 20, 0.96), rgba(21, 21, 20, 0.9)),
    var(--ink);
}

.lookbook h2 {
  font-size: clamp(2.3rem, 4.5vw, 4.8rem);
}

.lookbook-copy p {
  max-width: 250px;
  margin: 30px 0 46px;
  color: rgba(255, 250, 242, 0.78);
}

.text-link.light {
  color: var(--white);
}

.lookbook-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-height: 430px;
  border: 1px solid var(--light-line);
  overflow: hidden;
}

.look {
  position: relative;
  margin: 0;
  min-height: 430px;
  overflow: hidden;
  border-right: 1px solid var(--light-line);
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 250, 242, 0.18), transparent 18%),
    linear-gradient(180deg, var(--tone-a), var(--tone-b));
}

.look:last-child {
  border-right: 0;
}

.look::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 54%;
  min-width: 110px;
  height: 76%;
  border-radius: 52% 52% 0 0;
  background:
    linear-gradient(120deg, transparent 0 44%, rgba(255, 255, 255, 0.24) 45% 47%, transparent 48%),
    linear-gradient(180deg, var(--garment-a), var(--garment-b));
  transform: translateX(-50%);
  clip-path: polygon(50% 0, 70% 16%, 84% 100%, 16% 100%, 30% 16%);
}

.look::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 52px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #2c241f;
  box-shadow: 0 56px 0 32px rgba(35, 31, 29, 0.28);
  transform: translateX(-50%);
}

.look span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  color: rgba(255, 250, 242, 0.82);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.ruby {
  --tone-a: #6b5a51;
  --tone-b: #2a211f;
  --garment-a: #7a1e2d;
  --garment-b: #26070d;
}

.ivory {
  --tone-a: #b9ada0;
  --tone-b: #5c534b;
  --garment-a: #f0e8dc;
  --garment-b: #b8aa99;
}

.obsidian {
  --tone-a: #77706a;
  --tone-b: #2a2928;
  --garment-a: #1c1b1b;
  --garment-b: #050505;
}

.pearl {
  --tone-a: #c9beb1;
  --tone-b: #746b62;
  --garment-a: #fff9ec;
  --garment-b: #d8ccbc;
}

.process {
  padding: clamp(64px, 8vw, 92px) clamp(22px, 5vw, 64px) clamp(76px, 9vw, 112px);
  text-align: center;
  background: var(--paper);
}

.process h2::after {
  margin-left: auto;
  margin-right: auto;
}

.process > p {
  margin: 18px 0 54px;
}

.process-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
  margin: 0;
  padding: 34px 0 0;
  list-style: none;
}

.process-list::before {
  content: "";
  position: absolute;
  top: 48px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: var(--metal);
}

.process-list li {
  position: relative;
  padding: 0 18px;
}

.process-list span {
  position: relative;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  min-width: 44px;
  min-height: 44px;
  margin-bottom: 52px;
  color: var(--ruby);
  background: var(--paper);
  font-family: var(--serif);
  font-size: 1.3rem;
}

.process-list p {
  margin: 14px auto 0;
  max-width: 220px;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.appointment {
  display: grid;
  grid-template-columns: minmax(250px, 0.8fr) minmax(360px, 1.15fr) minmax(250px, 0.72fr);
  min-height: 480px;
  color: var(--white);
  background: var(--ink);
}

.appointment-copy,
.contact-card {
  padding: clamp(42px, 6vw, 76px) clamp(28px, 5vw, 72px);
}

.appointment-copy h2 {
  max-width: 420px;
  font-size: clamp(2.4rem, 4.7vw, 5rem);
}

.appointment-copy p {
  max-width: 340px;
  margin: 28px 0 32px;
  color: rgba(255, 250, 242, 0.82);
}

.appointment-image {
  position: relative;
  min-height: 430px;
  overflow: hidden;
}

.appointment-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 45% center;
  filter: saturate(0.82) contrast(1.04);
}

.appointment-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(21, 21, 20, 0.18), rgba(21, 21, 20, 0.32));
}

.contact-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  color: rgba(255, 250, 242, 0.82);
  font-style: normal;
  background: #1e1e1d;
}

.contact-card p {
  margin: 0;
}

.contact-card a:hover {
  color: #f0c9c4;
}

.site-footer {
  min-height: 72px;
  padding: 22px clamp(22px, 5vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255, 250, 242, 0.62);
  background: #0b0b0b;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
  text-transform: none;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(18px, 4vw, 48px);
}

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

  .header-cta,
  .site-nav {
    display: none;
  }

  .menu-button {
    justify-self: end;
    width: 46px;
    height: 42px;
    display: grid;
    place-content: center;
    gap: 8px;
    border: 1px solid rgba(255, 250, 242, 0.5);
    color: var(--white);
    background: rgba(0, 0, 0, 0.18);
  }

  .menu-button span {
    width: 20px;
    height: 1px;
    background: currentColor;
  }

  .site-header.is-open .site-nav {
    position: absolute;
    top: 72px;
    left: 20px;
    right: 20px;
    display: grid;
    gap: 0;
    padding: 12px 0;
    color: var(--ink);
    background: var(--paper);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  }

  .site-header.is-open .site-nav a {
    padding: 15px 20px;
    border-bottom: 1px solid var(--line);
  }

  .site-header.is-open .site-nav a:last-child {
    border-bottom: 0;
  }

  .intro,
  .lookbook,
  .appointment {
    grid-template-columns: 1fr;
  }

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

  .process-list {
    grid-template-columns: 1fr;
    max-width: 640px;
    margin: 0 auto;
    gap: 30px;
  }

  .process-list::before {
    display: none;
  }

  .process-list span {
    margin-bottom: 18px;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 70px;
    padding: 18px 18px;
  }

  .hero {
    min-height: 88vh;
  }

  .hero > img {
    object-position: 60% center;
  }

  .hero-content {
    width: calc(100% - 36px);
    padding: 18vh 0 14vh 18px;
  }

  .hero h1 {
    font-size: clamp(4.1rem, 22vw, 7.4rem);
  }

  .hero p {
    font-size: 0.82rem;
    letter-spacing: 0.1em;
  }

  .hero-actions,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .header-cta {
    width: 100%;
  }

  .service-grid,
  .lookbook-strip {
    grid-template-columns: 1fr;
  }

  .service-grid {
    border-top: 1px solid var(--line);
  }

  .service-grid article {
    min-height: 240px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .lookbook-strip,
  .look {
    min-height: auto;
  }

  .look {
    height: 320px;
    border-right: 0;
    border-bottom: 1px solid var(--light-line);
  }

  .appointment-image {
    min-height: 300px;
  }
}
