:root {
  --ink: #21191f;
  --paper: #fbf6ef;
  --muted: #6c625d;
  --line: rgba(33, 25, 31, 0.16);
  --white: #fffaf4;
  --plum: #8b5aa8;
  --rose: #d77aa0;
  --gold: #c99a3d;
  --emerald: #1f745f;
  --shadow: 0 22px 50px rgba(33, 25, 31, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

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

.site-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 18px clamp(18px, 4vw, 56px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10;
  transition:
    background 180ms ease,
    border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(247, 243, 236, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand,
.nav {
  align-items: center;
  display: flex;
}

.brand {
  color: var(--white);
  font-weight: 800;
  gap: 12px;
}

.is-scrolled .brand {
  color: var(--ink);
}

.logo-mark {
  align-items: center;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(33, 25, 31, 0.16);
  display: inline-flex;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.logo-mark svg {
  height: 31px;
  width: 31px;
}

.logo-mark path:first-child {
  fill: var(--plum);
}

.logo-mark path:nth-child(2) {
  fill: none;
  stroke: var(--gold);
  stroke-linejoin: round;
  stroke-width: 4;
}

.logo-mark path:nth-child(3) {
  stroke: var(--rose);
  stroke-linecap: round;
  stroke-width: 4;
}

.brand-text {
  display: grid;
  gap: 1px;
  line-height: 1;
}

.brand-text strong {
  font-size: 1rem;
}

.brand-text small {
  font-size: 0.72rem;
  font-weight: 900;
  opacity: 0.78;
}

.nav {
  background: rgba(255, 250, 242, 0.14);
  border: 1px solid rgba(255, 250, 242, 0.28);
  border-radius: 999px;
  color: var(--white);
  gap: 6px;
  padding: 5px;
}

.is-scrolled .nav {
  background: rgba(23, 23, 23, 0.04);
  border-color: var(--line);
  color: var(--ink);
}

.nav a {
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
  padding: 9px 13px;
}

.nav a:hover,
.nav-cta {
  background: var(--white);
  color: var(--ink);
}

.hero {
  display: grid;
  min-height: 92vh;
  overflow: hidden;
  position: relative;
}

.hero-image,
.hero-overlay,
.hero-content {
  grid-area: 1 / 1;
}

.hero-image {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(32, 18, 28, 0.8), rgba(32, 18, 28, 0.34) 52%, rgba(32, 18, 28, 0.1)),
    linear-gradient(0deg, rgba(33, 25, 31, 0.28), rgba(33, 25, 31, 0.08));
}

.hero-content {
  align-self: end;
  color: var(--white);
  max-width: 820px;
  padding: 0 clamp(22px, 6vw, 78px) clamp(56px, 10vw, 104px);
  position: relative;
}

.eyebrow {
  color: var(--rose);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd39e;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: 6.4rem;
  letter-spacing: 0;
  line-height: 0.9;
  margin-bottom: 24px;
}

h2 {
  font-size: 3.9rem;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 0;
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
}

.hero-copy {
  color: rgba(255, 250, 242, 0.86);
  font-size: 1.2rem;
  line-height: 1.55;
  max-width: 650px;
}

.motto {
  color: #ffd39e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.42rem;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
  margin: -8px 0 22px;
}

.motto.dark {
  color: var(--plum);
  margin: -6px 0 22px;
}

.hero-actions,
.contact-band {
  align-items: center;
  display: flex;
  gap: 12px;
}

.button {
  border-radius: 999px;
  display: inline-flex;
  font-weight: 850;
  justify-content: center;
  min-height: 46px;
  padding: 13px 18px;
}

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

.button.secondary {
  background: rgba(255, 250, 242, 0.14);
  border: 1px solid rgba(255, 250, 242, 0.34);
  color: var(--white);
}

.intro-band {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
}

.intro-band > div {
  background: var(--white);
  padding: clamp(22px, 4vw, 42px);
}

.metric {
  display: block;
  font-size: 3.7rem;
  font-weight: 900;
  line-height: 1;
}

.metric-label {
  color: var(--muted);
  display: block;
  font-weight: 750;
  margin-top: 10px;
}

.section,
.feature-band,
.contact-band {
  padding: clamp(58px, 10vw, 112px) clamp(20px, 5vw, 72px);
}

.section-heading {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(130px, 0.35fr) minmax(0, 1fr);
  margin-bottom: 32px;
}

.service-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 250px;
  padding: 24px;
  position: relative;
}

.card-index {
  color: var(--emerald);
  display: block;
  font-weight: 900;
  margin-bottom: 54px;
}

.card p,
.feature-copy p,
.steps span,
.values-grid span {
  color: var(--muted);
  line-height: 1.58;
}

.feature-band {
  align-items: end;
  background: #4b2f58;
  color: var(--white);
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
}

.feature-copy {
  max-width: 760px;
}

.feature-copy p:last-child {
  color: rgba(255, 250, 242, 0.72);
  font-size: 1.08rem;
  margin-top: 24px;
  max-width: 620px;
}

.work-list {
  display: grid;
  gap: 10px;
}

.work-list span {
  border-top: 1px solid rgba(255, 250, 242, 0.22);
  font-size: 1.05rem;
  font-weight: 800;
  padding: 16px 0;
}

.gallery-section {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1.2fr 0.8fr;
}

.photo-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  min-height: 330px;
  overflow: hidden;
  position: relative;
}

.photo-card.large {
  grid-row: span 2;
  min-height: 676px;
}

.photo-card img,
.about-hero img,
.about-gallery img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.photo-card div {
  align-self: end;
  background: linear-gradient(0deg, rgba(33, 25, 31, 0.82), rgba(33, 25, 31, 0));
  color: var(--white);
  grid-area: 1 / 1;
  padding: 92px 24px 22px;
  position: relative;
}

.photo-card img {
  grid-area: 1 / 1;
}

.photo-card span {
  color: #ffd39e;
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.photo-card strong {
  display: block;
  font-size: 1.35rem;
  line-height: 1.08;
  max-width: 360px;
}

.about-hero {
  align-items: stretch;
  display: grid;
  gap: 0;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
  min-height: 82vh;
  padding-top: 78px;
}

.about-copy {
  align-self: center;
  padding: clamp(58px, 9vw, 118px) clamp(22px, 6vw, 78px);
}

.about-copy h1 {
  color: var(--ink);
  font-size: 5.2rem;
  max-width: 840px;
}

.about-copy p:last-child,
.about-band > p {
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.65;
  max-width: 680px;
}

.about-band {
  align-items: start;
  background: #4b2f58;
  color: var(--white);
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr);
  padding: clamp(58px, 10vw, 112px) clamp(20px, 5vw, 72px);
}

.about-band > p {
  color: rgba(255, 250, 244, 0.78);
}

.values-grid {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.values-grid article {
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  display: grid;
  gap: 22px;
  min-height: 230px;
  padding: 24px;
}

.values-grid article:nth-child(4) {
  border-right: 0;
}

.values-grid strong {
  color: var(--plum);
  font-size: 1.28rem;
}

.about-gallery {
  display: grid;
  gap: 0;
  grid-template-columns: 0.9fr 1.2fr 0.9fr;
  height: 430px;
}

.page-hero {
  padding: 156px clamp(20px, 6vw, 78px) 72px;
}

.page-hero.compact {
  padding-bottom: 34px;
}

.page-hero h1 {
  color: var(--ink);
  font-size: 5.2rem;
  max-width: 940px;
}

.page-hero p:last-child {
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.62;
  max-width: 680px;
}

.gallery-page {
  padding-top: 0;
}

.real-gallery-page {
  background: var(--white);
}

.gallery-feature {
  border-radius: 8px;
  display: grid;
  margin-bottom: 16px;
  min-height: 540px;
  overflow: hidden;
}

.gallery-feature img,
.gallery-feature div {
  grid-area: 1 / 1;
}

.gallery-feature img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.gallery-feature div {
  align-self: end;
  background: linear-gradient(0deg, rgba(33, 25, 31, 0.82), rgba(33, 25, 31, 0));
  color: var(--white);
  padding: 140px 28px 28px;
  position: relative;
}

.gallery-feature span,
.contact-panel span {
  color: #ffd39e;
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.gallery-feature strong {
  display: block;
  font-size: 2.2rem;
  line-height: 1;
}

.real-feature {
  background: var(--paper);
  min-height: 0;
}

.real-feature img {
  aspect-ratio: 3 / 4;
  height: auto;
  max-height: 760px;
  object-fit: contain;
  object-position: center;
  width: 100%;
}

.real-gallery-intro {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(130px, 0.32fr) minmax(0, 1fr);
  margin: 42px 0 24px;
}

.real-gallery-intro h2 {
  max-width: 1000px;
}

.real-gallery-grid {
  column-count: 4;
  column-gap: 14px;
  display: block;
}

.real-photo {
  background: var(--paper);
  border-radius: 8px;
  break-inside: avoid;
  display: block;
  margin: 0;
  margin-bottom: 14px;
  overflow: hidden;
  position: relative;
}

.real-photo.wide {
  grid-column: auto;
}

.real-photo.tall {
  grid-row: auto;
}

.real-photo img {
  display: block;
  height: auto;
  object-fit: contain;
  width: 100%;
}

.real-photo figcaption {
  background: var(--white);
  border-top: 1px solid var(--line);
  color: var(--plum);
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.2;
  padding: 13px 14px;
}

.contact-page {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, 1fr);
}

.contact-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 250px;
  padding: 26px;
}

.contact-panel span {
  color: var(--rose);
}

.contact-panel a {
  color: var(--plum);
  display: inline-block;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.15;
}

.contact-panel p {
  color: var(--muted);
  line-height: 1.6;
  margin: 18px 0 0;
}

.contact-hero {
  align-items: stretch;
  display: grid;
  gap: 0;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 0.78fr);
  min-height: 82vh;
  padding-top: 78px;
}

.contact-hero-copy {
  align-self: center;
  padding: clamp(58px, 9vw, 118px) clamp(22px, 6vw, 78px);
}

.contact-hero-copy h1 {
  color: var(--ink);
  font-size: 5.2rem;
  max-width: 840px;
}

.contact-hero-copy p {
  color: var(--muted);
  font-size: 1.16rem;
  line-height: 1.65;
  max-width: 650px;
}

.contact-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.button.outline {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
}

.contact-hero-image {
  min-height: 560px;
  overflow: hidden;
}

.contact-hero-image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.contact-main {
  align-items: start;
  background: var(--white);
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.7fr);
}

