:root {
  --cranberry: #8a2b37;
  --cranberry-soft: #b5485a;
  --cream: #faf6f0;
  --beige: #ede3d4;
  --pale: #f5f1ea;
  --chocolate: #36312e;
  --body: #4f4742;
  --gold: #b8963e;
  --light-gold: #d4af6a;
  --holly: #2d4a2d;
  --white: #fffdf8;
  --line: rgba(54, 49, 46, 0.16);
  --shadow: 0 22px 70px rgba(54, 49, 46, 0.14);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--body);
  background: var(--cream);
  font-family: "Jost", Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(184, 150, 62, 0.68);
  outline-offset: 4px;
}

.sr-only {
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  gap: 22px;
  align-items: center;
  min-height: 78px;
  padding: 14px clamp(20px, 4vw, 54px);
  background: rgba(250, 246, 240, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

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

.brand strong {
  display: block;
  color: var(--cranberry);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(32px, 3.5vw, 48px);
  font-style: italic;
  line-height: 0.82;
  white-space: nowrap;
}

.brand span {
  display: block;
  margin-top: 8px;
  color: var(--chocolate);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand img {
  width: clamp(220px, 18vw, 310px);
  max-height: 50px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: var(--chocolate);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav a {
  border-bottom: 1px solid transparent;
  transition: color 180ms ease, border-color 180ms ease;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--cranberry);
  border-color: var(--gold);
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.nav-button,
.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(138, 43, 55, 0.28);
  border-radius: 999px;
  padding: 0 20px;
  color: var(--cranberry);
  background: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button:hover,
.nav-button:hover {
  transform: translateY(-1px);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(138, 43, 55, 0.22);
  border-radius: 999px;
  background: var(--white);
  color: var(--cranberry);
}

.menu-button svg {
  width: 20px;
  height: 20px;
}

.page-swipe {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  transform: translateX(-102%);
  transition: transform 560ms cubic-bezier(0.72, 0, 0.22, 1);
}

.page-swipe span:first-child {
  background: linear-gradient(135deg, var(--cranberry), var(--cranberry-soft));
}

.page-swipe span:last-child {
  background: linear-gradient(135deg, var(--holly), #496a3b);
}

.page-swipe.is-active {
  transform: translateX(0);
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 760ms ease, transform 760ms cubic-bezier(0.2, 0.72, 0.18, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.tilt-card {
  transform-style: preserve-3d;
  transform: perspective(1000px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
  will-change: transform;
}

.tilt-card img {
  transition: transform 640ms cubic-bezier(0.2, 0.72, 0.18, 1), filter 640ms ease;
}

.tilt-card:hover img {
  transform: scale(1.055);
  filter: saturate(1.08) contrast(1.03);
}

.gradient-frame {
  position: relative;
  isolation: isolate;
}

.gradient-frame::before {
  content: "";
  position: absolute;
  inset: -22px;
  z-index: -1;
  border-radius: calc(var(--radius) + 20px);
  background:
    linear-gradient(135deg, rgba(184, 150, 62, 0.24), rgba(138, 43, 55, 0.15) 45%, rgba(45, 74, 45, 0.16)),
    radial-gradient(ellipse at 68% 24%, rgba(212, 175, 106, 0.25), transparent 55%);
  transform: translate3d(calc(var(--parallax-x, 0) * -0.22px), calc(var(--parallax-y, 0) * -0.18px), 0);
  animation: warmGlow 8s ease-in-out infinite alternate;
}

.motion-scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.floating-note,
.floating-ribbon {
  position: absolute;
  border: 1px solid rgba(184, 150, 62, 0.32);
  background: rgba(255, 253, 248, 0.78);
  box-shadow: 0 18px 55px rgba(54, 49, 46, 0.12);
  transform: translate3d(calc(var(--parallax-x, 0) * var(--px, 0.12px)), calc(var(--parallax-y, 0) * var(--py, 0.1px)), 0) rotate(var(--rot, -6deg));
  animation: floatDrift var(--float-speed, 10s) ease-in-out infinite alternate;
}

.floating-note {
  width: 116px;
  height: 148px;
  border-radius: 6px;
}

.floating-note::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 34px;
  height: 1px;
  background: rgba(138, 43, 55, 0.32);
  box-shadow: 0 24px rgba(138, 43, 55, 0.18), 0 48px rgba(138, 43, 55, 0.14);
}

.floating-ribbon {
  width: 180px;
  height: 36px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(138, 43, 55, 0.16), rgba(45, 74, 45, 0.18), rgba(212, 175, 106, 0.24));
}

.floating-note.one {
  right: 18%;
  top: 16%;
  --rot: -9deg;
  --px: -0.14px;
  --py: 0.08px;
}

.floating-ribbon.two {
  right: 5%;
  top: 36%;
  --rot: 12deg;
  --px: 0.12px;
  --py: -0.08px;
  --float-speed: 12s;
}

.floating-note.three {
  left: 8%;
  bottom: 12%;
  width: 92px;
  height: 118px;
  --rot: 8deg;
  --px: 0.16px;
  --py: 0.11px;
  --float-speed: 9s;
}

.page-hero {
  width: min(var(--max), calc(100% - 40px));
  min-height: calc(100svh - 78px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  padding: 58px 0 84px;
  position: relative;
  isolation: isolate;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--chocolate);
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: 0;
}

h1 {
  position: relative;
  z-index: 1;
  isolation: isolate;
  max-width: 650px;
  font-size: clamp(58px, 8vw, 108px);
  font-style: italic;
  font-weight: 700;
  line-height: 0.88;
}

.page-hero h1::after {
  content: "";
  position: absolute;
  left: 0.02em;
  right: 0.08em;
  bottom: 0.04em;
  z-index: -1;
  height: 0.16em;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(138, 43, 55, 0.12), rgba(184, 150, 62, 0.22), rgba(45, 74, 45, 0.12));
  transform: scaleX(0);
  transform-origin: left center;
  animation: pageTitlePaintSwipe 2.8s 0.16s cubic-bezier(0.18, 0.72, 0.18, 1) both;
}

.hero-copy,
.lede {
  max-width: 560px;
  margin: 26px 0 0;
  color: rgba(54, 49, 46, 0.8);
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.72;
}

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

.page-media {
  min-height: 620px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--beige);
  box-shadow: var(--shadow);
}

.page-media img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.media-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 18px;
  color: var(--chocolate);
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
}

.media-caption strong {
  display: block;
  color: var(--cranberry);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 36px;
  font-style: italic;
  line-height: 0.96;
}

.media-caption span {
  display: block;
  margin-top: 8px;
  color: rgba(54, 49, 46, 0.72);
  font-size: 14px;
}

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 88px 0;
}

.section-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.section-kicker {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-title {
  margin-top: 14px;
  font-size: clamp(44px, 5.8vw, 78px);
  font-style: italic;
  line-height: 0.94;
}

.copy-block p {
  margin: 0 0 20px;
  color: rgba(54, 49, 46, 0.78);
  font-size: 18px;
  line-height: 1.75;
}

.content-band {
  background: var(--chocolate);
  color: var(--cream);
}

.content-band h2,
.content-band h3 {
  color: var(--cream);
}

.content-band p,
.content-band li {
  color: rgba(250, 246, 240, 0.78);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.service-card {
  min-height: 270px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 42px rgba(54, 49, 46, 0.08);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(184, 150, 62, 0.36);
  box-shadow: 0 24px 70px rgba(54, 49, 46, 0.14);
}

.service-card span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-card h3 {
  margin-top: 44px;
  color: var(--cranberry);
  font-size: 34px;
  font-style: italic;
  line-height: 0.96;
}

.service-card p {
  margin: 12px 0 0;
  color: rgba(54, 49, 46, 0.72);
  font-size: 14px;
}

.swipe-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 34%);
  gap: 16px;
  margin-top: 34px;
  overflow-x: auto;
  padding: 6px 4px 20px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--cranberry) var(--holly);
}

.swipe-rail > * {
  scroll-snap-align: start;
}

.swipe-card {
  min-height: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--chocolate);
  box-shadow: 0 18px 50px rgba(54, 49, 46, 0.13);
}

