:root {
  --ivory: #fbf7ef;
  --paper: #fffdf8;
  --ink: #2b2118;
  --muted: #705e4e;
  --gold: #b8873a;
  --green: #0d4f39;
  --burgundy: #4a1418;
  --navy: #132f4f;
  --line: rgba(184, 135, 58, 0.28);
  --shadow: 0 20px 60px rgba(43, 33, 24, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: "Inter", Arial, sans-serif;
  letter-spacing: 0;
}

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

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 5vw;
  color: var(--paper);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled,
.site-header.open {
  color: var(--ink);
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 10px 40px rgba(43, 33, 24, 0.08);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: inline-grid;
  gap: 2px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1;
}

.brand-mark small {
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.92rem;
  font-weight: 600;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
}

.menu-toggle span {
  width: 17px;
  height: 1px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: calc(100svh - 70px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--paper);
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
  object-position: center right;
  transform: scale(1.01);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(21, 14, 9, 0.86) 0%, rgba(21, 14, 9, 0.58) 43%, rgba(21, 14, 9, 0.08) 78%),
    linear-gradient(0deg, rgba(21, 14, 9, 0.32), rgba(21, 14, 9, 0.08));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(650px, 90vw);
  margin-left: 5vw;
  padding-top: 76px;
}

.eyebrow,
.card-kicker,
.intro-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
h3,
blockquote {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  line-height: 0.98;
}

h1 {
  max-width: 8ch;
  font-size: 5.7rem;
}

h2 {
  font-size: 3.25rem;
}

h3 {
  font-size: 1.85rem;
}

p {
  line-height: 1.75;
}

.hero-copy {
  max-width: 550px;
  margin: 24px 0 0;
  color: rgba(255, 253, 248, 0.9);
  font-size: 1.08rem;
}

.hero-actions,
.section-heading,
.appointment-copy {
  display: grid;
  gap: 16px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  margin-top: 34px;
}

.button,
.text-button {
  min-height: 48px;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.button {
  border-radius: 999px;
  padding: 0 24px;
}

.button.primary {
  color: #fffaf0;
  background: var(--burgundy);
  border-color: var(--burgundy);
}

.button.ghost {
  color: currentColor;
  border-color: currentColor;
  background: rgba(255, 255, 255, 0.08);
}

.button.dark {
  color: var(--paper);
}

.intro-band {
  padding: 22px 5vw;
  color: var(--paper);
  background: var(--green);
}

.intro-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.7fr repeat(3, 1fr);
  gap: 18px;
  align-items: center;
}

.intro-grid p {
  margin: 0;
  font-size: 0.94rem;
}

.section {
  padding: 110px 5vw;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-heading p:last-child {
  margin: 0;
  color: var(--muted);
}

.collection-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.collection-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.collection-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 450ms ease;
}

.collection-card:hover img {
  transform: scale(1.035);
}

.card-body {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.card-body p {
  margin: 0;
  color: var(--muted);
}

.card-body h3 {
  margin-top: 2px;
}

.text-button {
  justify-self: start;
  min-height: 36px;
  padding: 0;
  color: var(--burgundy);
  background: transparent;
}

.atelier-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(420px, 1.15fr);
  gap: 54px;
  padding: 96px 5vw;
  color: var(--paper);
  background: var(--burgundy);
}

.atelier-copy {
  max-width: 520px;
  align-self: center;
}

.atelier-copy p:last-child {
  color: rgba(255, 253, 248, 0.78);
}

.atelier-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255, 253, 248, 0.22);
  border: 1px solid rgba(255, 253, 248, 0.22);
}

.atelier-steps div {
  min-height: 220px;
  padding: 30px;
  background: var(--burgundy);
}

.atelier-steps span {
  color: var(--gold);
  font-weight: 700;
}

.atelier-steps h3 {
  margin: 28px 0 12px;
  font-size: 1.65rem;
}

.atelier-steps p {
  margin: 0;
  color: rgba(255, 253, 248, 0.75);
}

.measure-section {
  background:
    linear-gradient(180deg, rgba(19, 47, 79, 0.05), rgba(19, 47, 79, 0)),
    var(--paper);
}

.service-tabs {
  width: min(640px, 100%);
  min-height: 58px;
  margin: 0 auto 22px;
  padding: 6px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--ivory);
}

.tab-button {
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-weight: 700;
}

.tab-button.active {
  color: var(--paper);
  background: var(--navy);
}

.service-panel {
  width: min(900px, 100%);
  min-height: 245px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 38px;
  align-items: center;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.service-panel.hidden {
  display: none;
}

.service-panel p,
.service-panel li {
  color: var(--muted);
}

.service-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.service-panel li {
  min-height: 38px;
  padding-left: 18px;
  border-left: 3px solid var(--gold);
}

.quote-section {
  min-height: 420px;
  display: grid;
  place-items: center;
  padding: 80px 5vw;
  text-align: center;
  color: var(--paper);
  background: var(--navy);
}

.quote-section > div {
  max-width: 780px;
}

.quote-mark {
  margin: 0 0 10px;
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 5rem;
  line-height: 0.6;
}

blockquote {
  font-size: 3.2rem;
}

.quote-sub {
  margin: 28px 0 0;
  color: rgba(255, 253, 248, 0.7);
  font-weight: 700;
  text-transform: uppercase;
}

.appointment-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(420px, 1fr);
  gap: 54px;
  padding: 110px 5vw;
  background: var(--ivory);
}

.appointment-copy {
  align-content: start;
  max-width: 520px;
}

.appointment-copy p:last-child {
  color: var(--muted);
}

.appointment-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(112, 94, 78, 0.28);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 135, 58, 0.14);
}

.full {
  grid-column: 1 / -1;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-weight: 700;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px 5vw;
  color: var(--paper);
  background: #1e1712;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 253, 248, 0.72);
}

.footer-brand {
  color: var(--paper) !important;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

@media (max-width: 920px) {
  .site-nav {
    position: fixed;
    top: 76px;
    left: 16px;
    right: 16px;
    display: none;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: grid;
    gap: 4px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero {
    min-height: 86svh;
  }

  .hero-bg {
    object-position: 68% center;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(21, 14, 9, 0.88) 0%, rgba(21, 14, 9, 0.58) 52%, rgba(21, 14, 9, 0.08) 100%);
  }

  .hero-content {
    align-self: end;
    margin: 0 auto;
    padding: 0 0 54px;
  }

  h1 {
    font-size: 4.2rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .intro-grid,
  .collection-grid,
  .atelier-band,
  .appointment-section,
  .service-panel {
    grid-template-columns: 1fr;
  }

  .intro-grid {
    gap: 10px;
  }

  .atelier-band,
  .appointment-section,
  .section {
    padding: 76px 5vw;
  }

  .atelier-steps {
    grid-template-columns: 1fr;
  }

  .service-panel {
    padding: 28px;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 68px;
    padding: 14px 18px;
  }

  .site-nav {
    top: 68px;
  }

  .hero-content {
    width: calc(100% - 36px);
  }

  h1 {
    font-size: 3.25rem;
  }

  h2,
  blockquote {
    font-size: 2.15rem;
  }

  h3 {
    font-size: 1.55rem;
  }

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

  .button {
    width: 100%;
  }

  .service-tabs,
  .appointment-form {
    grid-template-columns: 1fr;
  }

  .service-tabs {
    border-radius: 8px;
  }

  .tab-button {
    min-height: 46px;
    border-radius: 6px;
  }

  .appointment-form {
    padding: 22px;
  }
}