.contact-form-copy h2 {
  max-width: 820px;
}

.contact-form-copy p {
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.65;
  max-width: 650px;
}

.mini-gallery {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
  margin-top: 28px;
}

.mini-gallery img {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
  width: 100%;
}

.contact-form {
  box-shadow: none;
}

.next-steps {
  background: #4b2f58;
  color: var(--white);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.next-steps article {
  border-right: 1px solid rgba(255, 250, 244, 0.16);
  min-height: 260px;
  padding: clamp(28px, 5vw, 54px);
}

.next-steps article:last-child {
  border-right: 0;
}

.next-steps span {
  color: #ffd39e;
  display: block;
  font-weight: 900;
  margin-bottom: 44px;
}

.next-steps strong {
  display: block;
  font-size: 1.42rem;
  margin-bottom: 12px;
}

.next-steps p {
  color: rgba(255, 250, 244, 0.72);
  line-height: 1.58;
}

.booking-layout {
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 0.7fr);
  padding: 156px clamp(20px, 6vw, 78px) 78px;
}

.booking-copy h1 {
  color: var(--ink);
  font-size: 5.2rem;
  max-width: 720px;
}

.booking-copy p {
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.65;
  max-width: 620px;
}

.booking-copy p a {
  color: var(--plum);
  font-weight: 900;
}

