:root {
  --burgundy: #3b061b;
  --burgundy-2: #520b28;
  --plum: #250212;
  --pink: #f6cfc6;
  --blush: #fff4f0;
  --cream: #fffaf4;
  --gold: #d5a24b;
  --gold-light: #f2c981;
  --sage: #a9ad95;
  --ink: #2c1019;
  --muted: #6f4e56;
  --line: rgba(82, 11, 40, .18);
  --shadow: 0 18px 50px rgba(42, 2, 18, .18);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input,
select {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 20;
  background: var(--cream);
  color: var(--burgundy);
  padding: .7rem 1rem;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 92px;
  padding: 16px clamp(18px, 5vw, 58px);
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 24px;
  align-items: center;
  color: var(--cream);
  background-image:
    linear-gradient(rgba(59, 6, 27, .95), rgba(59, 6, 27, .95)),
    image-set(
      url("assets/cache/top-bar.webp") type("image/webp"),
      url("assets/top-bar.png") type("image/png")
    );
  background-position: center;
  background-size: cover;
  box-shadow: 0 8px 24px rgba(37, 2, 18, .22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.brand-mark {
  width: 58px;
  aspect-ratio: 1;
  flex: 0 0 auto;
  border-radius: 50%;
  background-color: #d5a24b;
  background-image: image-set(
    url("assets/cache/logo-atelier-photo.webp") type("image/webp"),
    url("assets/cache/logo-atelier-photo.png") type("image/png")
  );
  background-position: center;
  background-size: 118% auto;
  background-repeat: no-repeat;
  box-shadow: 0 0 0 2px rgba(242, 201, 129, .55);
}

.brand strong,
h1,
h2 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: .98;
  letter-spacing: 0;
}

.brand strong {
  display: block;
  color: #fff0d1;
  font-size: clamp(1.45rem, 3.4vw, 2.8rem);
}

.brand small {
  display: block;
  color: var(--gold-light);
  font-size: clamp(.68rem, 1.5vw, .95rem);
  letter-spacing: .23em;
  text-transform: uppercase;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  gap: 20px;
  color: rgba(255, 250, 244, .82);
  font-size: .95rem;
}

.main-nav a:hover,
.main-nav a:focus {
  color: var(--gold-light);
}

.header-cta {
  min-width: 150px;
  padding: 14px 28px;
  text-align: center;
  color: #321012;
  font-family: var(--serif);
  font-size: 1.35rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #f3ca82, #d79d45);
  box-shadow: inset 0 0 0 2px rgba(255, 237, 190, .65), 0 8px 18px rgba(0, 0, 0, .25);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span:not(.sr-only) {
  display: block;
  height: 4px;
  margin: 7px 3px;
  border-radius: 999px;
  background: #f4dfc2;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.hero {
  min-height: min(820px, calc(100vh - 92px));
  padding: clamp(64px, 10vw, 120px) clamp(24px, 7vw, 84px);
  background-image: image-set(
    url("assets/cache/hero-bg.webp") type("image/webp"),
    url("assets/hero-bg.png") type("image/png")
  );
  background-position: right bottom;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-inner {
  max-width: 760px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 26px;
  color: var(--burgundy-2);
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: clamp(.86rem, 2.1vw, 1.08rem);
}

.eyebrow span {
  width: 18px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--burgundy-2);
}

h1 {
  max-width: 720px;
  margin: 0 0 28px;
  color: var(--plum);
  font-size: clamp(3.2rem, 9vw, 5.8rem);
}

.hero-copy {
  max-width: 640px;
  margin: 0 0 34px;
  color: #40242b;
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
}

.hero-actions {
  display: grid;
  gap: 18px;
  max-width: 500px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  min-height: 60px;
  padding: 16px 26px;
  border: 0;
  border-radius: 28px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
}

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

.btn-primary {
  color: #f8d17d;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 3vw, 1.65rem);
  background-image:
    linear-gradient(rgba(82, 7, 38, .95), rgba(82, 7, 38, .95)),
    image-set(
      url("assets/cache/cta-button.webp") type("image/webp"),
      url("assets/cta-button.png") type("image/png")
    );
  background-position: center;
  background-size: cover;
  box-shadow: inset 0 0 0 2px rgba(213, 162, 75, .8), 0 10px 22px rgba(59, 6, 27, .28);
}

.btn-secondary {
  color: var(--ink);
  background: rgba(255, 250, 244, .5);
  border: 2px solid rgba(128, 49, 62, .25);
  box-shadow: 0 10px 28px rgba(59, 6, 27, .08);
}

.trust-band,
.tags-band,
.site-footer {
  color: var(--cream);
  background-image:
    linear-gradient(rgba(59, 6, 27, .97), rgba(59, 6, 27, .97)),
    image-set(
      url("assets/cache/proof-strip.webp") type("image/webp"),
      url("assets/proof-strip.png") type("image/png")
    );
  background-position: center;
  background-size: cover;
}

.trust-band {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 46px clamp(18px, 6vw, 90px);
  border-top: 8px solid transparent;
}

.trust-item {
  min-height: 118px;
  display: grid;
  place-items: center;
  text-align: center;
  border-right: 1px solid rgba(213, 162, 75, .65);
}

.trust-item:last-child {
  border-right: 0;
}

.line-icon {
  color: var(--gold-light);
  font-size: 2.8rem;
  line-height: 1;
}

.trust-item strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 4vw, 2.55rem);
  line-height: 1;
}

.trust-item small {
  display: block;
  max-width: 190px;
  color: rgba(255, 250, 244, .9);
  font-size: clamp(1rem, 2.4vw, 1.35rem);
  line-height: 1.25;
}

.tags-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 5vw, 52px);
  padding: 46px clamp(20px, 8vw, 120px) 70px;
  border-top: 1px solid rgba(213, 162, 75, .75);
}

