/* Atelier Sareno — site styles */

:root {
  --cream: #FBF9F5;
  --panel: #F1ECE3;
  --ink: #241F1A;
  --brass: #B08D57;
  --dark: #1B1918;
  --dark-text: #F1ECE3;
  --serif: "Cormorant Garamond", "Times New Roman", Times, serif;
  --sans: "Jost", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
}

* { box-sizing: border-box; }

[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--brass); }

::selection { background: var(--brass); color: var(--cream); }

h1, h2, h3 { margin: 0; font-family: var(--serif); font-weight: 300; }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 48px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(36, 31, 26, 0.08);
}
.wordmark {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--ink);
}
.site-nav {
  display: flex;
  gap: 26px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.site-nav a { color: #000; }
.site-nav a.is-active { color: var(--brass); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(36, 31, 26, 0.2);
  color: var(--ink);
  padding: 8px 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}

/* dark header variant (services page) */
.site-header--dark {
  background: rgba(27, 25, 24, 0.9);
  border-bottom-color: rgba(241, 236, 227, 0.12);
}
.site-header--dark .wordmark { color: var(--dark-text); }
.site-header--dark .site-nav a { color: var(--dark-text); }
.site-header--dark .site-nav a.is-active { color: var(--brass); }
.site-header--dark .nav-toggle { color: var(--dark-text); border-color: rgba(241, 236, 227, 0.3); }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.btn--brass { background: var(--brass); color: var(--cream); }
.btn--brass:hover { background: var(--ink); color: var(--cream); }
.btn--ghost-light { background: transparent; border-color: rgba(251, 249, 245, 0.35); color: var(--cream); }
.btn--ghost-light:hover { border-color: var(--cream); color: var(--cream); }
.btn--ghost-dark { background: transparent; border-color: rgba(36, 31, 26, 0.2); color: var(--ink); }
.btn--ghost-dark:hover { border-color: var(--brass); color: var(--ink); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center20%;
  z-index: 0;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18,16,14,.48) 0%, rgba(18,16,14,.28) 55%, rgba(18,16,14,.12) 100%);
  z-index: 1;
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
  max-width: 660px;
  padding: 96px 32px;
  color: var(--cream);
}
.hero__title {
  font-size: clamp(36px, 4.6vw, 72px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--cream);
  text-shadow: 0 2px 8px rgba(0,0,0,.45);
}

.hero__lede {
  margin: 0;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(18px, 2.1vw, 22px);
  line-height: 1.35;
  color: var(--cream);
  max-width: 52ch;
  text-wrap: pretty;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.hero__stats {
  display: flex;
  gap: 44px;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 20px;
  margin-top: 8px;
  border-top: 1px solid rgba(251, 249, 245, 0.2);
}
.stat { display: flex; flex-direction: column; gap: 6px; }
.stat__value { font-family: var(--serif); font-size: 34px; color: var(--cream); }
.stat__label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(251, 249, 245, 0.7);
}

/* ---------- marquee strip ---------- */
.strip {
  display: flex;
  gap: 70px;
  padding: 22px 48px;
  border-top: 1px solid rgba(36, 31, 26, 0.08);
  border-bottom: 1px solid rgba(36, 31, 26, 0.08);
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(36, 31, 26, 0.75);
  white-space: nowrap;
  overflow: hidden;
}

/* ---------- split CTA ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  border-top: 1px solid rgba(36, 31, 26, 0.1);
  background: var(--panel);
}
.split__copy {
  padding: 120px 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.split__copy h2 { font-size: clamp(40px, 5.4vw, 80px); line-height: 1; max-width: 14ch; }
.split__copy p {
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(36, 31, 26, 0.75);
  max-width: 52ch;
  text-wrap: pretty;
}
.split__media {
  aspect-ratio: 4 / 3;
  border-left: 1px solid rgba(36, 31, 26, 0.1);
  overflow: hidden;
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- services page ---------- */
.page--dark { background: var(--dark); color: var(--dark-text); }
.page--dark .page-title { color: var(--dark-text); }

.page-title-band { padding: 70px 48px 40px; text-align: center; }
.page-title { font-size: clamp(34px, 4vw, 54px); }