.swipe-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 10%, rgba(54, 49, 46, 0.82));
}

.swipe-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  height: 5px;
  background: linear-gradient(90deg, var(--cranberry), var(--holly), var(--gold));
}

.swipe-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.swipe-card div {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 22px;
  z-index: 3;
}

.swipe-card h3 {
  color: var(--cream);
  font-size: 34px;
  font-style: italic;
  line-height: 0.96;
}

.swipe-card p {
  margin: 10px 0 0;
  color: rgba(250, 246, 240, 0.76);
  font-size: 14px;
}

.form-panel {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(184, 150, 62, 0.3);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--white), var(--beige));
  box-shadow: 0 18px 50px rgba(54, 49, 46, 0.1);
}

.form-grid {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.form-grid input,
.form-grid textarea {
  width: 100%;
  border: 1px solid rgba(54, 49, 46, 0.16);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--chocolate);
  background: var(--white);
}

.form-grid textarea {
  min-height: 142px;
  resize: vertical;
}

.footer {
  padding: 34px clamp(20px, 4vw, 54px);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(54, 49, 46, 0.62);
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.social-links {
  display: flex;
  gap: 8px;
  align-items: center;
}

.social-links a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--cranberry);
  font-size: 12px;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  transform: translateY(-2px);
  border-color: var(--gold);
}

