@font-face {
  font-family: "Alice";
  src: url("assets/Alice-Regular.ttf") format("truetype");
  font-display: swap;
}

:root {
  --ink: #090a0d;
  --ink-soft: #151820;
  --cream: #f7f1e7;
  --paper: #fcfaf6;
  --gold: #d9ae45;
  --gold-light: #f4da8b;
  --gold-dark: #8f6720;
  --navy: #101c3d;
  --emerald: #073f31;
  --taupe: #c9bfb3;
  --line: rgba(217, 174, 69, 0.34);
  --shadow: 0 28px 70px rgba(4, 6, 11, 0.17);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--ink-soft);
  background: var(--paper);
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.motion-paused *,
body.motion-paused *::before,
body.motion-paused *::after {
  animation-play-state: paused !important;
}

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

a {
  color: inherit;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 1rem;
  top: 1rem;
  padding: 0.75rem 1rem;
  color: #000;
  background: var(--gold-light);
  border-radius: 999px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem clamp(1rem, 4vw, 4.5rem);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 260ms ease, min-height 260ms ease, backdrop-filter 260ms ease;
}

.site-header.is-scrolled {
  min-height: 66px;
  background: rgba(7, 8, 12, 0.84);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  text-decoration: none;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  padding: 0.2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
}

.brand span {
  display: grid;
  line-height: 1.15;
}

.brand strong {
  font-family: "Alice", Georgia, serif;
  font-size: 1rem;
  letter-spacing: 0.06em;
}

.brand small {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.site-nav a,
.site-nav summary {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease;
}

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

.nav-dropdown {
  position: relative;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -0.6rem;
  right: -0.6rem;
  height: 1.25rem;
}

.nav-dropdown summary {
  display: flex;
  align-items: center;
  gap: 0.38rem;
  list-style: none;
  cursor: pointer;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown summary span {
  color: var(--gold-light);
  font-size: 0.9rem;
  transition: transform 180ms ease;
}

.nav-dropdown[open] summary span {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 1.2rem);
  left: 50%;
  width: min(340px, calc(100vw - 2rem));
  padding: 0.7rem;
  display: grid;
  gap: 0.25rem;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(7, 8, 12, 0.96);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown[open] .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
  padding: 0.8rem 0.9rem;
  display: grid;
  border-radius: 12px;
  letter-spacing: 0;
  text-transform: none;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.nav-dropdown-menu strong {
  font-family: "Alice", Georgia, serif;
  font-size: 1rem;
  font-weight: 400;
}

.nav-dropdown-menu small {
  color: rgba(255, 255, 255, 0.53);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-dropdown-menu .nav-dropdown-all {
  margin-top: 0.25rem;
  color: var(--gold-light);
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 0 0 12px 12px;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-nav .nav-cta {
  padding: 0.72rem 1.1rem;
  color: #0c0c0e;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 44px;
  padding: 0.75rem;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.nav-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 1px;
  margin: 5px 0;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background: #050608;
}

.hero-motion,
.hero-shade,
.motion-frame,
.motion-marble {
  position: absolute;
  inset: 0;
}

.hero-motion {
  z-index: -3;
  overflow: hidden;
  transform: translate3d(var(--hero-x, 0), var(--hero-y, 0), 0) scale(1.04);
  transition: transform 900ms cubic-bezier(.2, .75, .2, 1);
}

.motion-frame {
  background-position: center;
  background-size: cover;
  opacity: 0;
  filter: saturate(0.82) contrast(1.08);
  animation: cinematic-fade 21s infinite;
}

.frame-one {
  background-image: url("assets/home-hero-camera-stamp-wide-generated.png");
  animation-delay: 0s;
}

.frame-two {
  background-image: url("assets/home-hero-services.png");
  animation-delay: 7s;
}

.frame-three {
  background-image: url("assets/marble-collective.jpg");
  animation-delay: 14s;
}

.motion-marble {
  z-index: 2;
  opacity: 0.3;
  mix-blend-mode: screen;
  background:
    radial-gradient(circle at 72% 34%, rgba(217, 174, 69, 0.22), transparent 33%),
    linear-gradient(120deg, transparent 40%, rgba(8, 55, 42, 0.42) 65%, transparent 82%);
  animation: marble-drift 12s ease-in-out infinite alternate;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(2, 3, 7, 0.94) 0%, rgba(3, 5, 10, 0.82) 42%, rgba(3, 5, 10, 0.28) 75%, rgba(2, 3, 7, 0.58) 100%),
    linear-gradient(0deg, rgba(2, 3, 7, 0.82), transparent 42%);
}

.hero-inner {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 9rem 0 7rem;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.65fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1rem;
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow > span:first-child {
  width: 42px;
  height: 1px;
  flex: 0 0 42px;
  background: currentColor;
}

.eyebrow > [data-flow-eyebrow] {
  width: auto;
  height: auto;
  flex: 1 1 auto;
  background: none;
}

.eyebrow.dark {
  color: var(--gold-dark);
}

.hero h1,
.section-intro h2,
.motion-story h2,
.story h2,
.start h2 {
  margin: 0;
  font-family: "Alice", Georgia, serif;
  font-weight: 400;
  line-height: 0.98;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(3.7rem, 7.7vw, 7.5rem);
  letter-spacing: -0.045em;
}

.hero h1 em {
  color: var(--gold-light);
  font-style: italic;
}

.hero-intro {
  max-width: 650px;
  margin: 1.7rem 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
}

.hero-actions,
.start-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.8rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button-gold {
  color: #13100a;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 12px 30px rgba(217, 174, 69, 0.22);
}

.button-glass {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
}

.hero-word-stage {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3.2rem 2rem 2.4rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 190px 190px 20px 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.43));
  backdrop-filter: blur(10px);
}

.stage-label,
.stage-note {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.stage-label {
  margin-left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
}

.stage-label::before,
.stage-label::after {
  content: "";
  width: 28px;
  height: 1px;
  background: rgba(217, 174, 69, 0.72);
}

.hero-word-stage strong {
  width: 100%;
  min-height: 1.4em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.15rem 0 0.8rem;
  color: var(--gold-light);
  font-family: "Alice", Georgia, serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
  transition: opacity 240ms ease, transform 240ms ease;
}

.stage-note {
  text-align: center;
}

.hero-word-stage strong.is-changing {
  opacity: 0;
  transform: translateY(10px);
}

.motion-toggle {
  position: absolute;
  right: clamp(1rem, 4vw, 4rem);
  bottom: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 0.9rem;
  color: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.32);
  cursor: pointer;
}

.motion-icon {
  color: var(--gold-light);
  font-weight: 900;
}

.scroll-cue {
  position: absolute;
  left: clamp(1rem, 4vw, 4rem);
  bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
}

.scroll-cue span {
  width: 42px;
  height: 1px;
  background: var(--gold);
}

.section {
  padding: clamp(5rem, 10vw, 9rem) max(1rem, calc((100vw - var(--max)) / 2));
}

.section-intro {
  max-width: 760px;
  margin-bottom: 3rem;
}

.section-intro h2,
.motion-story h2,
.story h2,
.start h2 {
  font-size: clamp(2.7rem, 5.5vw, 5rem);
  letter-spacing: -0.035em;
}

.section-intro > p:last-child {
  max-width: 610px;
  margin: 1.2rem 0 0;
  color: #66615b;
}

.service-selector {
  background:
    radial-gradient(circle at 85% 12%, rgba(217, 174, 69, 0.13), transparent 26%),
    var(--paper);
}

.service-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid #d9d1c6;
  border-bottom: 1px solid #d9d1c6;
}

.service-tab {
  position: relative;
  min-height: 150px;
  padding: 1.25rem;
  display: grid;
  align-content: center;
  gap: 0.3rem;
  text-align: left;
  color: #5e5a55;
  border: 0;
  border-right: 1px solid #d9d1c6;
  background: transparent;
  cursor: pointer;
  transition: color 220ms ease, background 220ms ease;
}

.service-tab:last-child {
  border-right: 0;
}

.service-tab > span {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: #aca59c;
  font-family: "Alice", Georgia, serif;
  font-size: 0.9rem;
}

.service-tab strong {
  color: var(--ink-soft);
  font-family: "Alice", Georgia, serif;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 400;
}

.service-tab small {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-tab::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -1px;
  height: 3px;
  background: var(--gold);
  transition: right 260ms ease;
}

.service-tab:hover,
.service-tab:focus-visible,
.service-tab.is-active {
  color: var(--gold-dark);
  background: rgba(217, 174, 69, 0.07);
}

.service-tab.is-active::after {
  right: 0;
}

.service-stage {
  --stage: #12141a;
  --stage-accent: #d3b987;
  margin-top: 2.2rem;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  min-height: 610px;
  overflow: hidden;
  color: #fff;
  border-radius: 34px;
  background: var(--stage);
  box-shadow: var(--shadow);
  transition: background 420ms ease;
}

.service-stage.theme-photo {
  --stage: #0b0b0c;
  --stage-accent: #d7c5aa;
}

.service-stage.theme-notary {
  --stage: #111d3f;
  --stage-accent: #d6ae48;
}

.service-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 560px;
  overflow: hidden;
  isolation: isolate;
}