.service-group { padding: 0 48px 60px; }
.service-group__title {
  margin: 0 0 28px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 34px;
}
.service-row {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(241, 236, 227, 0.12);
}
.service-row__media {
  width: 220px;
  height: 220px;
  flex: none;
  border: 1px solid rgba(241, 236, 227, 0.14);
  overflow: hidden;
  background: #14120F;
}
.service-row__media img { width: 100%; height: 100%; object-fit: cover; }
.service-row__body { flex: 1; display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.service-row__body h3 { font-family: var(--serif); font-weight: 400; font-size: 28px; }
.service-row__meta { font-size: 14px; color: rgba(241, 236, 227, 0.6); }
.service-row__note {
  margin: 6px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(241, 236, 227, 0.6);
  max-width: 52ch;
}
.service-row__cta {
  flex: none;
  background: var(--dark-text);
  color: var(--dark);
  padding: 16px 26px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.5;
}
.service-row__cta:hover { background: var(--brass); color: var(--dark); }


/* ---------- about page ---------- */
.duo { display: grid; grid-template-columns: 1fr 1fr; }
.duo--border-bottom { border-bottom: 1px solid rgba(36, 31, 26, 0.1); }
.duo--panel { background: var(--panel); border-top: 1px solid rgba(36, 31, 26, 0.1); grid-template-columns: 1fr; justify-items: center; }
.duo__text {
  padding: 100px 56px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-right: 1px solid rgba(36, 31, 26, 0.1);
}
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass);
}
.duo__text h1 { font-size: clamp(42px, 5.2vw, 78px); line-height: 1; letter-spacing: -0.02em; }
.duo__text h2 { font-size: clamp(34px, 3.8vw, 54px); line-height: 1.05; }
.duo__text p {
  margin: 0;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(36, 31, 26, 0.82);
  max-width: 46ch;
  text-wrap: pretty;
}
.duo__media { min-height: 520px; overflow: hidden; }
.duo__media img { width: 100%; height: 100%; object-fit: cover; }
.contact-block {
  padding: 56px 56px;
  text-align: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #000;
  line-height: 2.3;
}
.contact-block .btn { margin-top: 28px; align-self: center; line-height: 1; }

/* ---------- appointment page ---------- */
.booking-wrap { flex: 1; display: flex; justify-content: center; }
.booking {
  padding: 60px 64px 100px;
  background: var(--panel);
  display: flex;
  flex-direction: column;
  max-width: 860px;
  width: 100%;
}
.booking__media {
  aspect-ratio: 16 / 9;
  width: calc(100% + 128px);
  margin-left: -64px;
  margin-bottom: 36px;
  border: 1px solid rgba(36, 31, 26, 0.1);
  background: var(--panel);
  overflow: hidden;
}
.booking__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 32%; }
.booking h1 {
  font-size: clamp(40px, 5.2vw, 76px);
  line-height: 1;
  letter-spacing: -0.02em;
  text-align: center;
}
.booking__lede {
  margin: 16px auto 36px;
  font-size: 18px;
  line-height: 1.75;
  color: rgba(36, 31, 26, 0.8);
  max-width: 46ch;
  text-align: center;
  text-wrap: pretty;
}

.form { display: flex; flex-direction: column; gap: 20px; font-size: 0.92em; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field__label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
}
.field input,
.field textarea {
  background: none;
  border: none;
  border-bottom: 1px solid rgba(36, 31, 26, 0.16);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 300;
  padding: 10px 0;
  outline: none;
}
.field textarea { resize: vertical; }
.field input:focus,
.field textarea:focus { border-bottom-color: var(--brass); }
.field input::placeholder,
.field textarea::placeholder { color: rgba(36, 31, 26, 0.35); }

.select-wrap { position: relative; }
.select-wrap select {
  width: 100%;
  background: none;
  border: 1px solid rgba(36, 31, 26, 0.16);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  padding: 14px 40px 14px 16px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  border-radius: 0;
}
.select-wrap select:focus { border-color: var(--brass); }
.select-wrap::after {
  content: "\25BE";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 12px;
  color: var(--ink);
}