.booking-copy img {
  border-radius: 8px;
  height: 360px;
  margin-top: 28px;
  object-fit: cover;
  width: 100%;
}

.booking-form {
  align-self: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
  padding: 24px;
}

.form-intro {
  background: rgba(217, 95, 103, 0.1);
  border: 1px solid rgba(217, 95, 103, 0.2);
  border-radius: 8px;
  color: var(--plum);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.42;
  margin: 0;
  padding: 14px;
}

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

.booking-form input,
.booking-form select,
.booking-form textarea {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  min-height: 46px;
  padding: 11px 12px;
  width: 100%;
}

.booking-form textarea {
  resize: vertical;
}

.booking-form .button {
  border: 0;
  cursor: pointer;
}

.booking-form .button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-note {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
  margin: 0;
}

.form-note.success {
  background: rgba(139, 90, 168, 0.12);
  border: 1px solid rgba(139, 90, 168, 0.24);
  border-radius: 8px;
  color: var(--plum);
  font-weight: 850;
  padding: 12px;
}

.form-note.error {
  background: rgba(217, 95, 103, 0.12);
  border: 1px solid rgba(217, 95, 103, 0.24);
  border-radius: 8px;
  color: #8c3042;
  font-weight: 850;
  padding: 12px;
}

.booking-trust {
  background: #4b2f58;
  color: var(--white);
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
  padding: clamp(58px, 10vw, 112px) clamp(20px, 5vw, 72px);
}