.service-photo {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("assets/marble-photography-source.jpg") center / cover;
  transform: scale(1.04);
  transition: opacity 280ms ease, background-image 300ms ease;
  animation: service-breathe 12s ease-in-out infinite alternate;
}

.service-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(130deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.58));
}

.service-art {
  position: relative;
  z-index: 1;
  display: block;
  width: min(78%, 560px);
  height: auto;
  grid-area: 1 / 1;
  filter: drop-shadow(0 22px 32px rgba(0, 0, 0, 0.35));
  animation: art-float 7s ease-in-out infinite;
  transition: opacity 220ms ease, transform 300ms ease;
}

.service-number {
  position: absolute;
  left: 1.5rem;
  bottom: 0.8rem;
  color: rgba(255, 255, 255, 0.21);
  font-family: "Alice", Georgia, serif;
  font-size: clamp(5rem, 13vw, 10rem);
  line-height: 1;
}

.service-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.2rem, 5vw, 5.4rem);
}

.service-logo {
  width: 128px;
  height: 92px;
  margin-bottom: 1.2rem;
  padding: 0.6rem;
  object-fit: contain;
  border-radius: 16px;
  background: #fff;
}

.service-kicker {
  margin: 0 0 0.5rem;
  color: var(--stage-accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-content h3 {
  margin: 0;
  font-family: "Alice", Georgia, serif;
  font-size: clamp(2.35rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1.02;
}

.service-content > p:not(.service-kicker) {
  margin: 1.2rem 0 0;
  color: rgba(255, 255, 255, 0.73);
}

.service-content ul {
  display: grid;
  gap: 0.45rem;
  margin: 1.3rem 0 0;
  padding: 0;
  list-style: none;
}

.service-content li::before {
  content: "✦";
  margin-right: 0.7rem;
  color: var(--stage-accent);
}

.service-meta {
  margin-top: 1.8rem;
  padding-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.service-meta > span {
  color: var(--stage-accent);
  font-family: "Alice", Georgia, serif;
  font-size: 1.1rem;
}

.service-meta a {
  color: #fff;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.service-meta a[aria-disabled="true"] {
  opacity: 0.64;
  pointer-events: none;
}

.service-meta b {
  color: var(--stage-accent);
  font-size: 1rem;
}

.service-stage.is-swapping .service-content,
.service-stage.is-swapping .service-art {
  opacity: 0;
}

.motion-story {
  padding: clamp(5rem, 10vw, 9rem) max(1rem, calc((100vw - var(--max)) / 2));
  color: #fff;
  background:
    linear-gradient(110deg, rgba(4, 6, 10, 0.98), rgba(4, 6, 10, 0.72)),
    url("assets/marble-collective.jpg") center / cover fixed;
}

.motion-story-copy {
  max-width: 780px;
  margin-bottom: 3rem;
}

.motion-story-copy > p:last-child {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.7);
}

.motion-reel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.reel-card {
  position: relative;
  min-height: 450px;
  padding: 1.3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 180px 180px 24px 24px;
  background-position: center;
  background-size: cover;
}

.reel-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 36%, rgba(0, 0, 0, 0.76));
}

.reel-photo {
  background-image: url("assets/marble-photography-source.jpg");
}

.reel-notary {
  background-image: url("assets/marble-ds-notaries-source.jpg");
}

.reel-card img {
  position: relative;
  z-index: 1;
  width: 85%;
  margin: auto;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.34));
  animation: reel-float 8s ease-in-out infinite;
}

.reel-card:nth-child(2) img {
  animation-delay: -2.4s;
}

.reel-card:nth-child(3) img {
  animation-delay: -4.5s;
}

.reel-card div {
  position: relative;
  z-index: 1;
  display: grid;
}

.reel-card span {
  color: var(--gold-light);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.reel-card strong {
  font-family: "Alice", Georgia, serif;
  font-size: 1.3rem;
  font-weight: 400;
}

.word-ribbon {
  overflow: hidden;
  color: #111;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold));
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.word-ribbon-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 0;
  animation: ribbon 22s linear infinite;
  will-change: transform;
}

.word-ribbon-group {
  min-width: 100vw;
  padding: 0.9rem clamp(1.2rem, 3vw, 3.5rem);
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: space-around;
  gap: clamp(1.2rem, 2.2vw, 2.4rem);
}

.word-ribbon span {
  font-family: "Alice", Georgia, serif;
  font-size: 1.35rem;
}

.word-ribbon i {
  font-style: normal;
}

.process {
  background: var(--cream);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #d7cec2;
}

.process-grid article {
  min-height: 245px;
  padding: 1.6rem 2rem 1.6rem 0;
  border-right: 1px solid #d7cec2;
}

.process-grid article + article {
  padding-left: 2rem;
}

.process-grid article:last-child {
  border-right: 0;
}

.process-grid span {
  color: var(--gold-dark);
  font-family: "Alice", Georgia, serif;
  font-size: 1rem;
}

.process-grid h3 {
  margin: 2.5rem 0 0.4rem;
  font-family: "Alice", Georgia, serif;
  font-size: 2.2rem;
  font-weight: 400;
}

.process-grid p {
  max-width: 280px;
  margin: 0;
  color: #6d675f;
}

.story {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  min-height: 760px;
  color: #fff;
  background: #0a0c10;
}

.story-image {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.18), transparent 42%),
    url("assets/marble-collective.jpg") center / cover;
}

.story-image > img {
  position: absolute;
  inset: auto 0 0;
  width: 100%;
  height: 96%;
  object-fit: contain;
  object-position: center 58%;
  filter: saturate(0.9) contrast(1.02);
}

.story-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 62%, #0a0c10), linear-gradient(0deg, rgba(0, 0, 0, 0.55), transparent 40%);
}

.story-seal {
  position: absolute;
  z-index: 2;
  left: 2rem;
  bottom: 2rem;
  width: 130px;
  height: 130px;
  display: grid;
  place-items: center;
  align-content: center;
  color: var(--gold-light);
  border: 1px solid rgba(244, 218, 139, 0.52);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.46);
  backdrop-filter: blur(10px);
}

.story-seal span {
  font-family: "Alice", Georgia, serif;
  font-size: 2rem;
}

.story-seal small {
  font-size: 0.55rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.story-copy {
  align-self: center;
  max-width: 700px;
  padding: clamp(3rem, 8vw, 8rem) clamp(1rem, 7vw, 7rem);
}

.story-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
}

.story-values {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}

.story-values span {
  padding: 0.65rem 0.9rem;
  color: var(--gold-light);
  border: 1px solid rgba(217, 174, 69, 0.3);
  border-radius: 999px;
  font-size: 0.72rem;
}

.start {
  position: relative;
  min-height: 720px;
  display: grid;
  place-items: center;
  padding: 5rem 1rem;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: #07190f;
}

.start-backdrop {
  position: absolute;
  z-index: -2;
  inset: -6%;
  background:
    linear-gradient(rgba(4, 8, 7, 0.62), rgba(4, 8, 7, 0.82)),
    url("assets/marble-collective.jpg") center / cover;
  animation: service-breathe 14s ease-in-out infinite alternate;
}

.start::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 8%;
  border: 1px solid rgba(217, 174, 69, 0.3);
  border-radius: 50%;
}

.start-inner {
  width: min(850px, 100%);
  display: grid;
  justify-items: center;
  text-align: center;
}