.calendar {
  border: 1px solid rgba(36, 31, 26, 0.16);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.calendar__head { display: flex; align-items: center; justify-content: space-between; }
.calendar__nav {
  background: none;
  border: none;
  color: var(--ink);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  padding: 6px 12px;
}
.calendar__nav:hover { color: var(--brass); }
.calendar__month { font-family: var(--serif); font-size: 18px; font-weight: 700; color: var(--ink); }
.calendar__weekdays,
.calendar__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; justify-items: center; }
.calendar__weekdays {
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(36, 31, 26, 0.5);
}
.calendar__day {
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 13px;
  cursor: pointer;
  border-radius: 50%;
  transition: background .15s ease, color .15s ease;
}
.calendar__day:hover:not(:disabled) { background: rgba(176, 141, 87, 0.2); }
.calendar__day:disabled { color: rgba(36, 31, 26, 0.28); cursor: default; }
.calendar__day.is-empty { visibility: hidden; }
.calendar__day.is-selected { background: var(--brass); color: var(--cream); }
.calendar__times {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(36, 31, 26, 0.1);
}
.time-slot {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(36, 31, 26, 0.16);
  padding: 9px 14px;
  font-family: var(--sans);
  font-size: 12px;
  cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.time-slot:hover { border-color: var(--brass); }
.time-slot.is-selected { background: var(--brass); color: var(--cream); border-color: var(--brass); }

.form__error {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #9B3A2F;
}
.form__submit { align-self: flex-start; margin-top: 8px; }

.confirmation { display: flex; flex-direction: column; gap: 20px; padding: 20px 0 8px; }
.confirmation h2 { font-size: clamp(30px, 3.6vw, 44px); line-height: 1.1; }
.confirmation__note { font-size: 15px; opacity: 0.75; max-width: 42ch; }

.how-it-works { max-width: 900px; margin: 0 auto; padding: 72px 48px; display: flex; flex-direction: column; gap: 22px; border: 1px solid rgba(241, 236, 227, 0.16); }
.how-it-works h2 { font-size: clamp(34px, 4.4vw, 48px); font-weight: 400; margin-bottom: 6px; }
.how-it-works__step { display: flex; flex-direction: column; gap: 16px; padding-bottom: 16px; border-bottom: 1px solid rgba(36, 31, 26, 0.16); }
.how-it-works__label { font-family: var(--mono); font-size: 16px; letter-spacing: 0.1em; }
.how-it-works__step p { font-family: var(--serif); font-size: 22px; line-height: 1.5; max-width: 60ch; }
.how-it-works__cta {
  align-self: flex-start;
  margin-top: 24px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 6px;
}
.how-it-works--dark .how-it-works__step { border-bottom-color: rgba(241, 236, 227, 0.16); }
.how-it-works--dark .how-it-works__cta { color: var(--dark-text); }
@media (max-width: 640px) {
  .how-it-works { padding: 48px 24px; }
}
.confirmation__summary {
  font-family: var(--mono);
  font-size: 12px;
  line-height: 2;
  letter-spacing: 0.06em;
  color: rgba(36, 31, 26, 0.75);
}
.confirmation__actions { display: flex; gap: 12px; flex-wrap: wrap; }

.booking__contact {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 32px;
  padding: 28px 32px;
  border: 1px solid rgba(36, 31, 26, 0.16);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.9;
}

/* ---------- footer ---------- */
.site-footer { background: var(--cream); color: var(--ink); }
.site-footer__mark {
  font-family: "Times New Roman", Times, serif;
  font-weight: 600;
  font-size: clamp(36px, 10vw, 170px);
  line-height: 0.9;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 60px 24px 40px;
  color: transparent;
  -webkit-text-stroke: 1.5px #000;
  text-stroke: 1.5px #000;
}
.site-footer__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  padding: 0 48px 48px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.site-footer__nav a { color: var(--ink); }
.site-footer__legal {
  border-top: 1px solid rgba(36, 31, 26, 0.16);
  padding: 22px 48px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--brass);
}

/* ---------- 404 ---------- */
.notfound {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  text-align: center;
  padding: 80px 32px;
}
.notfound h1 { font-size: clamp(48px, 8vw, 110px); line-height: 1; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .site-header { padding: 16px 24px; }
  .wordmark { font-size: 20px; letter-spacing: 0.16em; }
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid rgba(36, 31, 26, 0.1);
    display: none;
  }
  .site-header--dark .site-nav { background: var(--dark); }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 16px 24px; border-bottom: 1px solid rgba(36, 31, 26, 0.08); }

  .split, .duo { grid-template-columns: 1fr; }
  .duo__text { border-right: none; border-bottom: 1px solid rgba(36, 31, 26, 0.1); padding: 64px 24px; }
  .duo__media { min-height: 320px; }
  .contact-block { padding: 64px 24px; }
  .split__copy { padding: 72px 24px; }
  .split__media { border-left: none; border-top: 1px solid rgba(36, 31, 26, 0.1); }

  .strip { gap: 40px; font-size: 14px; padding: 18px 24px; }

  .service-group { padding: 0 24px 40px; }
  .service-row { flex-wrap: wrap; gap: 20px; }
  .service-row__media { width: 140px; height: 140px; }
  .service-row__cta { width: 100%; }

  .booking { padding: 40px 24px 72px; }
  .booking__media { width: calc(100% + 48px); margin-left: -24px; }
  .site-footer__nav { gap: 18px; padding: 0 24px 36px; font-size: 11px; }
  .site-footer__legal { padding: 20px 24px; }
  .page-title-band { padding: 48px 24px 28px; }
}

