:root {
  --paper: #f5f1e9;
  --paper-2: #eee8dc;
  --ink: #171713;
  --muted: #6d6b62;
  --line: rgba(23, 23, 19, 0.18);
  --clay: #9d6049;
  --white: #fffdf8;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.98;
}

.site-header {
  align-items: center;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(230px, 1fr) auto minmax(230px, 1fr);
  height: 96px;
  left: 0;
  padding: 0 clamp(24px, 4vw, 72px);
  position: fixed;
  right: 0;
  top: 0;
  transition: background-color 320ms ease, box-shadow 320ms ease, height 320ms ease, padding 320ms ease;
  will-change: height, background-color;
  z-index: 20;
}

.site-header.is-compact,
body.is-scrolled .site-header {
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  background: rgba(245, 241, 233, 0.9);
  box-shadow: 0 10px 34px rgba(23, 23, 19, 0.08);
  height: 72px;
}

body:has(.contact-page) .site-header.is-compact,
body:has(.contact-page).is-scrolled .site-header {
  background: rgba(16, 16, 13, 0.9);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.18);
}

.brand {
  align-items: center;
  display: flex;
  gap: 13px;
  width: max-content;
}

.brand-mark {
  align-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: flex;
  font-family: var(--serif);
  font-size: 14px;
  height: 42px;
  justify-content: center;
  letter-spacing: -0.06em;
  width: 42px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
}

.brand-copy small {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.16em;
  margin-top: 4px;
  text-transform: uppercase;
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: clamp(22px, 2.6vw, 48px);
}

.desktop-nav a {
  font-size: 12px;
  letter-spacing: 0.13em;
  padding: 10px 0;
  position: relative;
  text-transform: uppercase;
}