.start-inner > img {
  width: 170px;
  margin-bottom: 1.2rem;
  padding: 1rem;
  border-radius: 22px;
  background: #fff;
}

.start .eyebrow {
  justify-content: center;
}

.start-inner > small {
  margin-top: 1.4rem;
  color: rgba(255, 255, 255, 0.58);
}

.site-footer {
  padding: 2.2rem max(1rem, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem 2rem;
  color: rgba(255, 255, 255, 0.68);
  background: #050608;
}

.site-footer > div:first-child {
  display: grid;
}

.site-footer strong {
  color: #fff;
  font-family: "Alice", Georgia, serif;
  font-weight: 400;
}

.site-footer span,
.site-footer a,
.site-footer p {
  font-size: 0.72rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-footer p {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255, 255, 255, 0.38);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 680ms ease, transform 680ms cubic-bezier(.2, .75, .2, 1);
}

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

@keyframes cinematic-fade {
  0%, 28% { opacity: 0; transform: scale(1.04); }
  5%, 24% { opacity: 1; }
  33%, 100% { opacity: 0; transform: scale(1.14); }
}

@keyframes marble-drift {
  from { transform: translate3d(-2%, -1%, 0) scale(1.02); }
  to { transform: translate3d(2%, 1.5%, 0) scale(1.08); }
}

@keyframes service-breathe {
  from { transform: scale(1.04) translate3d(-0.4%, -0.2%, 0); }
  to { transform: scale(1.11) translate3d(0.5%, 0.3%, 0); }
}

@keyframes art-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes reel-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes ribbon {
  to { transform: translate3d(-50%, 0, 0); }
}

@media (max-width: 960px) {
  .site-header {
    min-height: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    padding: 1rem;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0.2rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 20px;
    background: rgba(7, 8, 12, 0.96);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35);
  }

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

  .site-nav a,
  .site-nav summary {
    padding: 0.8rem 1rem;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown::after {
    display: none;
  }

  .nav-dropdown summary {
    justify-content: space-between;
  }

  .nav-dropdown-menu {
    position: static;
    width: 100%;
    padding: 0.25rem 0 0.5rem 0.7rem;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    transform: none;
  }

  .nav-dropdown:not([open]) .nav-dropdown-menu {
    display: none;
  }

  .nav-dropdown[open] .nav-dropdown-menu {
    display: grid;
    transform: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    align-items: center;
  }

  .hero-word-stage {
    min-height: auto;
    max-width: 440px;
    border-radius: 24px;
  }

  .service-stage,
  .story {
    grid-template-columns: 1fr;
  }

  .service-content {
    min-height: 520px;
  }

  .motion-reel {
    grid-template-columns: 1fr;
  }

  .reel-card {
    min-height: 360px;
    border-radius: 26px;
  }

  .reel-card img {
    width: min(62%, 360px);
  }

  .story-image {
    min-height: 560px;
  }

  .story-image::after {
    background: linear-gradient(0deg, #0a0c10, transparent 55%);
  }
}

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

  .hero {
    min-height: 860px;
  }

  .hero-inner {
    padding-top: 7.5rem;
  }

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

  .hero-word-stage {
    display: none;
  }

  .motion-toggle {
    right: 1rem;
  }

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

  .service-tab {
    min-height: 112px;
    border-right: 0;
    border-bottom: 1px solid #d9d1c6;
  }

  .service-tab:last-child {
    border-bottom: 0;
  }

  .service-stage {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .service-visual {
    min-height: 390px;
  }

  .service-content {
    min-height: auto;
    padding: 2rem 1.4rem 2.4rem;
  }

  .service-meta {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .process-grid article,
  .process-grid article + article {
    min-height: auto;
    padding: 1.4rem 0 2rem;
    border-right: 0;
    border-bottom: 1px solid #d7cec2;
  }

  .process-grid article:last-child {
    border-bottom: 0;
  }

  .process-grid h3 {
    margin-top: 0.8rem;
  }

  .story-image {
    min-height: 440px;
  }

  .start::after {
    inset: 3%;
    border-radius: 36px;
  }

  .start-actions,
  .start-actions .button {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
  }
}

/* Live social window */
.instagram-live {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(340px, 1.22fr);
  align-items: center;
  gap: clamp(2rem, 7vw, 7rem);
  background:
    radial-gradient(circle at 12% 18%, rgba(198, 171, 133, 0.2), transparent 32%),
    #f5efe7;
}

.instagram-copy h2 {
  margin: 0;
  font-family: "Alice", Georgia, serif;
  font-size: clamp(3rem, 5vw, 5.2rem);
  font-weight: 400;
  line-height: 1;
}

.instagram-copy > p:not(.eyebrow) {
  margin: 1.2rem 0 1.7rem;
  color: #6c655d;
}

.instagram-window {
  min-height: 590px;
  padding: clamp(1rem, 3vw, 2rem);
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(16, 16, 18, 0.1);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(244, 237, 227, 0.78)),
    url("assets/marble-photography-source.jpg") center / cover;
  box-shadow: 0 28px 70px rgba(10, 10, 12, 0.12);
}

.instagram-window .instagram-media {
  width: min(100%, 540px) !important;
  min-width: 0 !important;
  margin: 0 auto !important;
}

/* Public legal hub */
.legal-page {
  background: #f7f3ec;
}

.legal-page [id] {
  scroll-margin-top: 84px;
}

.legal-hero {
  min-height: 720px;
  padding: 10rem max(1rem, calc((100vw - var(--max)) / 2)) 6rem;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(310px, 0.85fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
  color: #fff;
  background:
    linear-gradient(110deg, rgba(4, 6, 10, 0.94), rgba(8, 19, 44, 0.82)),
    url("assets/marble-collective.jpg") center / cover;
}

.legal-hero-copy h1 {
  margin: 0;
  font-family: "Alice", Georgia, serif;
  font-size: clamp(4rem, 7.5vw, 7.5rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.045em;
}

.legal-hero-copy h1 em {
  color: var(--gold-light);
  font-weight: 400;
}

.legal-effective {
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-hero-copy > p:last-child {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.7);
}

.legal-index {
  display: grid;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: rgba(5, 7, 11, 0.62);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.legal-index a {
  min-height: 76px;
  padding: 1rem 1.2rem;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 0.7rem;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}

.legal-index a:last-child {
  border-bottom: 0;
}

.legal-index a:hover,
.legal-index a:focus-visible {
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.08);
}

.legal-index span {
  color: var(--gold);
  font-family: "Alice", Georgia, serif;
}

.legal-index strong {
  font-family: "Alice", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 400;
}

.legal-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(3rem, 8vw, 8rem);
  border-bottom: 1px solid #dcd3c8;
  background: #faf8f4;
}

.legal-section:nth-of-type(odd) {
  background: #f2ede5;
}

.legal-section-heading {
  align-self: start;
  position: sticky;
  top: 104px;
}

.legal-section-heading > span {
  color: var(--gold-dark);
  font-family: "Alice", Georgia, serif;
  font-size: 1.2rem;
}

.legal-section-heading h2,
.legal-contact h2 {
  margin: 0;
  font-family: "Alice", Georgia, serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 1;
}

.legal-section-heading > p:last-child {
  color: #6c675f;
}

.legal-copy {
  max-width: 780px;
  padding-left: clamp(1.3rem, 3vw, 2.2rem);
  border-left: 2px solid rgba(217, 174, 69, 0.42);
}

.legal-notary .legal-copy {
  border-left-color: rgba(21, 41, 88, 0.55);
}

.legal-photo .legal-copy {
  border-left-color: rgba(154, 127, 92, 0.55);
}

.legal-copy h3 {
  margin: 2.5rem 0 0.55rem;
  color: #181817;
  font-family: "Alice", Georgia, serif;
  font-size: 1.65rem;
  font-weight: 400;
}

.legal-copy h3:first-child {
  margin-top: 0;
}

.legal-copy p,
.legal-copy li {
  color: #5f5b55;
}

.legal-copy li + li {
  margin-top: 0.5rem;
}

.legal-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  align-items: center;
  gap: clamp(2rem, 7vw, 7rem);
  background: #efe7da;
}

.legal-contact .contact-chips a {
  color: #181817;
  border-color: rgba(143, 103, 32, 0.34);
  background: rgba(255, 255, 255, 0.62);
}

.important-policy-notice {
  margin: 1.5rem 0;
  padding: 1.35rem 1.5rem;
  border: 2px solid #b58a2b;
  border-left-width: 8px;
  border-radius: 18px;
  background: #fff8e7;
  color: #181817;
  box-shadow: 0 14px 34px rgba(10, 15, 30, 0.08);
}

.important-policy-notice strong {
  display: block;
  margin-bottom: 0.45rem;
  color: #7a5200;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.important-policy-notice p {
  margin: 0;
  font-weight: 650;
  line-height: 1.55;
}

.booking-id-alert {
  margin: 0 0 1.35rem;
  padding: 1rem 1.1rem;
  border: 2px solid #c79a30;
  border-radius: 14px;
  background: #fff8e6;
  color: #1b1b1b;
  line-height: 1.5;
}

.booking-id-alert strong {
  color: #7a5200;
  text-transform: uppercase;
}

/* Photography forms and releases */
.forms-page .legal-hero {
  background:
    linear-gradient(110deg, rgba(7, 7, 9, 0.96), rgba(30, 24, 20, 0.76)),
    url("assets/marble-photography-source.jpg") center / cover;
}

.forms-page .legal-hero-copy h1 em {
  color: #e4c994;
}

.forms-page .legal-index span,
.forms-page .legal-section-heading > span {
  color: #9a7f5c;
}

.forms-list {
  max-width: 820px;
  display: grid;
  gap: 1rem;
}

.form-card {
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid rgba(83, 67, 50, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 46px rgba(20, 16, 12, 0.07);
}

.form-card-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem 1rem;
}

.form-card-top span {
  padding: 0.35rem 0.7rem;
  color: #fff;
  border-radius: 999px;
  background: #151517;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-card.is-required .form-card-top span {
  color: #18130d;
  background: #e4c994;
}

.form-card.is-conditional .form-card-top span {
  background: #725d45;
}

.form-card.is-delivery .form-card-top span {
  background: #394a45;
}

.form-card-top small {
  color: #746c63;
}

.form-card h3 {
  margin: 1rem 0 0.5rem;
  font-family: "Alice", Georgia, serif;
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  font-weight: 400;
  line-height: 1.05;
}

.form-card p {
  margin-bottom: 0;
  color: #5f5a54;
}

/* Streamlined photography client-form portal */
.forms-portal-hero {
  align-items: stretch;
}

.forms-portal-note {
  align-self: center;
  max-width: 34rem;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  border: 1px solid rgba(229, 202, 132, 0.36);
  border-radius: 1.5rem;
  background: linear-gradient(145deg, rgba(255,255,255,0.09), rgba(255,255,255,0.025));
  box-shadow: 0 24px 70px rgba(0,0,0,0.24);
}

.forms-portal-note strong {
  display: block;
  margin-bottom: .65rem;
  color: #f2d887;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2.15rem);
}

.forms-portal-note p {
  margin: 0 0 1rem;
  color: rgba(255,255,255,.82);
  line-height: 1.65;
}

.forms-portal-note a {
  color: #f2d887;
  font-weight: 800;
}

.forms-portal {
  background: #f7f2ea;
  color: #111113;
}

.forms-portal-heading {
  max-width: 54rem;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.forms-portal-heading h2 {
  max-width: 17ch;
  margin: .8rem 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.3vw, 4.9rem);
  font-weight: 500;
  line-height: .98;
}

.forms-portal-heading > p:last-child {
  max-width: 46rem;
  color: #5e5a55;
  line-height: 1.7;
}

.forms-portal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}

.form-download-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.15rem;
  min-height: 24rem;
  padding: clamp(1.4rem, 3vw, 2.25rem);
  overflow: hidden;
  border: 1px solid rgba(17,17,19,.12);
  border-radius: 1.6rem;
  background:
    radial-gradient(circle at 100% 0, rgba(184,155,105,.23), transparent 40%),
    #fffdf9;
  box-shadow: 0 24px 55px rgba(41,32,20,.08);
}