@media (max-width: 480px) {
  .hero__stats { gap: 24px; }
  .stat__value { font-size: 26px; }
  .hero__inner { padding: 72px 20px; }
}

@media print {
  .site-header, .nav-toggle, .hero__media { display: none; }
}

/* ---------- alterations landing page ---------- */
.landing-page {
  --landing-ivory: #f7f1e6;
  --landing-cream: #fbf7ef;
  --landing-nude: #eadfce;
  --landing-gold: #b99258;
  --landing-brown: #493a30;
  --landing-muted: #78695e;
  background: var(--landing-cream);
  color: var(--landing-brown);
}
.landing-page .landing-header {
  position: relative;
  padding: 28px clamp(24px, 6vw, 88px);
  background: var(--landing-cream);
  border-bottom: 0;
  box-shadow: none;
  backdrop-filter: none;
}
.landing-page .wordmark { color: var(--landing-brown); font-size: clamp(22px, 2.1vw, 30px); font-weight: 600; letter-spacing: .08em; }
.landing-page .site-nav { margin-left: auto; }
.landing-page .site-nav a { color: var(--landing-brown); }
.landing-page .site-nav a.is-active, .landing-page .site-nav a:hover { color: var(--landing-gold); }
.landing-header__note { margin-left: 30px; font-family: var(--serif); font-size: 12px; letter-spacing: .09em; text-transform: uppercase; color: var(--landing-muted); }

.landing-hero, .landing-service, .landing-custom {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(340px, .78fr);
  align-items: center;
  gap: clamp(56px, 9vw, 138px);
}
.landing-hero { min-height: 760px; padding: 76px 0 112px; }
.landing-hero__copy { padding-left: clamp(0px, 2vw, 28px); }
.landing-kicker { margin: 0 0 24px; font-size: 11px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--landing-gold); }
.landing-hero h1 { max-width: 12ch; font-size: clamp(48px, 6.1vw, 86px); font-weight: 500; line-height: .98; letter-spacing: -.025em; text-transform: uppercase; }
.landing-rule { display: block; width: 84px; height: 1px; margin: 28px 0; background: var(--landing-gold); }
.landing-intro { max-width: 37ch; margin: 0; font-family: var(--serif); font-size: clamp(19px, 2vw, 24px); line-height: 1.45; color: var(--landing-muted); }
.landing-list { margin: 0; padding: 0; list-style: none; font-family: var(--serif); font-size: clamp(18px, 1.8vw, 22px); line-height: 1.55; color: var(--landing-muted); }
.landing-list--inline { margin-top: 9px; }
.landing-list--inline li { display: inline; }
.landing-list--inline li + li::before { content: " · "; color: var(--landing-gold); }
.landing-button { display: inline-flex; align-items: center; justify-content: center; min-width: 260px; margin-top: 38px; padding: 17px 26px; border: 1px solid rgba(185, 146, 88, .75); background: var(--landing-nude); color: var(--landing-brown); font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; transition: background .2s ease, color .2s ease; }
.landing-button:hover { background: var(--landing-brown); color: var(--landing-cream); }
.landing-photo-frame { margin: 0; padding: clamp(14px, 2vw, 28px); background: var(--landing-ivory); }
.landing-photo-frame img { width: 100%; height: auto; object-fit: contain; }
.landing-hero__media { justify-self: end; width: min(100%, 480px); }