.desktop-nav a::after {
  background: currentColor;
  bottom: 5px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
  width: 100%;
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-phone {
  justify-self: end;
  font-family: var(--serif);
  font-size: 16px;
  text-align: right;
}

.header-phone span {
  color: var(--muted);
  display: block;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  display: grid;
  min-height: min(920px, 100vh);
  overflow: hidden;
  padding-top: 96px;
  position: relative;
}

.hero-copy {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  grid-column: 1;
  justify-content: center;
  padding: 80px clamp(28px, 5vw, 96px) 90px;
  width: 56vw;
  z-index: 2;
}

.eyebrow {
  align-items: center;
  color: var(--clay);
  display: flex;
  font-size: 10px;
  gap: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.eyebrow::before {
  background: currentColor;
  content: "";
  height: 1px;
  width: 36px;
}

.eyebrow.light {
  color: #ccb19f;
}

.hero h1 {
  font-size: clamp(62px, 7.3vw, 132px);
  letter-spacing: -0.055em;
  margin: 32px 0 30px;
  max-width: 900px;
}

.hero h1 em {
  color: var(--clay);
  display: block;
  font-size: 0.55em;
  font-weight: 400;
  letter-spacing: -0.035em;
  margin: 14px 0 0 clamp(20px, 6vw, 110px);
}

.hero-copy > p {
  color: var(--muted);
  font-size: 16px;
  margin: 0 0 34px;
  max-width: 560px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  display: inline-flex;
  font-size: 11px;
  justify-content: center;
  letter-spacing: 0.15em;
  min-height: 54px;
  padding: 0 28px;
  text-transform: uppercase;
  transition: background-color 200ms ease, color 200ms ease, transform 200ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-dark:hover {
  background: var(--clay);
}

.button-light {
  background: var(--white);
  color: var(--ink);
}

.button-light:hover {
  background: #d5b5a3;
}

.text-link {
  align-items: center;
  border-bottom: 1px solid currentColor;
  display: inline-flex;
  font-size: 11px;
  gap: 20px;
  letter-spacing: 0.13em;
  padding: 9px 0;
  text-transform: uppercase;
}

.text-link span {
  font-size: 15px;
}

.hero-stat {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 16px;
  margin-top: 60px;
  padding-top: 18px;
}

.hero-stat strong {
  font-family: var(--serif);
  font-size: 35px;
  font-weight: 400;
  line-height: 1;
}

.hero-stat span {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero-visual {
  --parallax-x: 0px;
  --parallax-y: 0px;
  --parallax-accent-x: 0px;
  --parallax-accent-y: 0px;
  --parallax-scroll-y: 0px;
  --parallax-accent-scroll-y: 0px;
  background: #d6d0c2;
  bottom: 0;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  width: 52vw;
}

.hero-visual .hero-image-main {
  transform: translate3d(var(--parallax-x), calc(var(--parallax-y) + var(--parallax-scroll-y)), 0) scale(1.045);
  transition: transform 240ms cubic-bezier(0.2, 0.7, 0.2, 1), opacity 900ms ease, filter 1000ms ease;
  will-change: transform;
}

.hero-visual .hero-image-accent {
  transform: translate3d(var(--parallax-accent-x), calc(var(--parallax-accent-y) + var(--parallax-accent-scroll-y)), 0);
  transition: transform 280ms cubic-bezier(0.2, 0.7, 0.2, 1), opacity 900ms ease, filter 1000ms ease;
  will-change: transform;
}

.hero-visual::after {
  background: linear-gradient(90deg, rgba(23, 23, 19, 0.15), transparent 35%);
  content: "";
  inset: 0;
  position: absolute;
}

.hero-image-main {
  height: 100%;
  object-fit: cover;
  object-position: 55% center;
  width: 100%;
}

.hero-image-accent {
  border: 8px solid var(--paper);
  bottom: 5.5vw;
  height: clamp(170px, 19vw, 330px);
  left: 3.5vw;
  object-fit: cover;
  position: absolute;
  width: clamp(120px, 13vw, 230px);
  z-index: 3;
}

.hero-signature {
  bottom: 3.5vw;
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--serif);
  font-size: clamp(18px, 1.9vw, 32px);
  font-style: italic;
  line-height: 0.8;
  position: absolute;
  right: 3vw;
  transform: rotate(-8deg);
  z-index: 3;
}

.scroll-cue {
  align-items: center;
  bottom: 28px;
  display: flex;
  font-size: 9px;
  gap: 12px;
  left: clamp(28px, 5vw, 96px);
  letter-spacing: 0.18em;
  position: absolute;
  text-transform: uppercase;
  z-index: 4;
}

.scroll-cue span {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  height: 30px;
  justify-content: center;
  width: 30px;
}

.section {
  padding: clamp(90px, 10vw, 170px) clamp(24px, 5vw, 90px);
}

.section-heading h2,
.portfolio-cta h2,
.footer-main h2 {
  font-size: clamp(45px, 5.2vw, 84px);
  letter-spacing: -0.04em;
  margin: 26px 0 0;
  max-width: 920px;
}

.split-heading {
  align-items: end;
  display: grid;
  gap: 60px;
  grid-template-columns: minmax(0, 1.6fr) minmax(240px, 0.65fr);
}

.split-heading > p {
  color: var(--muted);
  margin: 0 0 6px;
  max-width: 420px;
}

.story-grid {
  display: grid;
  gap: clamp(18px, 2vw, 34px);
  grid-template-columns: repeat(3, 1fr);
  margin-top: 70px;
}

.story-card:nth-child(2) {
  margin-top: 70px;
}

.story-image-wrap {
  background: #ddd6ca;
  overflow: hidden;
  position: relative;
}

.story-image-wrap img {
  aspect-ratio: 0.84;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1);
  width: 100%;
}

.story-card:hover img {
  transform: scale(1.035);
}

.story-image-wrap > span {
  align-items: center;
  background: var(--paper);
  border-radius: 50%;
  bottom: 18px;
  display: flex;
  font-size: 10px;
  height: 44px;
  justify-content: center;
  left: 18px;
  position: absolute;
  width: 44px;
}

.story-copy {
  border-bottom: 1px solid var(--line);
  min-height: 130px;
  padding: 22px 42px 22px 0;
  position: relative;
}

.story-copy h3 {
  font-size: clamp(25px, 2.1vw, 35px);
  margin-bottom: 10px;
}

.story-copy p {
  color: var(--muted);
  font-size: 13px;
  margin: 0;
  max-width: 320px;
}

.story-arrow {
  font-size: 20px;
  position: absolute;
  right: 4px;
  top: 27px;
}

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

.about {
  display: grid;
  gap: clamp(60px, 9vw, 150px);
  grid-template-columns: minmax(280px, 0.8fr) minmax(400px, 1.2fr);
}

.about-image {
  margin-left: clamp(0px, 3vw, 50px);
  position: relative;
}

.about-image img {
  aspect-ratio: 0.73;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.vertical-note {
  bottom: 0;
  color: #c8b9aa;
  font-size: 9px;
  left: -30px;
  letter-spacing: 0.2em;
  position: absolute;
  text-transform: uppercase;
  transform: rotate(-90deg);
  transform-origin: 0 0;
}

.about-copy {
  align-self: center;
  padding-right: clamp(0px, 4vw, 70px);
}

.about-copy h2 {
  font-size: clamp(58px, 7vw, 112px);
  letter-spacing: -0.055em;
  margin: 28px 0 26px;
}

.about-copy .lead {
  color: #d7cfc4;
  font-family: var(--serif);
  font-size: clamp(24px, 2.5vw, 39px);
  line-height: 1.18;
  max-width: 720px;
}

.about-columns {
  color: #aaa69f;
  display: grid;
  font-size: 14px;
  gap: 30px;
  grid-template-columns: repeat(2, 1fr);
  margin: 42px 0;
}

.about-copy blockquote {
  border-left: 1px solid #8f6d5e;
  color: #d5b5a3;
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  margin: 0 0 44px;
  padding-left: 24px;
}

.service-list {
  border-top: 1px solid var(--line);
  margin-top: 75px;
}

.service-row {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 30px;
  grid-template-columns: 55px minmax(220px, 0.8fr) minmax(300px, 1.2fr) 50px;
  min-height: 155px;
  padding: 25px 8px;
  transition: padding 200ms ease;
}

.service-row:hover {
  padding-left: 20px;
}

.service-row > span {
  color: var(--clay);
  font-size: 11px;
}

.service-row h3 {
  font-size: clamp(25px, 2.7vw, 44px);
  margin: 0;
}

.service-row p {
  color: var(--muted);
  margin: 0;
  max-width: 570px;
}

.service-row > a {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  font-size: 18px;
  height: 48px;
  justify-content: center;
  transition: background 200ms ease, color 200ms ease;
  width: 48px;
}

.service-row:hover > a {
  background: var(--ink);
  color: var(--white);
}

.certificate {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  padding-top: 0;
}

.certificate-card {
  align-items: flex-start;
  background: var(--clay);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 610px;
  padding: clamp(38px, 6vw, 100px);
}

.certificate-card h2 {
  font-size: clamp(42px, 4.5vw, 72px);
  letter-spacing: -0.04em;
  margin: 28px 0;
}

.certificate-card p {
  color: #eaded6;
  margin-bottom: 38px;
  max-width: 440px;
}

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

.site-footer {
  background: #10100d;
  color: var(--white);
  padding: clamp(80px, 9vw, 145px) clamp(24px, 5vw, 90px) 30px;
}

.footer-main {
  align-items: end;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  gap: 60px;
  grid-template-columns: 1.2fr 0.8fr;
  padding-bottom: 80px;
}

.footer-main h2 {
  max-width: 800px;
}

.footer-phone {
  font-family: var(--serif);
  font-size: clamp(28px, 3.1vw, 50px);
  justify-self: end;
}

.footer-meta {
  align-items: center;
  color: #8e8e86;
  display: grid;
  font-size: 10px;
  grid-template-columns: 1fr auto 1fr;
  letter-spacing: 0.1em;
  padding-top: 30px;
  text-transform: uppercase;
}

.footer-meta p {
  margin: 0;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  align-items: center;
  border: 1px solid #42423c;
  border-radius: 50%;
  display: flex;
  height: 38px;
  justify-content: center;
  transition: border-color 200ms ease, color 200ms ease;
  width: 38px;
}

.footer-socials a:hover {
  border-color: #c8b4a7;
  color: var(--white);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-self: end;
  justify-content: flex-end;
}

.footer-legal a,
.legal-document a,
.messenger-privacy-note a {
  text-decoration: underline;
  text-decoration-color: rgba(157, 96, 73, 0.48);
  text-underline-offset: 0.28em;
}

.footer-legal a {
  text-decoration-color: rgba(255, 255, 255, 0.24);
}

.page-hero {
  min-height: 620px;
  overflow: hidden;
  padding: 210px clamp(24px, 7vw, 125px) 95px;
  position: relative;
}

.page-hero::after {
  color: rgba(23, 23, 19, 0.045);
  content: "Y Z";
  font-family: var(--serif);
  font-size: clamp(240px, 34vw, 560px);
  line-height: 0.7;
  position: absolute;
  right: 2vw;
  top: 130px;
  z-index: -1;
}

.page-hero h1 {
  font-size: clamp(88px, 12vw, 190px);
  letter-spacing: -0.065em;
  margin: 40px 0 28px;
}

.page-hero > p {
  color: var(--muted);
  font-size: 18px;
  max-width: 560px;
}

.portfolio-section {
  padding-top: 40px;
}

.gallery-tabs {
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 26px;
  overflow-x: auto;
  padding-bottom: 18px;
  scrollbar-width: thin;
}

.gallery-tabs button {
  background: none;
  border: 0;
  color: var(--muted);
  cursor: pointer;
  flex: 0 0 auto;
  font-size: 11px;
  letter-spacing: 0.12em;
  padding: 10px 0;
  text-transform: uppercase;
}

.gallery-tabs button.is-active {
  color: var(--ink);
  font-weight: 700;
}

.gallery-intro {
  align-items: baseline;
  display: flex;
  gap: 28px;
  margin: 52px 0 38px;
}

.gallery-intro > span {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 65px);
  line-height: 1;
}

.gallery-intro p {
  color: var(--muted);
  margin: 0;
  max-width: 570px;
}

.gallery-stage {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 260ms ease, transform 260ms cubic-bezier(0.2, 0.72, 0.2, 1), filter 260ms ease;
}

.gallery-stage.is-leaving {
  filter: blur(3px);
  opacity: 0;
  transform: translate3d(0, 12px, 0);
}

.masonry-grid {
  display: grid;
  gap: clamp(12px, 1.4vw, 24px);
  grid-auto-rows: 180px;
  grid-template-columns: repeat(12, 1fr);
}

.gallery-photo {
  background: #ddd4c7;
  border: 0;
  cursor: zoom-in;
  grid-column: span 4;
  grid-row: span 3;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.gallery-photo-1,
.gallery-photo-4 {
  grid-column: span 5;
}

.gallery-photo-2,
.gallery-photo-3 {
  grid-column: span 7;
}

.gallery-photo img {
  height: 100%;
  object-fit: cover;
  transition: opacity 1000ms ease, filter 1100ms ease, transform 1200ms cubic-bezier(0.2, 0.7, 0.2, 1);
  width: 100%;
}

.gallery-photo:nth-child(2n) img {
  object-position: center 30%;
}

.gallery-photo > span {
  align-items: center;
  background: rgba(245, 241, 233, 0.9);
  border-radius: 50%;
  display: flex;
  font-size: 9px;
  height: 62px;
  justify-content: center;
  left: 50%;
  letter-spacing: 0.12em;
  opacity: 0;
  position: absolute;
  text-transform: uppercase;
  top: 50%;
  transform: translate(-50%, -40%);
  transition: opacity 200ms ease, transform 200ms ease;
  width: 62px;
}

.gallery-photo:hover img {
  transform: scale(1.025);
}

.gallery-photo:hover > span {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.lightbox {
  align-items: center;
  background: rgba(10, 10, 8, 0.96);
  display: flex;
  inset: 0;
  justify-content: center;
  overflow: hidden;
  padding: 60px;
  position: fixed;
  z-index: 100;
}

.lightbox > button {
  background: transparent;
  border: 0;
  color: white;
  cursor: pointer;
  font-size: 11px;
  letter-spacing: 0.12em;
  position: absolute;
  right: 28px;
  text-transform: uppercase;
  top: 28px;
}

.lightbox img {
  height: 100%;
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  width: 100%;
}

.portfolio-cta {
  padding: clamp(80px, 10vw, 160px) clamp(24px, 7vw, 125px);
}

.portfolio-cta > p {
  color: #aaa69f;
}

.portfolio-cta h2 {
  margin-bottom: 50px;
  max-width: 1050px;
}

.pricing-section {
  padding-top: 40px;
}

.wedding-price-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 70px;
}

.price-card-featured {
  background: var(--white);
}

.price-card-featured > img {
  aspect-ratio: 1.35;
  object-fit: cover;
  width: 100%;
}

.price-card-copy {
  padding: clamp(28px, 4vw, 58px);
}

.price-title-row {
  align-items: start;
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.price-title-row h3 {
  font-size: clamp(29px, 3vw, 48px);
  margin: 0;
}

.price-title-row strong {
  color: var(--clay);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  text-align: right;
  white-space: nowrap;
}

.price-card-copy > p {
  color: var(--muted);
  margin: 26px 0;
}

.price-card-copy ul {
  border-top: 1px solid var(--line);
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
}

.price-card-copy li {
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  padding: 13px 0 13px 22px;
  position: relative;
}

.price-card-copy li::before {
  color: var(--clay);
  content: "+";
  left: 0;
  position: absolute;
}

.promo-strip {
  align-items: center;
  background: var(--clay);
  color: var(--white);
  display: flex;
  flex-direction: column;
  padding: clamp(80px, 9vw, 140px) 24px;
  text-align: center;
}

.promo-strip > span {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.promo-strip h2 {
  font-size: clamp(46px, 6.4vw, 100px);
  letter-spacing: -0.045em;
  margin: 30px 0 24px;
}

.promo-strip p {
  color: #ecdcd2;
  margin-bottom: 36px;
  max-width: 700px;
}

.other-price-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 70px;
}

.price-card {
  background: var(--white);
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
}

.price-card img {
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.price-card > div {
  padding: 40px;
}

.price-card h3 {
  font-size: 34px;
  margin-bottom: 18px;
}

.price-card strong {
  color: var(--clay);
  display: block;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 24px;
}

.price-card p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

.section-sand {
  background: var(--paper-2);
}

.messenger-privacy-note {
  color: var(--muted);
  font-size: 12px;
  grid-column: 2;
  line-height: 1.6;
  margin: -12px 0 0;
  max-width: 650px;
}

.legal-page {
  background: var(--paper);
  min-height: 100vh;
  padding-top: 96px;
}

.legal-hero {
  border-bottom: 1px solid var(--line);
  padding: clamp(84px, 10vw, 150px) clamp(24px, 7vw, 125px) clamp(65px, 8vw, 110px);
}

.legal-hero h1 {
  font-size: clamp(58px, 8vw, 128px);
  letter-spacing: -0.055em;
  margin: 34px 0 28px;
  max-width: 1200px;
}

.legal-hero > p {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.13em;
  margin: 0;
  text-transform: uppercase;
}

.legal-layout {
  display: grid;
  gap: clamp(60px, 8vw, 130px);
  grid-template-columns: minmax(190px, 0.28fr) minmax(0, 1fr);
  margin: 0 auto;
  max-width: 1560px;
  padding: 80px clamp(24px, 7vw, 125px) 130px;
}

.legal-toc {
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: sticky;
  top: 100px;
}

.legal-toc strong {
  font-size: 10px;
  letter-spacing: 0.16em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.legal-toc a {
  color: var(--muted);
  font-size: 12px;
  transition: color 180ms ease, transform 180ms ease;
}

.legal-toc a:hover {
  color: var(--ink);
  transform: translateX(4px);
}

.legal-document {
  max-width: 1020px;
}

.legal-document-centered {
  margin: 0 auto;
  max-width: 1040px;
  padding: 80px clamp(24px, 7vw, 125px) 130px;
}

.legal-document section {
  border-top: 1px solid var(--line);
  padding: 34px 0 clamp(75px, 8vw, 118px);
  scroll-margin-top: 96px;
}

.legal-document section:first-child {
  border-top: 0;
  padding-top: 0;
}

.legal-document section > span {
  color: var(--clay);
  display: block;
  font-size: 10px;
  letter-spacing: 0.15em;
  margin-bottom: 28px;
}

.legal-document h2 {
  font-size: clamp(42px, 5.2vw, 76px);
  letter-spacing: -0.045em;
  margin: 0 0 35px;
}

.legal-document h3 {
  font-size: 27px;
  line-height: 1.1;
}

.legal-document p,
.legal-document li {
  color: #4f4e48;
  font-size: 16px;
  line-height: 1.78;
}

.legal-document p {
  margin-bottom: 20px;
}

.legal-document ul {
  list-style: none;
  margin: 25px 0 28px;
  padding: 0;
}

.legal-document li {
  border-top: 1px solid var(--line);
  padding: 15px 0 15px 28px;
  position: relative;
}

.legal-document li:last-child {
  border-bottom: 1px solid var(--line);
}

.legal-document li::before {
  color: var(--clay);
  content: "—";
  left: 0;
  position: absolute;
}

.legal-document strong,
.legal-document b {
  color: var(--ink);
  font-weight: 600;
}

.legal-fact-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 45px;
}

.legal-fact-grid > div {
  background: var(--paper-2);
  display: flex;
  flex-direction: column;
  min-height: 130px;
  padding: 24px;
}

.legal-fact-grid small,
.legal-contact-card small {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.13em;
  margin-bottom: auto;
  text-transform: uppercase;
}

.legal-fact-grid strong,
.legal-fact-grid a {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.2;
  margin-top: 25px;
}

.legal-table {
  border-bottom: 1px solid var(--line);
  margin: 38px 0;
}

.legal-table-row {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 26px;
  grid-template-columns: 0.72fr 1fr 1.2fr;
  padding: 24px 0;
}

.legal-table-row p {
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

.legal-table-head {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.13em;
  padding: 14px 0;
  text-transform: uppercase;
}

.legal-contact-card {
  align-items: center;
  background: var(--paper-2);
  display: flex;
  gap: 30px;
  justify-content: space-between;
  margin-top: 44px;
  padding: 28px;
}

.legal-contact-card > div {
  display: flex;
  flex-direction: column;
}

.legal-contact-card a:not(.button) {
  font-family: var(--serif);
  font-size: 24px;
  margin-top: 12px;
}

.cookie-tech-list {
  display: grid;
  gap: 1px;
  margin: 40px 0;
}

.cookie-tech-list > div {
  background: var(--paper-2);
  padding: 28px;
}

.cookie-tech-list strong {
  display: block;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
  margin-bottom: 12px;
}

.cookie-tech-list code {
  background: rgba(23, 23, 19, 0.08);
  border-radius: 4px;
  display: inline-block;
  font-size: 12px;
  margin-bottom: 12px;
  padding: 5px 8px;
}

.cookie-tech-list p {
  font-size: 14px;
  margin: 0;
}

.cookie-notice {
  align-items: center;
  background: rgba(16, 16, 13, 0.97);
  bottom: 20px;
  box-shadow: 0 18px 60px rgba(23, 23, 19, 0.24);
  color: var(--white);
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr auto;
  left: 50%;
  max-width: 920px;
  padding: 22px 24px;
  position: fixed;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  z-index: 260;
}

.cookie-notice strong {
  display: block;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
}

.cookie-notice p {
  color: #b6b3ac;
  font-size: 12px;
  line-height: 1.55;
  margin: 7px 0 4px;
  max-width: 700px;
}

.cookie-notice a {
  color: #d7b9aa;
  font-size: 11px;
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.cookie-notice button {
  background: var(--white);
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  font-size: 11px;
  letter-spacing: 0.1em;
  min-height: 46px;
  padding: 0 24px;
  text-transform: uppercase;
}

.benefit-grid,
.contact-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 70px;
}

.benefit-grid article,
.contact-grid article {
  border-top: 1px solid var(--line);
  padding: 25px 0 0;
}

.benefit-grid span,
.contact-grid span {
  color: var(--clay);
  font-size: 10px;
}

.benefit-grid h3,
.contact-grid h3 {
  font-size: 32px;
  margin: 40px 0 18px;
}

.benefit-grid p,
.contact-grid p {
  color: var(--muted);
  max-width: 370px;
}

.monthly-offer {
  align-items: center;
  display: grid;
  gap: clamp(50px, 9vw, 140px);
  grid-template-columns: minmax(300px, 0.9fr) minmax(360px, 1.1fr);
}

.monthly-image img {
  aspect-ratio: 0.9;
  height: 100%;
  object-fit: cover;
}

.monthly-offer h2 {
  font-size: clamp(45px, 5vw, 78px);
  letter-spacing: -0.04em;
  margin: 30px 0;
}

.monthly-offer p {
  color: var(--muted);
  max-width: 680px;
}

.monthly-offer .button {
  margin-top: 20px;
}

.contact-page {
  background: var(--ink);
  color: var(--white);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 820px;
  padding-top: 96px;
}

body:has(.contact-page) .site-header {
  color: var(--white);
}

body:has(.contact-page) .brand-copy small,
body:has(.contact-page) .header-phone span {
  color: #9e9e95;
}

.contact-copy {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px clamp(30px, 7vw, 130px);
}

.contact-copy h1 {
  font-size: clamp(65px, 7.8vw, 126px);
  letter-spacing: -0.06em;
  margin: 34px 0 28px;
}

.contact-copy > p {
  color: #b4b1aa;
  font-size: 17px;
  max-width: 530px;
}

.contact-phone-large {
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  font-family: var(--serif);
  font-size: clamp(31px, 3.2vw, 50px);
  margin-top: 35px;
  padding-bottom: 8px;
}

.contact-hours {
  color: #8d8d85;
  font-size: 10px;
  letter-spacing: 0.15em;
  margin-top: 10px;
  text-transform: uppercase;
}

.contact-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 50px;
}

.light-link {
  color: var(--white);
}

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

.contact-details .section-heading h2 {
  max-width: 700px;
}

.social-contact {
  align-items: end;
  display: grid;
  gap: 70px;
  grid-template-columns: 0.8fr 1.2fr;
  padding: clamp(90px, 10vw, 160px) clamp(24px, 5vw, 90px);
}

.social-contact h2 {
  font-size: clamp(43px, 4.8vw, 76px);
  letter-spacing: -0.04em;
  margin: 30px 0 0;
}

.social-list {
  border-top: 1px solid var(--line);
}

.social-list a {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 22px;
  grid-template-columns: 45px 1fr 30px;
  min-height: 92px;
  padding: 12px 8px;
}

.social-list a > span {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  font-size: 9px;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.social-list strong {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
}

.social-list em {
  font-style: normal;
}

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

  .desktop-nav,
  .header-phone {
    display: none;
  }

  .menu-toggle {
    background: none;
    border: 0;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 7px;
    justify-self: end;
    padding: 10px;
    position: relative;
    z-index: 31;
  }

  .menu-toggle span {
    background: currentColor;
    height: 1px;
    transition: transform 200ms ease;
    width: 28px;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-menu {
    background: var(--ink);
    color: var(--white);
    display: grid;
    gap: 60px;
    grid-template-columns: 1fr 0.6fr;
    inset: 0;
    opacity: 0;
    padding: 150px clamp(30px, 8vw, 100px) 60px;
    pointer-events: none;
    position: fixed;
    transform: translateY(-20px);
    transition: opacity 220ms ease, transform 220ms ease;
    visibility: hidden;
    z-index: 30;
  }

  .mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .mobile-menu nav {
    align-self: center;
    display: flex;
    flex-direction: column;
  }

  .mobile-menu nav a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    font-family: var(--serif);
    font-size: clamp(37px, 6vw, 66px);
    padding: 13px 0;
  }

  .mobile-menu nav span {
    color: #a18170;
    display: inline-block;
    font-family: var(--sans);
    font-size: 10px;
    margin-right: 20px;
    width: 24px;
  }

  .mobile-contact {
    align-self: end;
    display: flex;
    flex-direction: column;
    gap: 13px;
  }

  .mobile-contact > span {
    color: #847f77;
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
  }

  .mobile-contact a:first-of-type {
    font-family: var(--serif);
    font-size: 25px;
  }

  .hero-copy {
    width: 61vw;
  }

  .hero-visual {
    width: 50vw;
  }

  .service-row {
    grid-template-columns: 45px minmax(190px, 0.7fr) 1.3fr 48px;
  }

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

  .price-card img {
    aspect-ratio: 1.5;
    min-height: 0;
    width: 100%;
  }

  .masonry-grid {
    grid-auto-rows: 150px;
  }
}

@media (max-width: 800px) {
  .site-header {
    height: 78px;
    padding: 0 20px;
  }

  .brand-copy strong {
    font-size: 15px;
  }

  .brand-mark {
    height: 36px;
    width: 36px;
  }

  .mobile-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 110px 24px 45px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding-top: 78px;
  }

  .hero-copy {
    padding: 74px 22px 55px;
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(54px, 17vw, 88px);
    margin-top: 28px;
  }

  .hero h1 em {
    font-size: 0.48em;
    margin-left: 8vw;
  }

  .hero-copy > p {
    font-size: 15px;
  }

  .hero-stat {
    margin-top: 45px;
  }

  .hero-visual {
    clip-path: none;
    height: 67vh;
    min-height: 520px;
    position: relative;
    width: 100%;
  }

  .hero-image-accent {
    border-width: 6px;
    bottom: 28px;
    height: 190px;
    left: 20px;
    width: 132px;
  }

  .hero-signature {
    bottom: 26px;
    right: 22px;
  }

  .scroll-cue {
    display: none;
  }

  .section {
    padding: 88px 22px;
  }

  .split-heading {
    display: block;
  }

  .split-heading > p {
    margin-top: 28px;
  }

  .section-heading h2,
  .portfolio-cta h2,
  .footer-main h2 {
    font-size: clamp(42px, 12vw, 62px);
  }

  .story-grid {
    display: flex;
    margin-top: 48px;
    margin-right: -22px;
    overflow-x: auto;
    padding-right: 22px;
    scroll-snap-type: x mandatory;
  }

  .story-card,
  .story-card:nth-child(2) {
    flex: 0 0 82vw;
    margin-top: 0;
    scroll-snap-align: start;
  }

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

  .about-image {
    margin: 0 0 0 18px;
  }

  .about-copy {
    padding-right: 0;
  }

  .about-copy h2 {
    font-size: 63px;
  }

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

  .service-row {
    align-items: start;
    gap: 15px;
    grid-template-columns: 34px 1fr 40px;
    padding: 28px 0;
  }

  .service-row h3 {
    font-size: 29px;
  }

  .service-row p {
    grid-column: 2 / 4;
  }

  .service-row > a {
    grid-column: 3;
    grid-row: 1;
    height: 38px;
    width: 38px;
  }

  .certificate {
    display: flex;
    flex-direction: column-reverse;
    padding-top: 0;
  }

  .certificate-card {
    min-height: 0;
    padding: 58px 30px;
  }

  .certificate-image img {
    aspect-ratio: 1.05;
  }

  .footer-main,
  .footer-meta {
    display: flex;
    flex-direction: column;
  }

  .footer-main {
    align-items: flex-start;
    padding-bottom: 55px;
  }

  .footer-phone {
    font-size: 31px;
    justify-self: auto;
  }

  .footer-meta {
    align-items: flex-start;
    gap: 24px;
  }

  .footer-legal {
    flex-direction: column;
    gap: 8px;
  }

  .page-hero {
    min-height: 520px;
    padding: 170px 22px 70px;
  }

  .page-hero h1 {
    font-size: clamp(74px, 23vw, 118px);
  }

  .page-hero::after {
    font-size: 270px;
    top: 170px;
  }

  .gallery-intro {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .masonry-grid {
    display: flex;
    flex-direction: column;
  }

  .gallery-photo {
    flex: auto;
    height: auto;
  }

  .gallery-photo img {
    aspect-ratio: 1.1;
  }

  .gallery-photo:nth-child(2n) img {
    aspect-ratio: 0.84;
  }

  .lightbox {
    padding: 55px 12px 12px;
  }

  .wedding-price-grid,
  .other-price-grid,
  .benefit-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .price-title-row {
    flex-direction: column;
  }

  .price-title-row strong {
    text-align: left;
  }

  .benefit-grid,
  .contact-grid {
    gap: 48px;
  }

  .benefit-grid h3,
  .contact-grid h3 {
    margin-top: 24px;
  }

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

  .contact-page {
    display: flex;
    flex-direction: column;
    padding-top: 78px;
  }

  .contact-copy {
    padding: 80px 22px 70px;
  }

  .contact-copy h1 {
    font-size: clamp(62px, 17vw, 86px);
  }

  .contact-phone-large {
    font-size: 29px;
  }

  .contact-image img {
    height: 72vh;
    min-height: 500px;
  }

  .social-contact {
    align-items: start;
    grid-template-columns: 1fr;
    padding: 88px 22px;
  }

  .messenger-privacy-note {
    grid-column: 1;
    margin-top: -18px;
  }

  .legal-page {
    padding-top: 78px;
  }

  .legal-hero {
    padding: 80px 22px 58px;
  }

  .legal-hero h1 {
    font-size: clamp(50px, 14vw, 72px);
    overflow-wrap: anywhere;
  }

  .legal-layout {
    display: block;
    padding: 54px 22px 90px;
  }

  .legal-toc {
    display: none;
  }

  .legal-document-centered {
    padding: 54px 22px 90px;
  }

  .legal-document section {
    padding-bottom: 75px;
  }

  .legal-document h2 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .legal-document p,
  .legal-document li {
    font-size: 15px;
  }

  .legal-fact-grid {
    grid-template-columns: 1fr;
  }

  .legal-table-head {
    display: none;
  }

  .legal-table-row {
    gap: 10px;
    grid-template-columns: 1fr;
  }

  .legal-table-row b {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 400;
  }

  .legal-table-row p:last-child {
    border-top: 1px dotted var(--line);
    margin-top: 5px;
    padding-top: 12px;
  }

  .legal-contact-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .cookie-notice {
    align-items: stretch;
    bottom: 10px;
    gap: 14px;
    grid-template-columns: 1fr;
    padding: 18px;
    width: calc(100% - 20px);
  }

  .cookie-notice p {
    font-size: 11px;
  }

  .cookie-notice button {
    width: 100%;
  }

  .back-to-top {
    bottom: 18px;
    right: 18px;
  }
}

.lazy-image {
  animation: image-sheen 1800ms ease-in-out infinite;
  background-color: #d9d1c5;
  background-image: linear-gradient(105deg, rgba(255, 255, 255, 0.04) 24%, rgba(255, 255, 255, 0.42) 42%, rgba(255, 255, 255, 0.05) 60%);
  background-position: 100% 0;
  background-size: 220% 100%;
  color: transparent;
  filter: blur(11px);
  opacity: 0.22;
  transition: opacity 950ms ease, filter 1100ms ease;
}

.lazy-image.is-loaded {
  animation: none;
  filter: blur(0);
  opacity: 1;
}

.hero-visual .lazy-image,
.contact-image .lazy-image,
.lightbox .lazy-image {
  animation: none;
  filter: none;
  opacity: 1;
}

@keyframes image-sheen {
  0% { background-position: 100% 0; }
  55%, 100% { background-position: -100% 0; }
}

.js-reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition: opacity 720ms ease var(--reveal-delay, 0ms), transform 720ms cubic-bezier(0.2, 0.72, 0.2, 1) var(--reveal-delay, 0ms);
}

.js-reveal.is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.scroll-progress {
  background: rgba(23, 23, 19, 0.08);
  height: 2px;
  left: 0;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 240;
}

.scroll-progress span {
  background: var(--clay);
  display: block;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.page-transition-layer {
  background: var(--ink);
  inset: 0;
  pointer-events: none;
  position: fixed;
  transform: scaleY(0);
  transform-origin: bottom center;
  transition: transform 280ms cubic-bezier(0.76, 0, 0.24, 1);
  z-index: 220;
}

body.is-leaving .page-transition-layer {
  transform: scaleY(1);
}

main {
  animation: page-arrive 420ms ease-out;
}

@keyframes page-arrive {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.gallery-stage.is-entering .gallery-intro {
  animation: gallery-arrive 620ms cubic-bezier(0.2, 0.72, 0.2, 1) both;
}

.gallery-stage.is-entering .gallery-photo {
  animation: gallery-card-arrive 760ms cubic-bezier(0.16, 0.76, 0.24, 1) both;
  animation-delay: calc(var(--gallery-index, 0) * 80ms);
}

@keyframes gallery-arrive {
  from {
    opacity: 0;
    transform: translate3d(0, 12px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes gallery-card-arrive {
  from {
    filter: blur(5px);
    opacity: 0;
    transform: translate3d(0, 28px, 0) scale(0.985);
  }
  to {
    filter: blur(0);
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.back-to-top {
  align-items: center;
  background: rgba(245, 241, 233, 0.92);
  border: 1px solid var(--line);
  border-radius: 50%;
  bottom: 86px;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  font-size: 18px;
  height: 48px;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 28px;
  transform: translate3d(0, 12px, 0);
  transition: opacity 240ms ease, transform 240ms ease, background-color 200ms ease, color 200ms ease;
  width: 48px;
  z-index: 80;
}

body:has(.cookie-notice) .back-to-top {
  opacity: 0;
  pointer-events: none;
}

.back-to-top:hover {
  background: var(--ink);
  color: var(--white);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

@media (max-width: 800px) {
  .back-to-top {
    bottom: 82px;
    right: 18px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .js-reveal,
  .js-reveal.is-revealed,
  .lazy-image,
  .lazy-image.is-loaded {
    filter: none;
    opacity: 1;
    transform: none;
  }

  .page-transition-layer,
  .scroll-progress {
    display: none;
  }

  main,
  .gallery-stage.is-entering .gallery-intro,
  .gallery-stage.is-entering .gallery-photo {
    animation: none;
  }
}


[hidden] {
  display: none !important;
}

body.menu-open {
  overflow: hidden;
}

.gallery-stage.is-leaving {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition: opacity 260ms ease, transform 260ms ease;
}

.lightbox[hidden] {
  display: none !important;
}


/* SEO service pages */
.seo-directions {
  background: var(--paper-2);
}

.seo-service-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 70px;
}

.seo-service-card {
  background: var(--paper);
  display: flex;
  flex-direction: column;
  min-height: 310px;
  padding: 32px;
  transition: background-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.seo-service-card:hover {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-4px);
}

.seo-service-card > span {
  color: var(--clay);
  font-size: 10px;
}

.seo-service-card h3 {
  font-size: clamp(27px, 2.4vw, 38px);
  margin: 54px 0 18px;
}

.seo-service-card p {
  color: var(--muted);
  font-size: 14px;
}

.seo-service-card:hover p {
  color: #bbb8b1;
}

.seo-service-card em {
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0.12em;
  margin-top: auto;
  text-transform: uppercase;
}

.seo-service-grid.compact .seo-service-card {
  min-height: 235px;
}

.seo-faq .section-heading {
  margin-bottom: 58px;
}

.faq-list {
  border-top: 1px solid var(--line);
  margin-left: auto;
  max-width: 1050px;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 0 6px;
}

.faq-list summary {
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1.15;
  list-style: none;
  padding: 30px 58px 30px 0;
  position: relative;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 300;
  position: absolute;
  right: 8px;
  top: 30px;
  transition: transform 200ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details p {
  color: var(--muted);
  margin: -5px 0 32px;
  max-width: 780px;
}

.service-page-hero h1 {
  max-width: 1200px;
}

.service-overview {
  background: var(--paper);
}

.service-feature-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 70px;
}

.service-feature {
  border-top: 1px solid var(--line);
  padding-top: 26px;
}

.service-feature span {
  color: var(--clay);
  font-size: 10px;
}

.service-feature h3 {
  font-size: 32px;
  margin: 42px 0 18px;
}

.service-feature p,
.service-copy .split-heading > p {
  color: var(--muted);
}

.service-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 35px;
}

@media (max-width: 1000px) {
  .seo-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 800px) {
  .seo-service-grid,
  .service-feature-grid {
    grid-template-columns: 1fr;
  }

  .seo-service-grid {
    margin-top: 48px;
  }

  .seo-service-card,
  .seo-service-grid.compact .seo-service-card {
    min-height: 230px;
  }

  .service-feature-grid {
    gap: 48px;
  }

  .service-feature h3 {
    margin-top: 24px;
  }

  .faq-list summary {
    font-size: 25px;
    padding: 24px 45px 24px 0;
  }

  .faq-list summary::after {
    top: 22px;
  }
}




/* Footer author credits */
.footer-credits {
  color: rgba(255, 253, 248, 0.48);
  margin-top: 28px;
  padding-top: 21px;
  position: relative;
}

.footer-credit-rule {
  background: rgba(255, 253, 248, 0.12);
  height: 1px;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
}

.footer-credit-rule::after {
  animation: footer-credit-glint 8s cubic-bezier(0.22, 0.61, 0.36, 1) infinite;
  background: linear-gradient(90deg, transparent, var(--clay, #9d6049), rgba(255, 253, 248, 0.68), var(--clay, #9d6049), transparent);
  content: "";
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transform: translate3d(-120%, 0, 0);
  width: clamp(90px, 16vw, 230px);
  will-change: transform, opacity;
}

.footer-credits-inner {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  min-width: 0;
  padding-right: 72px;
}

.footer-credit-spark {
  animation: footer-credit-spark 8s ease-in-out infinite;
  background: var(--clay, #9d6049);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(157, 96, 73, 0.46);
  flex: 0 0 auto;
  height: 4px;
  margin-right: auto;
  opacity: 0.42;
  transform: translate3d(0, 0, 0) scale(0.84);
  width: 4px;
  will-change: transform, opacity;
}

.footer-credit-link {
  color: rgba(255, 253, 248, 0.47);
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 2px 0 7px;
  position: relative;
  transition: color 220ms ease;
}

.footer-credit-link::after {
  background: linear-gradient(90deg, var(--clay, #9d6049), rgba(157, 96, 73, 0));
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 260ms ease;
}

.footer-credit-link:hover,
.footer-credit-link:focus-visible {
  color: rgba(255, 253, 248, 0.88);
}

.footer-credit-link:hover::after,
.footer-credit-link:focus-visible::after {
  transform: scaleX(1);
}

.footer-credit-caption {
  color: rgba(255, 253, 248, 0.31);
  font-family: var(--sans, "Arial Narrow", "Helvetica Neue", Arial, sans-serif);
  font-size: 8px;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
  transition: color 220ms ease;
}

.footer-credit-link:hover .footer-credit-caption,
.footer-credit-link:focus-visible .footer-credit-caption {
  color: rgba(255, 253, 248, 0.52);
}

.footer-credit-title {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  font-family: var(--sans, "Arial Narrow", "Helvetica Neue", Arial, sans-serif);
  font-size: 11px;
  gap: 0.22em;
  letter-spacing: 0.045em;
  line-height: 1.35;
}

.footer-credit-wordmark {
  color: rgba(255, 253, 248, 0.72);
  font-family: var(--serif, Georgia, "Times New Roman", serif);
  font-size: 13px;
  letter-spacing: 0.025em;
  white-space: nowrap;
}

.footer-credit-wordmark > span {
  color: var(--clay, #9d6049);
}

.footer-credit-arrow {
  color: var(--clay, #9d6049);
  display: inline-block;
  margin-left: 2px;
  transition: transform 220ms ease;
}

.footer-credit-link:hover .footer-credit-arrow,
.footer-credit-link:focus-visible .footer-credit-arrow {
  transform: translate3d(2px, -2px, 0);
}

.footer-credit-divider {
  background: rgba(255, 253, 248, 0.14);
  flex: 0 0 auto;
  height: 28px;
  width: 1px;
}

@keyframes footer-credit-glint {
  0%, 2% {
    opacity: 0;
    transform: translate3d(-120%, 0, 0);
  }
  5% {
    opacity: 0.16;
  }
  12% {
    opacity: 0.82;
  }
  24% {
    opacity: 0;
    transform: translate3d(calc(100vw + 120%), 0, 0);
  }
  100% {
    opacity: 0;
    transform: translate3d(calc(100vw + 120%), 0, 0);
  }
}

@keyframes footer-credit-spark {
  0%, 3%, 26%, 100% {
    opacity: 0.38;
    transform: translate3d(0, 0, 0) scale(0.84);
  }
  10% {
    opacity: 0.9;
    transform: translate3d(0, 0, 0) scale(1.42);
  }
  18% {
    opacity: 0.54;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@media (max-width: 800px) {
  .footer-credits {
    margin-top: 25px;
    padding-top: 19px;
  }

  .footer-credits-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
    padding-right: 66px;
  }

  .footer-credit-spark {
    margin-bottom: 1px;
    margin-right: 0;
  }

  .footer-credit-divider {
    display: none;
  }

  .footer-credit-link {
    max-width: 100%;
    width: max-content;
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer-credit-rule::after {
    animation: none;
    display: none;
  }

  .footer-credit-spark {
    animation: none;
    box-shadow: none;
    opacity: 0.42;
    transform: none;
  }
}