.form-download-card::after {
  content: "";
  position: absolute;
  right: -4rem;
  bottom: -5rem;
  width: 12rem;
  height: 12rem;
  border: 1px solid rgba(184,155,105,.24);
  border-radius: 50%;
}

.form-download-number {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid #b89b69;
  border-radius: 50%;
  color: #7c6136;
  font-size: .77rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.form-download-copy {
  position: relative;
  z-index: 1;
}

.form-kicker {
  margin: .25rem 0 .85rem;
  color: #8b6a37;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.form-download-card h3 {
  max-width: 18ch;
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
  font-weight: 500;
  line-height: 1.02;
}

.form-download-card .form-download-copy > p:not(.form-kicker):not(.online-form-status) {
  min-height: 5.5rem;
  color: #5e5a55;
  line-height: 1.62;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 1.35rem;
}

.form-actions .button {
  min-height: 3.1rem;
  padding-inline: 1.05rem;
  font-size: .72rem;
}

.form-actions .button-ink {
  color: #fff;
  border-color: #111113;
  background: #111113;
}

.form-actions .button-outline {
  color: #111113;
  border-color: #b89b69;
  background: transparent;
}

.online-form-link[hidden] {
  display: none !important;
}

.online-form-status {
  max-width: 31rem;
  margin: .95rem 0 0;
  color: #756b5f;
  font-size: .78rem;
  line-height: 1.5;
}

@media (max-width: 860px) {
  .forms-portal-grid { grid-template-columns: 1fr; }
  .form-download-card { min-height: 0; }
  .form-download-card .form-download-copy > p:not(.form-kicker):not(.online-form-status) { min-height: 0; }
}

@media (max-width: 520px) {
  .form-download-card { grid-template-columns: 1fr; }
}

.forms-legal-note {
  margin-top: 2rem;
  padding: 1.2rem 1.3rem;
  border-left: 5px solid #9a7f5c;
  border-radius: 0 14px 14px 0;
  background: #eee4d5;
  color: #3f3932 !important;
  font-weight: 650;
}

/* DS Notaries certificate and official-resource portal */
.notary-resources-page {
  background: #f5f1e9;
  color: #10182b;
}

.notary-form-promo {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  width: min(92%, 1180px);
  margin: clamp(-3.25rem, -4vw, -2rem) auto 0;
  padding: clamp(1.25rem, 2.7vw, 2rem);
  color: #10182b;
  border: 1px solid rgba(173, 132, 45, .32);
  border-radius: 1.7rem;
  background:
    radial-gradient(circle at 100% 0, rgba(230, 192, 91, .2), transparent 34%),
    #fffdf8;
  box-shadow: 0 24px 70px rgba(4, 12, 31, .18);
}

.notary-form-promo-mark {
  display: grid;
  place-items: center;
  width: clamp(4.4rem, 7vw, 5.8rem);
  height: clamp(4.4rem, 7vw, 5.8rem);
  color: #f2d574;
  border: 1px solid rgba(242, 213, 116, .52);
  border-radius: 1.25rem;
  background: #07142e;
}

.notary-form-promo-mark span {
  align-self: end;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .14em;
}

.notary-form-promo-mark strong {
  align-self: start;
  font-size: 1.55rem;
  line-height: 1;
}

.notary-form-promo-copy .eyebrow {
  margin-bottom: .45rem;
}

.notary-form-promo-copy h2 {
  margin: 0 0 .45rem;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  font-weight: 500;
  line-height: 1.02;
}

.notary-form-promo-copy > p:not(.eyebrow) {
  max-width: 49rem;
  margin: 0;
  color: #514f4c;
  line-height: 1.55;
}

.notary-form-promo-copy small {
  display: block;
  max-width: 54rem;
  margin-top: .55rem;
  color: #746e64;
  font-size: .72rem;
  line-height: 1.45;
}

.notary-form-promo > .button {
  color: #fff;
  border-color: #07142e;
  background: #07142e;
  white-space: nowrap;
}

.resource-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(19rem, .65fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 7rem);
  min-height: 78vh;
  padding: clamp(9rem, 15vw, 12rem) clamp(1.4rem, 6vw, 6.5rem) clamp(5rem, 9vw, 8rem);
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(3, 11, 31, .98), rgba(5, 18, 48, .91) 56%, rgba(4, 10, 25, .95)),
    url("assets/marble-ds-notaries-source.jpg") center / cover;
}

.resource-hero::before,
.resource-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
}