.tag-card {
  min-height: 150px;
  display: grid;
  place-items: center;
  padding: 34px 24px;
  color: var(--ink);
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 3vw, 2rem);
  border-radius: 34px;
  background: linear-gradient(145deg, #c3c6aa, #efe1d0);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .32), var(--shadow);
}

.tag-card:nth-child(2) {
  background: linear-gradient(145deg, #f3c3bb, #f8d8cf);
}

.tag-card:nth-child(3) {
  background: linear-gradient(145deg, #fff0df, #e9dccd);
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(68px, 10vw, 118px) clamp(22px, 5vw, 48px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .8fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}

.section-kicker {
  margin-bottom: 16px;
  color: var(--gold);
  font-size: .82rem;
}

h2 {
  margin: 0 0 20px;
  color: var(--burgundy);
  font-size: clamp(2.2rem, 5vw, 4rem);
}

h3 {
  margin: 0 0 10px;
  color: var(--burgundy);
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.15;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 32px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(213, 162, 75, .16);
}

.booking-card {
  position: sticky;
  top: 118px;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdfa;
  box-shadow: var(--shadow);
}

.booking-card h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.price {
  margin: 0 0 22px;
  color: var(--muted);
}

.price strong {
  color: var(--burgundy);
  font-size: 1.45rem;
}

.lead-form {
  display: grid;
  gap: 14px;
}

.lead-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 700;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 50px;
  padding: 10px 13px;
  color: var(--ink);
  border: 1px solid rgba(82, 11, 40, .22);
  border-radius: 8px;
  background: var(--cream);
}

.form-button {
  width: 100%;
  margin-top: 8px;
  font-size: 1.2rem;
}

.microcopy {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: .9rem;
}

.process {
  max-width: 1240px;
}

.steps,
.offer-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.steps article,
.offer-grid article,
.review-grid blockquote {
  margin: 0;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdfa;
  box-shadow: 0 12px 34px rgba(42, 2, 18, .08);
}

.steps span {
  display: grid;
  place-items: center;
  width: 46px;
  aspect-ratio: 1;
  margin-bottom: 18px;
  color: var(--burgundy);
  font-family: var(--serif);
  font-size: 1.5rem;
  border-radius: 50%;
  background: var(--gold-light);
}

.gallery-section {
  max-width: 1220px;
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(300px, .75fr);
  gap: clamp(30px, 6vw, 70px);
  align-items: center;
}

.gallery-copy {
  max-width: 620px;
}

.gallery-section picture {
  display: block;
}

.gallery-section img {
  width: 100%;
  max-height: 650px;
  object-fit: cover;
  object-position: 50% 58%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.offers {
  max-width: 1240px;
}

.offer-grid article:nth-child(2) {
  border-color: rgba(213, 162, 75, .45);
  background: linear-gradient(180deg, #fffdfa, #fff3e6);
}

.testimonials {
  max-width: 1060px;
}

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

blockquote p {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.35;
}

cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.faq {
  max-width: 900px;
}

details {
  border-top: 1px solid var(--line);
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  padding: 22px 0;
  color: var(--burgundy);
  font-weight: 900;
  cursor: pointer;
}

details p {
  margin: 0 0 22px;
  color: var(--muted);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  padding: 46px clamp(22px, 6vw, 76px);
}

.site-footer strong {
  display: block;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 1.7rem;
}

.site-footer p {
  margin: 6px 0 0;
  color: rgba(255, 250, 244, .82);
}

.sticky-booking {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9;
  display: none;
  padding: 13px 22px;
  color: #321012;
  font-weight: 900;
  border-radius: 999px;
  background: linear-gradient(180deg, #f3ca82, #d79d45);
  box-shadow: 0 8px 22px rgba(37, 2, 18, .28);
}

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

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 12px 24px 24px;
    background: var(--burgundy);
    box-shadow: 0 18px 28px rgba(37, 2, 18, .22);
  }

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

  .main-nav a {
    padding: 12px 0;
  }

  .menu-button {
    display: block;
  }

  .split,
  .gallery-section {
    grid-template-columns: 1fr;
  }

  .booking-card {
    position: static;
  }

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

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  .site-header {
    min-height: 76px;
    padding: 12px 16px;
  }

  .brand-mark {
    width: 44px;
    background-size: 118% auto;
  }

  .brand strong {
    font-size: 1.35rem;
  }

  .brand small {
    max-width: 188px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: .58rem;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 710px;
    padding: 54px 22px 80px;
    background-position: 64% bottom;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.6rem);
  }

  .hero-copy {
    max-width: 92%;
  }

  .btn {
    width: 100%;
    min-height: 58px;
  }

  .trust-band {
    grid-template-columns: 1fr;
    padding: 44px 20px 24px;
  }

  .trust-item {
    min-height: 100px;
    border-right: 0;
    border-bottom: 1px solid rgba(213, 162, 75, .45);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .tags-band {
    grid-template-columns: 1fr;
    padding: 36px 22px 54px;
  }

  .tag-card {
    min-height: 118px;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
  }

  .sticky-booking {
    display: inline-flex;
  }
}

@media (max-width: 430px) {
  .hero {
    background-position: 67% bottom;
  }

  .eyebrow {
    gap: 10px;
    letter-spacing: .14em;
  }

  .section {
    padding-left: 18px;
    padding-right: 18px;
  }
}