.nav-pending,
.footer-links [aria-disabled="true"] {
  opacity: 0.55;
  cursor: default;
}

.approved-hero {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(56px, 8vw, 112px) 0;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
}

.approved-photo,
.placeholder-photo {
  min-height: 580px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: linear-gradient(145deg, var(--beige), var(--white));
}

.approved-photo img,
.placeholder-photo img {
  width: 100%;
  min-height: 580px;
  height: 100%;
  object-fit: cover;
}

.approved-copy {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--chocolate);
  font-size: clamp(21px, 2.1vw, 28px);
  line-height: 1.56;
}

.approved-section {
  width: min(940px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0;
  border-top: 1px solid var(--gold);
}

.approved-section p {
  margin: 0;
  font-size: 18px;
  line-height: 1.82;
}

.approved-section.closing p {
  color: var(--cranberry);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(34px, 4.2vw, 58px);
  font-style: italic;
  line-height: 1.1;
}

.contact-shell,
.method-shell {
  width: min(940px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(56px, 8vw, 104px) 0;
}

.contact-intro,
.method-intro {
  max-width: 780px;
  margin-bottom: 48px;
  font-size: 20px;
  line-height: 1.75;
}

.review-notice {
  margin: 16px 0 0;
  color: rgba(54, 49, 46, .68);
  font-size: 13px;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--cranberry);
  font-weight: 600;
}

.business-inquiries {
  margin-top: 72px;
  padding: 44px;
  border-top: 1px solid var(--gold);
  background: var(--beige);
}

.business-inquiries a {
  color: var(--cranberry);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.method-section {
  padding: 78px 0;
  scroll-margin-top: 100px;
  border-top: 1px solid var(--gold);
}

.method-section h2 {
  margin: 10px 0 18px;
  color: var(--cranberry);
  font-size: clamp(46px, 6vw, 78px);
  font-style: italic;
}

.photo-placeholders {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.photo-placeholders div {
  min-height: 170px;
  display: grid;
  place-items: center;
  padding: 16px;
  border: 1px dashed rgba(184, 150, 62, .58);
  border-radius: var(--radius);
  color: rgba(54, 49, 46, .55);
  background: linear-gradient(145deg, var(--white), var(--beige));
  font-size: 12px;
  letter-spacing: .12em;
  text-align: center;
  text-transform: uppercase;
}

@keyframes floatDrift {
  from {
    translate: 0 0;
  }
  to {
    translate: 0 -18px;
  }
}

@keyframes warmGlow {
  from {
    opacity: 0.66;
    transform: translate3d(calc(var(--parallax-x, 0) * -0.22px), calc(var(--parallax-y, 0) * -0.18px), 0) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translate3d(calc(var(--parallax-x, 0) * -0.22px), calc(var(--parallax-y, 0) * -0.18px), 0) scale(1.02);
  }
}

@keyframes pageTitlePaintSwipe {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }

  46% {
    opacity: 0.95;
  }

  100% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@media (max-width: 1080px) {
  .nav {
    gap: 14px;
    font-size: 10px;
  }
}

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

  .nav,
  .nav-button {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  body.nav-open .nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .page-hero,
  .section-split,
  .approved-hero {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: auto;
  }

  .page-media,
  .page-media img {
    min-height: 500px;
  }

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

  .swipe-rail {
    grid-auto-columns: minmax(260px, 46%);
  }

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

@media (max-width: 640px) {
  .site-header {
    min-height: 74px;
    padding-inline: 16px;
  }

  .brand strong {
    font-size: 34px;
  }

  .brand span {
    font-size: 9px;
    letter-spacing: 0.16em;
  }

  .brand img {
    width: clamp(150px, 55vw, 210px);
    max-height: 44px;
  }

  .page-hero,
  .section,
  .approved-hero,
  .approved-section,
  .contact-shell,
  .method-shell {
    width: min(100% - 28px, var(--max));
  }

  .page-hero {
    padding: 36px 0 54px;
  }

  h1 {
    font-size: 58px;
  }

  .page-media,
  .page-media img {
    min-height: 430px;
  }

  .media-caption {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .section {
    padding: 66px 0;
  }

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

  .swipe-rail {
    grid-auto-columns: minmax(250px, 86%);
  }

  .motion-scene {
    display: none;
  }

  .footer {
    display: grid;
  }

  .approved-photo,
  .approved-photo img,
  .placeholder-photo,
  .placeholder-photo img { min-height: 420px; }

  .photo-placeholders { grid-template-columns: 1fr 1fr; }

  .business-inquiries { padding: 28px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .page-hero h1 {
    color: var(--chocolate);
    -webkit-text-fill-color: var(--chocolate);
    background: none;
    animation: none !important;
  }

  .page-hero h1::after {
    display: none;
  }
}