.resource-hero::before {
  top: 8rem;
  right: -10rem;
  width: 34rem;
  height: 34rem;
  border: 1px solid rgba(239, 207, 116, .25);
  box-shadow: inset 0 0 0 5rem rgba(255, 255, 255, .018);
}

.resource-hero::after {
  left: 49%;
  bottom: -12rem;
  width: 28rem;
  height: 28rem;
  background: radial-gradient(circle, rgba(221, 179, 67, .14), transparent 67%);
}

.resource-hero-copy,
.resource-hero-note {
  position: relative;
  z-index: 1;
}

.resource-hero-copy {
  max-width: 64rem;
}

.resource-hero-copy h1 {
  max-width: 13ch;
  margin: .85rem 0 1.3rem;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7.8vw, 7rem);
  font-weight: 500;
  line-height: .88;
  letter-spacing: -.035em;
}

.resource-hero-copy h1 em {
  color: #f1d578;
  font-style: normal;
}

.resource-hero-copy > p:last-of-type {
  max-width: 49rem;
  color: rgba(255,255,255,.75);
  font-size: clamp(1rem, 1.55vw, 1.2rem);
  line-height: 1.72;
}

.resource-hero-note {
  padding: clamp(1.5rem, 3vw, 2.4rem);
  border: 1px solid rgba(241, 213, 120, .36);
  border-radius: 1.75rem;
  background: linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.025));
  box-shadow: 0 28px 80px rgba(0,0,0,.3);
  backdrop-filter: blur(14px);
}

.resource-hero-note > span {
  display: inline-block;
  margin-bottom: 1rem;
  color: #f1d578;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.resource-hero-note strong {
  display: block;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.6vw, 2.3rem);
  font-weight: 500;
  line-height: 1.08;
}

.resource-hero-note p {
  margin: 1rem 0 0;
  color: rgba(255,255,255,.73);
  line-height: 1.68;
}

.notary-certificate-grid .form-download-card {
  min-height: 21rem;
}

.resource-source-line {
  margin-top: 1rem;
}

.resource-source-line a {
  color: #705321;
  font-weight: 800;
}

.resource-outline-list {
  display: grid;
  border-top: 1px solid rgba(16, 24, 43, .18);
}

.resource-outline-item {
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr) minmax(12rem, auto);
  align-items: center;
  gap: clamp(1rem, 3vw, 2.2rem);
  padding: clamp(1.5rem, 3.5vw, 2.5rem) .25rem;
  border-bottom: 1px solid rgba(16, 24, 43, .18);
}

.resource-outline-number {
  display: grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  color: #6d5224;
  border: 1px solid #b9954d;
  border-radius: 50%;
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.resource-outline-copy .form-kicker {
  margin-top: 0;
}

.resource-outline-copy h3 {
  margin: 0 0 .65rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  font-weight: 500;
  line-height: 1.04;
}

.resource-outline-copy p:last-child {
  max-width: 55rem;
  margin: 0;
  color: #5e5a55;
  line-height: 1.65;
}

.resource-outline-copy p strong {
  color: #17213a;
}

.resource-outline-actions {
  display: grid;
  justify-items: start;
  gap: .75rem;
  min-width: 12rem;
}

.resource-outline-actions .button {
  width: 100%;
  min-height: 3rem;
  padding-inline: 1rem;
  font-size: .7rem;
  white-space: nowrap;
}

.resource-outline-actions > a:not(.button) {
  color: #705321;
  font-size: .78rem;
  font-weight: 850;
  line-height: 1.35;
}

.resource-outline-dark {
  border-top-color: rgba(255,255,255,.17);
}

.resource-outline-dark .resource-outline-item {
  border-bottom-color: rgba(255,255,255,.17);
}

.resource-outline-dark .resource-outline-number {
  color: #f1d578;
  border-color: rgba(241,213,120,.62);
}

.resource-outline-dark .resource-outline-copy h3 {
  color: #fff;
}

.resource-outline-dark .resource-outline-copy p:last-child {
  color: rgba(255,255,255,.68);
}

.resource-outline-dark .resource-outline-copy p strong {
  color: #fff;
}

.resource-outline-dark .resource-outline-actions > a:not(.button) {
  color: #f1d578;
}

.resource-outline-compact .resource-outline-item {
  padding-block: clamp(1.2rem, 2.5vw, 1.8rem);
}

.certificate-outline-section {
  border-top: 1px solid rgba(16,24,43,.1);
}

.certificate-caution {
  display: grid;
  grid-template-columns: minmax(14rem, .75fr) minmax(18rem, 1.25fr);
  gap: 1rem 2rem;
  margin-top: 1.2rem;
  padding: clamp(1.35rem, 3vw, 2.1rem);
  color: #fff;
  border-radius: 1.4rem;
  background: #07142e;
}

.certificate-caution strong {
  color: #f1d578;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  font-weight: 500;
  line-height: 1.1;
}

.certificate-caution p {
  margin: 0;
  color: rgba(255,255,255,.78);
  line-height: 1.65;
}

.resource-directory {
  color: #fff;
  background:
    linear-gradient(rgba(2, 10, 28, .95), rgba(2, 10, 28, .98)),
    url("assets/marble-ds-notaries-source.jpg") center / cover;
}

.resource-directory-heading {
  max-width: 62rem;
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
}

.resource-directory-heading h2 {
  max-width: 17ch;
  margin: .8rem 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.6vw, 5.2rem);
  font-weight: 500;
  line-height: .96;
}

.resource-directory-heading > p:last-child {
  max-width: 48rem;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
}

.resource-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.resource-link-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 20rem;
  padding: clamp(1.35rem, 2.6vw, 2rem);
  overflow: hidden;
  border: 1px solid rgba(241, 213, 120, .22);
  border-radius: 1.5rem;
  background: linear-gradient(145deg, rgba(255,255,255,.085), rgba(255,255,255,.025));
  box-shadow: 0 22px 60px rgba(0,0,0,.18);
}

.resource-link-card::before {
  content: "";
  position: absolute;
  top: -4rem;
  right: -4rem;
  width: 10rem;
  height: 10rem;
  border: 1px solid rgba(241,213,120,.2);
  border-radius: 50%;
}

.resource-link-card > span {
  position: relative;
  color: #f1d578;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.resource-link-card h3 {
  position: relative;
  margin: 1rem 0 .8rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.8vw, 2.25rem);
  font-weight: 500;
  line-height: 1.06;
}

.resource-link-card p {
  position: relative;
  color: rgba(255,255,255,.68);
  line-height: 1.62;
}

.resource-link-card a {
  position: relative;
  margin-top: auto;
  padding-top: 1.3rem;
  color: #f1d578;
  font-weight: 850;
}

.resource-contact {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, .8fr);
  align-items: end;
  gap: clamp(2rem, 6vw, 6rem);
  background: #f5f1e9;
}

.resource-contact h2 {
  max-width: 18ch;
  margin: .8rem 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  font-weight: 500;
  line-height: .98;
}

.resource-contact p {
  max-width: 48rem;
  color: #5e5a55;
  line-height: 1.7;
}