.landing-alterations {
  width: min(1080px, calc(100% - 48px));
  margin: 0 auto 80px;
  padding: clamp(64px, 8vw, 104px);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, .85fr);
  gap: clamp(52px, 8vw, 110px);
  align-items: center;
  background: var(--landing-ivory);
}
.landing-alterations__intro h2 { font-size: clamp(38px, 4.3vw, 58px); font-weight: 500; line-height: 1.03; }
.landing-alterations__intro > p:last-child { max-width: 45ch; margin: 0; font-family: var(--serif); font-size: clamp(18px, 1.7vw, 22px); line-height: 1.55; color: var(--landing-muted); }
.landing-alterations__list { margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; column-gap: 30px; list-style: none; font-family: var(--serif); font-size: 18px; color: var(--landing-muted); }
.landing-alterations__list li { padding: 10px 0; border-bottom: 1px solid rgba(185, 146, 88, .28); }

.landing-services { padding: 18px 0 134px; }
.landing-service { min-height: 660px; padding: 72px 0; }
.landing-service--reverse .landing-service__media { order: 2; }
.landing-service--reverse .landing-service__copy { order: 1; }
.landing-service__media { width: min(100%, 500px); justify-self: center; }
.landing-service__media img { max-height: 570px; }
.landing-service__copy h2, .landing-custom__copy h2, .landing-studio h2 { font-size: clamp(37px, 4.1vw, 58px); font-weight: 500; line-height: 1.04; color: var(--landing-brown); }

.landing-custom { width: 100%; grid-template-columns: minmax(300px, .78fr) minmax(0, 1.22fr); gap: clamp(52px, 8vw, 122px); padding: 92px max(24px, calc((100vw - 1180px) / 2)); background: var(--landing-nude); }
.landing-custom__media { margin: 0; justify-self: end; width: min(100%, 460px); }
.landing-custom__media img { width: 100%; height: auto; object-fit: contain; }
.landing-custom__copy { max-width: 600px; }
.landing-made { margin: 28px 0 18px; color: var(--landing-gold); font-family: var(--serif); font-size: 18px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.landing-custom .landing-button { background: transparent; }
.landing-custom .landing-button:hover { background: var(--landing-brown); }

.landing-studio { padding: 118px 24px; text-align: center; background: var(--landing-ivory); }
.landing-studio .landing-kicker { margin-bottom: 18px; }
.landing-studio address, .landing-studio > p:not(.landing-kicker) { margin: 26px 0 0; font-family: var(--serif); font-size: 19px; font-style: normal; line-height: 1.65; color: var(--landing-muted); }
.landing-studio > p:not(.landing-kicker) { margin-top: 10px; font-style: italic; }
.landing-footer { display: flex; justify-content: space-between; gap: 24px; padding: 26px clamp(24px, 6vw, 88px); border-top: 1px solid rgba(73, 58, 48, .12); background: var(--landing-cream); color: var(--landing-muted); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }

@media (max-width: 900px) {
  .landing-page .landing-header { padding: 20px 24px; }
  .landing-page .site-nav { background: var(--landing-cream); }
  .landing-header__note { display: none; }
  .landing-page .nav-toggle { color: var(--landing-brown); border-color: rgba(73, 58, 48, .25); }
  .landing-hero, .landing-service, .landing-custom { grid-template-columns: 1fr; gap: 48px; }
  .landing-hero { min-height: 0; padding: 72px 0 96px; }
  .landing-hero__media { justify-self: center; width: min(100%, 520px); }
  .landing-service { min-height: 0; padding: 64px 0; }
  .landing-service--reverse .landing-service__media, .landing-service--reverse .landing-service__copy { order: initial; }
  .landing-service__media { justify-self: stretch; width: 100%; }
  .landing-service__copy { padding: 0 8px; }
  .landing-services { padding-bottom: 90px; }
  .landing-alterations { grid-template-columns: 1fr; padding: 64px clamp(24px, 7vw, 56px); }
  .landing-custom { padding: 78px 24px; }
  .landing-custom__media { justify-self: center; width: min(100%, 520px); }
}
@media (max-width: 520px) {
  .landing-hero, .landing-service { width: calc(100% - 36px); }
  .landing-hero h1 { font-size: clamp(43px, 13vw, 62px); }
  .landing-photo-frame { padding: 12px; }
  .landing-alterations { width: calc(100% - 36px); margin-bottom: 52px; padding: 52px 24px; gap: 34px; }
  .landing-alterations__list { grid-template-columns: 1fr; }
  .landing-button { width: 100%; min-width: 0; }
  .landing-studio { padding: 88px 24px; }
  .landing-footer { flex-direction: column; align-items: center; text-align: center; }
}