.booking-trust h2 {
  max-width: 760px;
}

.trust-grid {
  display: grid;
  gap: 12px;
}

.trust-grid article {
  background: rgba(255, 250, 244, 0.08);
  border: 1px solid rgba(255, 250, 244, 0.14);
  border-radius: 8px;
  padding: 22px;
}

.trust-grid span {
  color: #ffd39e;
  display: block;
  font-weight: 900;
  margin-bottom: 18px;
}

.trust-grid strong {
  display: block;
  font-size: 1.28rem;
  margin-bottom: 8px;
}

.trust-grid p {
  color: rgba(255, 250, 244, 0.72);
  line-height: 1.58;
  margin-bottom: 0;
}

.steps {
  border-top: 1px solid var(--line);
  counter-reset: steps;
  list-style: none;
  margin: 0;
  padding: 0;
}

.steps li {
  align-items: start;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 20px;
  grid-template-columns: 0.6fr 1fr;
  padding: 26px 0;
}

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

.contact-band {
  background:
    linear-gradient(135deg, rgba(139, 90, 168, 0.96), rgba(215, 122, 160, 0.94)),
    var(--plum);
  color: var(--white);
  justify-content: space-between;
}

.contact-band .eyebrow {
  color: rgba(255, 250, 242, 0.76);
}

.contact-band h2 {
  max-width: 850px;
}

.contact-band .button.primary {
  background: var(--ink);
  flex: 0 0 auto;
}

.site-footer {
  align-items: center;
  background: var(--ink);
  color: rgba(255, 250, 244, 0.76);
  display: flex;
  font-size: 0.92rem;
  font-weight: 750;
  justify-content: space-between;
  gap: 16px;
  padding: 22px clamp(20px, 5vw, 72px);
}

.site-footer p {
  margin: 0;
}

.site-footer p:last-child {
  color: #ffd39e;
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    gap: 14px;
  }

  .nav {
    max-width: 70vw;
    overflow-x: auto;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-content {
    padding-top: 110px;
  }

  h1 {
    font-size: 4.25rem;
  }

  h2 {
    font-size: 2.7rem;
  }

  .metric {
    font-size: 3rem;
  }

  .intro-band,
  .service-grid,
  .feature-band,
  .section-heading,
  .gallery-grid,
  .real-gallery-intro,
  .contact-page,
  .contact-hero,
  .contact-main,
  .next-steps,
  .booking-layout,
  .booking-trust,
  .about-hero,
  .about-band,
  .values-grid,
  .about-gallery,
  .steps li,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .photo-card.large,
  .photo-card {
    min-height: 360px;
  }

  .about-copy h1 {
    font-size: 3.65rem;
  }

  .page-hero h1,
  .booking-copy h1,
  .contact-hero-copy h1 {
    font-size: 3.65rem;
  }

  .about-hero {
    padding-top: 86px;
  }

  .about-hero img,
  .about-gallery {
    height: auto;
  }

  .about-gallery img {
    aspect-ratio: 16 / 10;
  }

  .gallery-feature {
    min-height: 420px;
  }

  .real-feature {
    min-height: 0;
  }

  .real-gallery-grid {
    column-count: 2;
  }

  .booking-layout {
    padding-top: 132px;
  }

  .contact-hero {
    padding-top: 86px;
  }

  .contact-hero-image {
    min-height: 360px;
  }

  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .values-grid article {
    border-right: 0;
    min-height: 170px;
  }

  .contact-band,
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .brand-text {
    display: none;
  }

  .logo-mark {
    height: 28px;
    width: 28px;
  }

  .logo-mark svg {
    height: 22px;
    width: 22px;
  }

  .nav a {
    padding: 9px 11px;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .about-copy h1 {
    font-size: 3rem;
  }

  .page-hero h1,
  .booking-copy h1,
  .contact-hero-copy h1 {
    font-size: 3rem;
  }

  .mini-gallery {
    grid-template-columns: 1fr;
  }

  .real-gallery-grid {
    column-count: 1;
  }

  .real-photo,
  .real-photo.tall,
  .real-photo.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .hero-copy {
    font-size: 1.05rem;
  }
}