@media (max-width: 960px) {
  .notary-form-promo {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .notary-form-promo > .button {
    grid-column: 2;
    justify-self: start;
  }

  .resource-hero,
  .resource-contact {
    grid-template-columns: 1fr;
  }

  .resource-hero {
    min-height: 0;
  }

  .resource-hero-note {
    max-width: 48rem;
  }

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

  .resource-outline-item {
    grid-template-columns: 3.6rem minmax(0, 1fr);
  }

  .resource-outline-actions {
    grid-column: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  .resource-outline-actions .button {
    width: auto;
  }
}

@media (max-width: 640px) {
  .notary-form-promo {
    grid-template-columns: 1fr;
    margin-top: -1.5rem;
  }

  .notary-form-promo-mark {
    width: 4.2rem;
    height: 4.2rem;
  }

  .notary-form-promo > .button {
    grid-column: 1;
    width: 100%;
  }

  .resource-hero {
    padding-top: 8.5rem;
  }

  .resource-link-grid,
  .certificate-caution {
    grid-template-columns: 1fr;
  }

  .resource-outline-item {
    grid-template-columns: 1fr;
  }

  .resource-outline-number {
    width: 2.8rem;
    height: 2.8rem;
  }

  .resource-outline-actions {
    grid-column: 1;
  }

  .resource-link-card {
    min-height: 17rem;
  }
}

@media (max-width: 960px) {
  .instagram-live,
  .legal-hero,
  .legal-section,
  .legal-contact {
    grid-template-columns: 1fr;
  }

  .instagram-window {
    min-height: 540px;
  }

  .legal-section-heading {
    position: static;
  }
}

@media (max-width: 700px) {
  .instagram-window {
    min-height: 470px;
    padding: 0.5rem;
  }

  .legal-hero {
    padding-top: 8rem;
  }

  .legal-hero-copy h1 {
    font-size: clamp(3.4rem, 15vw, 5rem);
  }

  .legal-copy {
    padding-left: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .motion-frame:first-child {
    opacity: 1;
  }

  .motion-toggle {
    display: none;
  }

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

/* Business-page system: shared editorial structure, individual brand themes. */
.business-page {
  --brand-deep: #0a0b0d;
  --brand-mid: #25211f;
  --brand-accent: #d9ae45;
  --brand-accent-soft: #f1ddb0;
  --brand-surface: #f7f2e9;
  --brand-marble: url("assets/marble-photography-source.jpg");
  background: var(--brand-surface);
}

.business-photo {
  --brand-deep: #08090b;
  --brand-mid: #302a25;
  --brand-accent: #c6ab85;
  --brand-accent-soft: #eee2d2;
  --brand-surface: #f5efe7;
  --brand-marble: url("assets/marble-photography-source.jpg");
}

.business-notary {
  --brand-deep: #09132c;
  --brand-mid: #152958;
  --brand-accent: #d6ae48;
  --brand-accent-soft: #f4dd9d;
  --brand-surface: #f4f5f8;
  --brand-marble: url("assets/marble-ds-notaries-source.jpg");
}

.business-page .site-nav a[aria-current="page"] {
  color: var(--brand-accent-soft);
}

.business-page .nav-cta {
  color: #0a0b0d;
  background: linear-gradient(120deg, var(--brand-accent), var(--brand-accent-soft));
  border-color: transparent;
}

.brand-hero {
  position: relative;
  min-height: 850px;
  padding: 9rem max(1rem, calc((100vw - var(--max)) / 2)) 6rem;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  align-items: center;
  gap: clamp(2rem, 7vw, 7rem);
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background: var(--brand-deep);
}

.brand-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 22% 34%, color-mix(in srgb, var(--brand-mid) 70%, transparent), transparent 45%),
    linear-gradient(105deg, rgba(0, 0, 0, 0.3), var(--brand-deep) 72%);
}

.brand-hero-marble {
  position: absolute;
  z-index: -2;
  inset: -5%;
  opacity: 0.58;
  background: var(--brand-marble) center / cover;
  animation: brand-marble-drift 16s ease-in-out infinite alternate;
}

.brand-hero-copy {
  position: relative;
  z-index: 4;
  max-width: 720px;
}

.brand-hero h1 {
  margin: 0;
  font-family: "Alice", Georgia, serif;
  font-size: clamp(4.2rem, 7.5vw, 7.8rem);
  font-weight: 400;
  line-height: 0.91;
  letter-spacing: -0.045em;
}

.brand-hero h1 em {
  color: var(--brand-accent-soft);
  font-weight: 400;
}

.brand-hero-copy > p:not(.eyebrow) {
  max-width: 630px;
  margin: 1.6rem 0 0;
  color: rgba(255, 255, 255, 0.77);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.brand-hero .eyebrow,
.brand-pricing .eyebrow,
.brand-notes .eyebrow {
  color: var(--brand-accent-soft);
}

.brand-hero .eyebrow span,
.brand-pricing .eyebrow span,
.brand-notes .eyebrow span {
  background: var(--brand-accent);
}

.brand-hero-art {
  position: absolute;
  z-index: 1;
  right: 2vw;
  bottom: -4%;
  width: min(58vw, 880px);
  max-height: 90%;
  object-fit: contain;
  opacity: 0.62;
  filter: drop-shadow(0 28px 40px rgba(0, 0, 0, 0.38));
  animation: brand-art-float 9s ease-in-out infinite;
}

.brand-identity-card {
  position: absolute;
  z-index: 4;
  top: 7.2rem;
  right: clamp(1rem, 4vw, 4.5rem);
  width: min(270px, calc(100% - 2rem));
  min-height: 210px;
  padding: 1.25rem;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  color: var(--brand-deep);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.brand-identity-card::after {
  content: "";
  width: 74px;
  height: 1px;
  margin-top: 0.75rem;
  background: var(--brand-accent);
}

.brand-identity-card img {
  width: min(100%, 170px);
  height: 105px;
  margin-bottom: 0.55rem;
  object-fit: contain;
}

.brand-identity-card span {
  color: var(--brand-deep);
  font-family: "Alice", Georgia, serif;
  font-size: 1.05rem;
}

.brand-identity-card small {
  margin-top: 0.35rem;
  color: color-mix(in srgb, var(--brand-deep) 65%, transparent);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.brand-intro {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.56)),
    var(--brand-surface);
}

.editorial-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.editorial-card-grid.two-feature {
  grid-template-columns: repeat(2, 1fr);
}

.editorial-card {
  min-height: 300px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid color-mix(in srgb, var(--brand-deep) 12%, transparent);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 50px rgba(13, 15, 24, 0.06);
  transition: transform 260ms ease, box-shadow 260ms ease, background 260ms ease;
}

.editorial-card:hover {
  transform: translateY(-8px);
  background: #fff;
  box-shadow: 0 28px 65px rgba(13, 15, 24, 0.13);
}

.editorial-card.feature-card {
  grid-row: span 2;
  min-height: 616px;
  color: #fff;
  border-color: transparent;
  background:
    linear-gradient(180deg, transparent 10%, color-mix(in srgb, var(--brand-deep) 93%, transparent)),
    var(--brand-marble) center / cover;
}

.two-feature .editorial-card.feature-card {
  grid-row: auto;
  min-height: 480px;
}

.editorial-card > span {
  margin-bottom: auto;
  color: var(--brand-accent);
  font-family: "Alice", Georgia, serif;
  font-size: 1.1rem;
}

.editorial-card h3 {
  margin: 1rem 0 0.6rem;
  font-family: "Alice", Georgia, serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1.05;
}

.editorial-card p {
  margin: 0;
  color: #6a655f;
}

.editorial-card.feature-card p,
.editorial-card.feature-card li {
  color: rgba(255, 255, 255, 0.76);
}

.editorial-card ul {
  padding-left: 1.1rem;
}

.brand-pricing {
  padding: clamp(5rem, 9vw, 8rem) max(1rem, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(3rem, 8vw, 8rem);
  color: #fff;
  background:
    linear-gradient(110deg, color-mix(in srgb, var(--brand-deep) 97%, transparent), color-mix(in srgb, var(--brand-mid) 80%, transparent)),
    var(--brand-marble) center / cover fixed;
}

.pricing-heading h2 {
  margin: 0;
  font-family: "Alice", Georgia, serif;
  font-size: clamp(3rem, 5vw, 5.4rem);
  font-weight: 400;
  line-height: 0.98;
}

.price-list {
  display: grid;
}

.price-list > div {
  min-height: 92px;
  padding: 1rem 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 0.7fr) auto;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.price-list span {
  font-family: "Alice", Georgia, serif;
  font-size: 1.35rem;
}

.price-list small {
  color: rgba(255, 255, 255, 0.52);
}

.price-list strong {
  color: var(--brand-accent-soft);
  text-align: right;
}

.brand-process,
.booking-studio {
  background: var(--brand-surface);
}

.centered-action {
  max-width: 760px;
  margin: 3rem auto 0;
  text-align: center;
}

.centered-action p {
  color: #6b665f;
  font-size: 0.8rem;
}

.button-ink {
  color: #fff;
  background: var(--brand-deep);
  border-color: var(--brand-deep);
}

.button-ink:hover {
  color: var(--brand-deep);
  background: var(--brand-accent-soft);
  border-color: var(--brand-accent-soft);
}

.booking-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.booking-card {
  min-height: 330px;
  padding: clamp(1.6rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  border: 1px solid color-mix(in srgb, var(--brand-mid) 16%, transparent);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.booking-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(4, 9, 24, 0.12);
}

.booking-card > span {
  color: var(--brand-mid);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.booking-card h3 {
  margin: 0.65rem 0;
  font-family: "Alice", Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.1;
}

.booking-card p {
  color: #68645f;
}

.booking-card strong {
  margin: auto 0 1rem;
  color: var(--brand-mid);
}

.booking-card .button {
  align-self: flex-start;
}

.booking-flow-steps {
  max-width: 920px;
  margin: 0 auto 3rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  border: 1px solid color-mix(in srgb, var(--brand-mid) 13%, transparent);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.62);
  overflow: hidden;
}

.booking-flow-steps li {
  min-height: 112px;
  padding: 1.3rem;
  display: grid;
  grid-template-columns: auto 1fr;
  align-content: center;
  gap: 0 0.8rem;
}

.booking-flow-steps li + li {
  border-left: 1px solid color-mix(in srgb, var(--brand-mid) 13%, transparent);
}

.booking-flow-steps li > span {
  width: 34px;
  height: 34px;
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  color: var(--brand-deep);
  border-radius: 50%;
  background: var(--brand-accent-soft);
  font-weight: 800;
}

.booking-flow-steps strong,
.booking-flow-steps small {
  display: block;
}

.booking-flow-steps small {
  color: #6b665f;
}

.booking-flow-page {
  background: var(--brand-surface);
}

.booking-flow-main {
  min-height: 100vh;
}

.booking-flow-hero {
  position: relative;
  min-height: 540px;
  padding: 9rem max(1rem, calc((100vw - var(--max)) / 2)) 5rem;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  color: #fff;
  background:
    linear-gradient(96deg, rgba(9, 19, 44, 0.97) 0%, rgba(9, 19, 44, 0.9) 52%, rgba(9, 19, 44, 0.38) 100%),
    var(--brand-marble) center / cover;
  overflow: hidden;
}

.booking-flow-copy {
  position: relative;
  z-index: 2;
  max-width: 790px;
}

.booking-flow-copy h1 {
  margin: 0;
  font-family: "Alice", Georgia, serif;
  font-size: clamp(3.6rem, 5.5vw, 6.4rem);
  font-weight: 400;
  line-height: 0.96;
}

.booking-flow-copy h1 em {
  color: var(--brand-accent-soft);
  font-style: normal;
}

.booking-flow-copy > p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.05rem;
}

.booking-flow-art {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
}

.booking-flow-art img {
  width: min(100%, 430px);
  max-height: 350px;
  object-fit: contain;
  filter: drop-shadow(0 24px 44px rgba(0, 0, 0, 0.38));
  opacity: 0.88;
}

.booking-flow-page.business-photo .booking-flow-hero {
  background:
    linear-gradient(96deg, rgba(8, 9, 11, 0.97) 0%, rgba(8, 9, 11, 0.9) 52%, rgba(48, 42, 37, 0.45) 100%),
    var(--brand-marble) center / cover;
}

.booking-flow-page.business-photo .booking-redirect {
  background:
    linear-gradient(rgba(8, 9, 11, 0.94), rgba(8, 9, 11, 0.97)),
    var(--brand-marble) center / cover;
}

.booking-workspace {
  display: grid;
  grid-template-columns: minmax(270px, 0.38fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(1.2rem, 4vw, 3.5rem);
}

.booking-summary,
.calendar-panel {
  border: 1px solid color-mix(in srgb, var(--brand-mid) 13%, transparent);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 24px 70px rgba(4, 9, 24, 0.08);
}

.booking-summary {
  position: sticky;
  top: 92px;
  padding: clamp(1.5rem, 3vw, 2.4rem);
}

.booking-summary-kicker,
.booking-summary-mode {
  display: block;
  color: var(--brand-mid);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.booking-summary-mode {
  width: fit-content;
  margin-top: 1.5rem;
  padding: 0.35rem 0.65rem;
  color: var(--brand-deep);
  border-radius: 999px;
  background: var(--brand-accent-soft);
}

.booking-summary h2 {
  margin: 0.7rem 0;
  font-family: "Alice", Georgia, serif;
  max-width: 100%;
  font-size: clamp(2.1rem, 3vw, 2.65rem);
  font-weight: 400;
  line-height: 1.03;
  overflow-wrap: normal;
}

.booking-summary > p:not(.booking-summary-kicker) {
  color: #68645f;
}

.booking-summary-price {
  margin: 1.5rem 0;
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(9, 19, 44, 0.1);
  border-bottom: 1px solid rgba(9, 19, 44, 0.1);
}

.booking-summary-price strong {
  color: var(--brand-mid);
  font-size: 1.35rem;
}

.booking-summary-steps {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  list-style: none;
}

.booking-summary-steps li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 0.8rem;
  opacity: 0.52;
}

.booking-summary-steps li.is-current {
  opacity: 1;
}

.booking-summary-steps li > span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--brand-deep);
  border: 1px solid var(--brand-accent);
  border-radius: 50%;
  font-weight: 800;
}

.booking-summary-steps strong,
.booking-summary-steps small {
  display: block;
}

.booking-summary-steps small {
  color: #68645f;
}

.booking-change-link {
  margin-top: 1.7rem;
  display: inline-block;
  color: var(--brand-mid);
  font-size: 0.78rem;
  font-weight: 800;
}

.calendar-panel {
  padding: clamp(1.2rem, 3vw, 2.2rem);
  overflow: hidden;
}

.preview-config-note {
  margin-bottom: 1.4rem;
  padding: 1rem 1.1rem;
  display: grid;
  gap: 0.25rem;
  color: #5d4a1f;
  border: 1px solid rgba(214, 174, 72, 0.44);
  border-radius: 16px;
  background: rgba(244, 221, 157, 0.34);
  font-size: 0.78rem;
}

.calendar-panel-heading {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.calendar-panel-heading span,
.secure-label {
  color: var(--brand-mid);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.calendar-panel-heading h2 {
  margin: 0.2rem 0 0;
  font-family: "Alice", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 400;
  line-height: 1;
}

.secure-label {
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(9, 19, 44, 0.12);
  border-radius: 999px;
  white-space: nowrap;
}

.booking-agreement {
  min-height: 330px;
  padding: clamp(1.3rem, 4vw, 3rem);
  display: grid;
  align-content: start;
  gap: 1.5rem;
  border-radius: 20px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.91), rgba(255, 255, 255, 0.91)),
    var(--brand-marble) center / cover;
}

.booking-agreement[hidden],
.calendar-embed[hidden] {
  display: none;
}

.booking-client-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.booking-client-fields label {
  display: grid;
  gap: 0.4rem;
  color: var(--brand-deep);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.booking-client-fields .photography-contact-email {
  grid-column: 1 / -1;
}

.booking-client-fields input {
  width: 100%;
  min-height: 50px;
  padding: 0.75rem 0.85rem;
  color: var(--brand-deep);
  font-weight: 400;
  letter-spacing: normal;
  border: 1px solid rgba(9, 19, 44, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  outline: none;
}

.booking-client-fields input:focus {
  border-color: var(--brand-accent);
  box-shadow: 0 0 0 3px rgba(214, 174, 72, 0.18);
}

.booking-consent {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 0.9rem;
  color: #3f4147;
}

.booking-consent[hidden] {
  display: none;
}

.booking-consent input {
  width: 20px;
  height: 20px;
  accent-color: var(--brand-mid);
}

.booking-sms-consent {
  padding-top: 1rem;
  border-top: 1px solid rgba(9, 19, 44, 0.1);
  color: #5d616a;
  font-size: 0.8rem;
}

.booking-agreement .button {
  justify-self: start;
}

.booking-agreement .button:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.booking-form-error {
  display: none;
  margin: 0;
  padding: 0.8rem 1rem;
  color: #7b1f1f;
  border-left: 3px solid #a73c3c;
  background: rgba(167, 60, 60, 0.09);
  font-size: 0.8rem;
}

.booking-form-error.is-visible {
  display: block;
}

.calendar-embed {
  min-width: 280px;
  height: 760px;
  overflow: hidden;
  border: 1px solid rgba(9, 19, 44, 0.1);
  border-radius: 20px;
  background: #fff;
}

.calendar-help,
.calendar-fallback {
  margin: 1.2rem 0 0;
  color: #68645f;
  font-size: 0.78rem;
}

.booking-redirect {
  position: fixed;
  z-index: 1000;
  inset: 0;
  padding: 2rem;
  display: grid;
  place-content: center;
  justify-items: center;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(rgba(9, 19, 44, 0.94), rgba(9, 19, 44, 0.97)),
    var(--brand-marble) center / cover;
}

.booking-redirect[hidden] {
  display: none;
}

.booking-redirect img {
  width: 180px;
  height: 120px;
  padding: 0.9rem;
  object-fit: contain;
  border-radius: 18px;
  background: #fff;
}

.booking-redirect > span {
  margin-top: 1.5rem;
  color: var(--brand-accent-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.booking-redirect > strong {
  font-family: "Alice", Georgia, serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 400;
}

.booking-redirect p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.7);
}

.booking-is-redirecting {
  overflow: hidden;
}

.confirmation-main {
  min-height: 100vh;
  padding: 10rem 1rem 6rem;
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(244, 245, 248, 0.9), rgba(244, 245, 248, 0.96)),
    var(--brand-marble) center / cover fixed;
}

.confirmation-card {
  width: min(820px, 100%);
  padding: clamp(2rem, 6vw, 5rem);
  text-align: center;
  border: 1px solid rgba(9, 19, 44, 0.12);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 32px 90px rgba(4, 9, 24, 0.16);
}

.confirmation-card > img {
  width: 220px;
  height: 140px;
  margin: 0 auto 1.5rem;
  object-fit: contain;
}

.confirmation-card .eyebrow {
  justify-content: center;
}

.confirmation-state[hidden],
.confirmed-content[hidden] {
  display: none;
}

.confirmation-card h1 {
  margin: 0;
  font-family: "Alice", Georgia, serif;
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  font-weight: 400;
  line-height: 0.92;
}

.confirmation-card h1 em {
  color: var(--brand-mid);
  font-style: normal;
}

.confirmation-card > p:not(.eyebrow, .confirmation-note) {
  max-width: 650px;
  margin: 1.5rem auto;
  color: #5d616a;
}

.confirmation-state > p:not(.eyebrow),
.confirmed-content > p:not(.eyebrow, .confirmation-note) {
  max-width: 650px;
  margin: 1.5rem auto;
  color: #5d616a;
}

.confirmation-error h1 em {
  color: #8d3636;
}

.confirmation-facts {
  margin: 2.4rem 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(9, 19, 44, 0.1);
  border-radius: 20px;
  overflow: hidden;
}

.confirmation-facts div {
  min-height: 112px;
  padding: 1.2rem;
  display: grid;
  align-content: center;
  gap: 0.3rem;
}

.confirmation-facts div + div {
  border-left: 1px solid rgba(9, 19, 44, 0.1);
}

.confirmation-facts span {
  color: #747983;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.confirmation-facts strong {
  color: var(--brand-deep);
  font-family: "Alice", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 400;
}

.confirmation-note {
  margin: 1.5rem 0;
  padding: 1rem 1.2rem;
  color: #5d4a1f;
  border-radius: 14px;
  background: rgba(244, 221, 157, 0.28);
  font-size: 0.8rem;
}

.confirmation-card .hero-actions {
  justify-content: center;
}

.confirmation-ghost {
  color: var(--brand-deep);
  border-color: rgba(9, 19, 44, 0.2);
  background: transparent;
}

.brand-notes {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  color: #fff;
  background: var(--brand-deep);
}

.brand-note-visual {
  min-height: 620px;
  padding: 4rem;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, transparent, rgba(0, 0, 0, 0.38)),
    var(--brand-marble) center / cover;
}

.brand-note-visual img {
  width: min(90%, 620px);
  max-height: 560px;
  object-fit: contain;
  filter: drop-shadow(0 26px 36px rgba(0, 0, 0, 0.36));
  animation: brand-art-float 9s ease-in-out infinite;
}

.brand-note-copy {
  align-self: center;
  max-width: 730px;
  padding: clamp(3rem, 8vw, 8rem) clamp(1.4rem, 7vw, 7rem);
}

.brand-note-copy h2 {
  margin: 0;
  font-family: "Alice", Georgia, serif;
  font-size: clamp(3rem, 5vw, 5.2rem);
  font-weight: 400;
  line-height: 1;
}

.brand-note-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
}

.contact-chips {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.contact-chips a {
  padding: 0.65rem 0.9rem;
  color: var(--brand-accent-soft);
  border: 1px solid color-mix(in srgb, var(--brand-accent) 42%, transparent);
  border-radius: 999px;
  font-size: 0.72rem;
  text-decoration: none;
}

@keyframes brand-marble-drift {
  from { transform: scale(1.04) translate3d(-1%, -0.5%, 0); }
  to { transform: scale(1.12) translate3d(1.2%, 0.8%, 0); }
}

@keyframes brand-art-float {
  0%, 100% { transform: translateY(0) rotate(-0.5deg); }
  50% { transform: translateY(-16px) rotate(0.5deg); }
}

@media (max-width: 960px) {
  .brand-hero {
    min-height: 920px;
    grid-template-columns: 1fr;
    align-content: center;
    gap: 2rem;
  }

  .brand-hero-copy {
    max-width: 780px;
  }

  .brand-hero-art {
    right: -18%;
    width: 84vw;
    opacity: 0.28;
  }

  .brand-identity-card {
    position: relative;
    top: auto;
    right: auto;
    justify-self: start;
    width: min(100%, 560px);
    min-height: 250px;
    grid-template-columns: 160px 1fr;
    border-radius: 28px;
    text-align: left;
  }

  .brand-identity-card img {
    width: 150px;
    height: 120px;
    margin: 0 1.5rem 0 0;
    grid-row: 1 / span 3;
  }

  .brand-identity-card::after {
    display: none;
  }

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

  .editorial-card.feature-card {
    grid-row: auto;
    min-height: 420px;
  }

  .brand-pricing,
  .brand-notes {
    grid-template-columns: 1fr;
  }

  .booking-flow-hero,
  .booking-workspace {
    grid-template-columns: 1fr;
  }

  .booking-flow-art {
    position: absolute;
    right: -4rem;
    bottom: -4rem;
    width: 48vw;
    opacity: 0.28;
  }

  .booking-summary {
    position: static;
  }

  .brand-note-visual {
    min-height: 520px;
  }
}

@media (max-width: 700px) {
  .brand-hero {
    min-height: 900px;
    padding-top: 7rem;
  }

  .brand-hero h1 {
    font-size: clamp(3.5rem, 16vw, 5.2rem);
  }

  .brand-hero .hero-actions,
  .brand-hero .button {
    width: 100%;
  }

  .brand-identity-card {
    min-height: 290px;
    padding: 1.6rem;
    display: grid;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .brand-identity-card img {
    width: 190px;
    height: 130px;
    margin: 0 0 1rem;
    grid-row: auto;
  }

  .editorial-card-grid,
  .editorial-card-grid.two-feature,
  .booking-card-grid {
    grid-template-columns: 1fr;
  }

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

  .booking-flow-steps li {
    min-height: 92px;
  }

  .booking-flow-steps li + li {
    border-top: 1px solid color-mix(in srgb, var(--brand-mid) 13%, transparent);
    border-left: 0;
  }

  .booking-flow-hero {
    min-height: 560px;
    padding-top: 8rem;
  }

  .booking-flow-copy h1 {
    font-size: clamp(3.4rem, 15vw, 5rem);
  }

  .calendar-panel-heading {
    display: grid;
  }

  .secure-label {
    justify-self: start;
  }

  .calendar-panel {
    padding: 1rem;
    border-radius: 20px;
  }

  .booking-client-fields,
  .confirmation-facts {
    grid-template-columns: 1fr;
  }

  .confirmation-facts div + div {
    border-top: 1px solid rgba(9, 19, 44, 0.1);
    border-left: 0;
  }

  .confirmation-card .hero-actions,
  .confirmation-card .button {
    width: 100%;
  }

  .calendar-embed {
    height: 880px;
    border-radius: 14px;
  }

  .editorial-card,
  .editorial-card.feature-card,
  .two-feature .editorial-card.feature-card {
    min-height: 340px;
  }

  .brand-pricing {
    gap: 2.5rem;
  }

  .price-list > div {
    grid-template-columns: 1fr auto;
  }

  .price-list small {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .brand-note-visual {
    min-height: 400px;
    padding: 2rem;
  }

  .brand-note-copy {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
