:root {
  --navy: #121538;
  --navy-deep: #080a18;
  --ivory: #f6f1e6;
  --paper: #fffaf0;
  --ink: #111329;
  --muted: #6d675e;
  --gold: #c9a868;
  --sage: #687765;
  --line: rgba(18, 21, 56, 0.14);
  --white: #fffaf0;
  --shadow: 0 22px 80px rgba(4, 6, 18, 0.24);
  font-family: "Aptos", "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--navy-deep);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  width: 100%;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--navy-deep);
  color: var(--ink);
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 54px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(8, 10, 24, 0.82), rgba(8, 10, 24, 0));
  transition: background 220ms ease, box-shadow 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(8, 10, 24, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 46px rgba(0, 0, 0, 0.18);
}

.brand img {
  width: clamp(138px, 17vw, 238px);
  height: auto;
}

.brand,
.nav-links,
.hero-inner,
.section-grid > *,
.statement-wrap > *,
.process-layout > *,
.video-feature > *,
.about-layout > *,
.contact-shell > *,
.gallery-grid > *,
.feedback-grid > *,
.service-grid > * {
  min-width: 0;
}

.nav-links {
  display: flex;
  gap: clamp(14px, 2vw, 30px);
  align-items: center;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 250, 240, 0.78);
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("./assets/images/hero.jpg");
  background-size: cover;
  background-position: center 42%;
  transform: scale(1.02);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 9, 25, 0.86), rgba(7, 9, 25, 0.54) 46%, rgba(7, 9, 25, 0.2)),
    linear-gradient(0deg, rgba(8, 10, 24, 0.95), rgba(8, 10, 24, 0.1) 45%);
}

.hero-inner {
  position: relative;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 150px 0 82px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

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

h1,
h2 {
  font-family: "Cormorant Garamond", "Bodoni 72", Didot, Georgia, serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 920px;
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 4.9vw, 4.8rem);
  line-height: 1.02;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 30px;
  font-size: clamp(1.04rem, 1.6vw, 1.28rem);
  line-height: 1.7;
  color: rgba(255, 250, 240, 0.86);
}

.primary-cta,
.form-button {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 240, 0.34);
  border-radius: 999px;
  padding: 15px 24px;
  min-height: 52px;
  background: var(--white);
  color: var(--navy);
  font-weight: 800;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.24);
  transition: transform 180ms ease, background 180ms ease;
}

.primary-cta::before,
.form-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.36) 45%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 520ms ease;
}

.primary-cta:hover,
.form-button:hover {
  transform: translateY(-2px);
  background: #ffffff;
}

.primary-cta:hover::before,
.form-button:hover::before {
  transform: translateX(120%);
}

.social-proof-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  max-width: 680px;
  margin-top: 20px;
}

.social-proof-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 1 auto;
  color: rgba(255, 250, 240, 0.66);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.social-proof-label::after {
  content: "";
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 168, 104, 0.85), rgba(201, 168, 104, 0));
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  border: 1px solid rgba(255, 250, 240, 0.2);
  border-radius: 999px;
  padding: 7px 14px 7px 8px;
  background: rgba(255, 250, 240, 0.08);
  color: rgba(255, 250, 240, 0.88);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  backdrop-filter: blur(14px);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 168, 104, 0.74);
  background: rgba(255, 250, 240, 0.14);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}

.social-link svg {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  border-radius: 50%;
  padding: 6px;
  background: rgba(255, 250, 240, 0.1);
  transition: background 180ms ease, stroke 180ms ease;
}

.social-link:hover svg {
  background: rgba(255, 250, 240, 0.18);
  stroke: var(--white);
}

.intro-band {
  background: var(--ivory);
  color: var(--navy);
  border-bottom: 1px solid rgba(18, 21, 56, 0.1);
}

.intro-line {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 20px 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.intro-line span {
  transition: color 180ms ease, transform 180ms ease;
}

.intro-line span:hover {
  color: var(--sage);
  transform: translateY(-2px);
}

.section {
  padding: clamp(76px, 9vw, 132px) clamp(18px, 4vw, 54px);
}

.section-ivory {
  background: var(--ivory);
}

.section-grid,
.about-layout {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.86fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
}

.copy-column h2,
.section-heading h2,
.statement-copy h2,
.process-copy h2,
.video-copy h2,
.payment-copy h2,
.contact-copy h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 3.6vw, 3.85rem);
  line-height: 1.04;
}

.copy-column p,
.section-heading p,
.statement-copy p,
.process-copy p,
.video-copy p,
.payment-copy p,
.contact-copy p {
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.8;
  color: var(--muted);
}

.image-frame,
.wide-image,
.gallery-item,
.feedback-video {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
}

.image-frame {
  position: relative;
  background: #ddd3c4;
  box-shadow: var(--shadow);
}

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

.image-frame.tall {
  aspect-ratio: 4 / 5;
}

.image-frame.portrait {
  aspect-ratio: 4 / 5.4;
}

.image-frame figcaption,
.gallery-item figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  border-radius: 6px;
  background: rgba(8, 10, 24, 0.7);
  color: rgba(255, 250, 240, 0.88);
  font-size: 0.86rem;
  line-height: 1.4;
  backdrop-filter: blur(10px);
}

.dark-statement {
  background:
    linear-gradient(180deg, rgba(8, 10, 24, 0.92), rgba(8, 10, 24, 1)),
    var(--navy-deep);
  color: var(--white);
}

.statement-wrap {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(300px, 0.94fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

.wide-image {
  aspect-ratio: 16 / 10;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

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

.statement-copy p {
  color: rgba(255, 250, 240, 0.72);
}

.services-section {
  border-top: 1px solid rgba(18, 21, 56, 0.08);
}

.section-heading {
  width: min(860px, 100%);
  margin: 0 auto clamp(34px, 5vw, 62px);
  text-align: center;
}

.service-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.service-card,
.process-steps article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 250, 240, 0.68);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card:hover,
.process-steps article:hover {
  transform: translateY(-7px);
  border-color: rgba(201, 168, 104, 0.56);
  box-shadow: 0 18px 44px rgba(18, 21, 56, 0.12);
}

.service-card span,
.process-steps span {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--gold);
  font-weight: 900;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
}

.service-card h3,
.process-steps h3,
.feedback-video h3 {
  margin-bottom: 12px;
  font-size: 1.08rem;
  color: var(--navy);
}

.service-card p,
.process-steps p,
.feedback-video p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.civil-effect-section {
  color: var(--white);
  background:
    radial-gradient(circle at 18% 16%, rgba(201, 168, 104, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(8, 10, 24, 0.98), rgba(18, 21, 56, 0.98));
}

.civil-effect-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.civil-heading {
  margin-bottom: clamp(30px, 5vw, 54px);
}

.civil-brief {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  padding: clamp(24px, 4vw, 42px) 0;
  border-top: 1px solid rgba(255, 250, 240, 0.16);
  border-bottom: 1px solid rgba(255, 250, 240, 0.16);
}

.civil-brief-copy h3,
.civil-flow-copy h3 {
  margin: 0 0 14px;
  color: inherit;
  font-size: clamp(1.35rem, 2.4vw, 2.15rem);
  line-height: 1.08;
}

.civil-brief-copy p,
.civil-flow-copy p {
  color: rgba(255, 250, 240, 0.75);
  line-height: 1.72;
}

.civil-compare-list {
  display: grid;
  gap: 0;
}

.civil-compare-list article {
  display: grid;
  grid-template-columns: minmax(150px, 0.36fr) minmax(0, 1fr);
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 250, 240, 0.14);
}

.civil-compare-list article:first-child {
  border-top: 0;
  padding-top: 0;
}

.civil-compare-list article:last-child {
  padding-bottom: 0;
}

.civil-compare-list span,
.civil-timeline span {
  display: inline-block;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.civil-compare-list p {
  margin: 0;
  color: rgba(255, 250, 240, 0.78);
  line-height: 1.72;
}

.civil-flow {
  display: grid;
  grid-template-columns: minmax(230px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(28px, 4vw, 54px);
  align-items: start;
  margin-top: clamp(28px, 4vw, 48px);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 42px);
  background: rgba(255, 250, 240, 0.94);
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

.civil-flow-copy h3 {
  color: var(--navy);
  font-size: clamp(1.28rem, 2vw, 1.8rem);
}

.civil-flow-copy p {
  color: var(--muted);
}

.civil-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.civil-timeline li {
  position: relative;
  min-height: 174px;
  padding: 0 18px 0 22px;
  border-left: 1px solid rgba(18, 21, 56, 0.14);
}

.civil-timeline li::before {
  content: "";
  position: absolute;
  top: 2px;
  left: -5px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 7px rgba(201, 168, 104, 0.13);
}

.civil-timeline span {
  margin-bottom: 26px;
}

.civil-timeline strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1rem;
}

.civil-timeline p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.civil-questions {
  margin-top: clamp(24px, 4vw, 42px);
  border-top: 1px solid rgba(255, 250, 240, 0.18);
}

.civil-questions details {
  border-bottom: 1px solid rgba(255, 250, 240, 0.18);
  padding: 22px 0;
}

.civil-questions summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: var(--white);
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
  font-weight: 800;
  line-height: 1.28;
  cursor: pointer;
  list-style: none;
}

.civil-questions summary::-webkit-details-marker {
  display: none;
}

.civil-questions summary::after {
  content: "+";
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 250, 240, 0.2);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.3rem;
  line-height: 30px;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease;
}

.civil-questions details[open] summary::after {
  content: "-";
  background: rgba(255, 250, 240, 0.1);
  transform: rotate(180deg);
}

.civil-questions p {
  width: min(760px, 100%);
  margin: 14px 0 0;
  color: rgba(255, 250, 240, 0.74);
  line-height: 1.72;
}

.civil-questions summary strong {
  font: inherit;
  font-weight: 900;
}

.civil-legal-details p {
  width: min(900px, 100%);
  color: rgba(255, 250, 240, 0.72);
  font-size: 0.95rem;
}

.civil-legal-links {
  width: min(900px, 100%);
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.civil-legal-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(255, 250, 240, 0.06);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.25;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.civil-legal-links a:hover,
.civil-legal-links a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 250, 240, 0.38);
  background: rgba(255, 250, 240, 0.11);
}

.process-section {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(18, 21, 56, 0.98), rgba(8, 10, 24, 0.94)),
    url("./assets/images/ceremony-night.jpg") center / cover;
}

.process-layout {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(36px, 6vw, 76px);
  align-items: start;
}

.process-copy {
  position: sticky;
  top: 110px;
}

.process-copy p {
  color: rgba(255, 250, 240, 0.76);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.process-steps article {
  min-height: 210px;
  background: rgba(255, 250, 240, 0.94);
}

.media-band {
  padding: clamp(58px, 7vw, 98px) clamp(18px, 4vw, 54px);
  background: var(--paper);
}

.video-feature {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.video-feature video {
  width: 100%;
  aspect-ratio: 9 / 14;
  max-height: 680px;
  object-fit: cover;
  border-radius: 8px;
  background: var(--navy);
  box-shadow: var(--shadow);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.video-feature video:hover {
  transform: translateY(-5px);
  box-shadow: 0 32px 90px rgba(18, 21, 56, 0.22);
}

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

.section-heading.on-dark p {
  color: rgba(255, 250, 240, 0.74);
}

.gallery-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: minmax(240px, 330px);
  gap: 14px;
}

.gallery-item {
  position: relative;
  background: #222;
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.gallery-item.large {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.gallery-item:hover img {
  transform: scale(1.045);
}

.feedback-section {
  background: var(--ivory);
}

.feedback-grid {
  width: min(980px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.feedback-video {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 18px 52px rgba(18, 21, 56, 0.1);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.feedback-video:hover {
  transform: translateY(-7px);
  border-color: rgba(201, 168, 104, 0.56);
  box-shadow: 0 26px 70px rgba(18, 21, 56, 0.16);
}

.feedback-video video {
  width: 100%;
  aspect-ratio: 9 / 13;
  object-fit: cover;
  background: var(--navy);
}

.feedback-video div {
  padding: 20px;
}

.feedback-video p {
  margin-bottom: 6px;
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.about-layout {
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
}

.about-section .copy-column p {
  color: rgba(255, 250, 240, 0.76);
}

blockquote {
  margin: 32px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid rgba(255, 250, 240, 0.22);
  font-family: Georgia, serif;
  font-size: clamp(1.22rem, 2vw, 1.7rem);
  line-height: 1.55;
  color: var(--white);
}

.payment-section {
  background:
    linear-gradient(180deg, rgba(246, 241, 230, 1), rgba(255, 250, 240, 0.96)),
    var(--ivory);
}

.payment-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(360px, 1.16fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.payment-card {
  min-height: 250px;
  border: 1px solid rgba(18, 21, 56, 0.14);
  border-top: 4px solid rgba(201, 168, 104, 0.88);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 250, 240, 0.78);
  box-shadow: 0 20px 54px rgba(18, 21, 56, 0.08);
}

.payment-card span {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--gold);
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

.payment-card h3 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: clamp(1.14rem, 1.7vw, 1.42rem);
  line-height: 1.15;
}

.payment-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.payment-card.highlight {
  background: var(--navy);
  color: var(--white);
}

.payment-card.highlight h3,
.payment-card.highlight p {
  color: var(--white);
}

.contact-section {
  padding: clamp(76px, 9vw, 132px) clamp(18px, 4vw, 54px);
  background:
    linear-gradient(180deg, rgba(246, 241, 230, 0.94), rgba(246, 241, 230, 0.98)),
    url("./assets/images/gallery-1.jpg") center / cover;
}

.contact-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

.contact-notes {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-notes span {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 700;
}

.contact-notes span::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(201, 168, 104, 0.16);
}

.lead-form {
  position: relative;
  min-height: 560px;
  border: 1px solid rgba(18, 21, 56, 0.14);
  border-radius: 8px;
  padding: clamp(22px, 3vw, 34px);
  background: rgba(255, 250, 240, 0.96);
  box-shadow: var(--shadow);
}

.form-step {
  display: none;
}

.form-step.is-active {
  display: block;
}

.lead-form h3 {
  margin-bottom: 22px;
  color: var(--navy);
  font-size: clamp(1.22rem, 1.8vw, 1.68rem);
}

label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.choice-field {
  margin: 4px 0 16px;
  padding: 0;
  border: 0;
}

.choice-field legend {
  margin-bottom: 9px;
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.choice-option {
  margin: 0;
  display: block;
}

.choice-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-option span {
  display: grid;
  min-height: 52px;
  place-items: center;
  border: 1px solid rgba(18, 21, 56, 0.18);
  border-radius: 6px;
  padding: 12px;
  background: #fffdf8;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0;
  text-align: center;
  text-transform: none;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.choice-option input:checked + span {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.choice-option input:focus-visible + span {
  box-shadow: 0 0 0 3px rgba(201, 168, 104, 0.18);
}

.choice-help {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

input {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(18, 21, 56, 0.18);
  border-radius: 6px;
  padding: 12px 14px;
  background: #fffdf8;
  color: var(--ink);
  outline: none;
}

input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 104, 0.18);
}

.location-field {
  position: relative;
}

.location-help {
  display: block;
  margin-top: -2px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

.location-field.is-maps-ready .location-help {
  color: var(--sage);
}

.location-field.is-place-selected input {
  border-color: rgba(71, 110, 88, 0.55);
  background:
    linear-gradient(90deg, rgba(71, 110, 88, 0.08), rgba(255, 253, 248, 0)),
    #fffdf8;
}

.pac-container {
  z-index: 9999;
  border: 1px solid rgba(18, 21, 56, 0.14);
  border-radius: 8px;
  margin-top: 6px;
  box-shadow: 0 18px 48px rgba(18, 21, 56, 0.18);
  font-family: Inter, Arial, sans-serif;
}

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

.form-button {
  width: 100%;
  margin-top: 6px;
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.form-button:hover {
  background: #1a1e49;
}

.step-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--sage);
  font-size: 0.88rem;
  font-weight: 800;
}

.ghost-button,
.calendar-nav {
  border: 1px solid rgba(18, 21, 56, 0.18);
  border-radius: 999px;
  background: transparent;
  color: var(--navy);
  font-weight: 900;
}

.ghost-button {
  min-height: 38px;
  padding: 7px 13px;
}

.calendar {
  margin: 18px 0 20px;
  border: 1px solid rgba(18, 21, 56, 0.14);
  border-radius: 8px;
  padding: 14px;
  background: #fffdf8;
}

.calendar-head {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.calendar-head strong {
  text-align: center;
  color: var(--navy);
  font-size: 1rem;
  text-transform: capitalize;
}

.calendar-nav {
  width: 40px;
  height: 40px;
}

.calendar-weekdays,
.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.calendar-weekdays span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-align: center;
}

.calendar-days {
  margin-top: 8px;
}

.calendar-day {
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid transparent;
  border-radius: 6px;
  background: rgba(18, 21, 56, 0.04);
  color: var(--navy);
  font-weight: 800;
}

.calendar-day:hover {
  border-color: rgba(201, 168, 104, 0.8);
  transform: translateY(-1px);
}

.calendar-day.is-muted {
  color: rgba(18, 21, 56, 0.28);
}

.calendar-day.is-disabled {
  color: rgba(18, 21, 56, 0.2);
  background: transparent;
  cursor: not-allowed;
}

.calendar-day.is-selected {
  background: var(--navy);
  color: var(--white);
}

.footer {
  display: grid;
  place-items: center;
  gap: 14px;
  padding: 46px 18px;
  background: var(--navy-deep);
  color: rgba(255, 250, 240, 0.72);
  text-align: center;
}

.footer img {
  width: min(320px, 76vw);
}

.footer p {
  margin: 0;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
}

.footer-social a {
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 999px;
  padding: 9px 14px;
  color: rgba(255, 250, 240, 0.78);
  font-size: 0.82rem;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease;
}

.footer-social a:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 168, 104, 0.72);
  color: var(--white);
}

.reveal-target {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(8px);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 700ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

@keyframes heroDrift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.07) translate3d(-1.2%, 1%, 0);
  }
}

@media (max-width: 1120px) {
  .nav-links {
    display: none;
  }
}

@media (max-width: 980px) {

  .hero {
    min-height: 86vh;
  }

  .intro-line,
  .section-grid,
  .statement-wrap,
  .civil-brief,
  .civil-flow,
  .process-layout,
  .video-feature,
  .about-layout,
  .payment-shell,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .intro-line {
    text-align: left;
  }

  .service-grid,
  .civil-timeline,
  .process-steps,
  .payment-grid,
  .feedback-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-copy {
    position: static;
  }

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

  .gallery-item.large,
  .gallery-item.wide {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand img {
    width: 150px;
  }

  .hero-inner {
    width: min(100% - 30px, 1180px);
    padding-bottom: 58px;
  }

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

  h1 {
    font-size: clamp(2.05rem, 9.4vw, 2.55rem);
  }

  .social-proof-links {
    display: flex;
    width: 100%;
    gap: 8px;
  }

  .social-proof-label {
    flex: 1 0 100%;
  }

  .social-link {
    flex: 1 1 0;
    min-width: 0;
    padding-right: 10px;
    font-size: 0.8rem;
  }

  .intro-line,
  .service-grid,
  .civil-timeline,
  .process-steps,
  .payment-grid,
  .feedback-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .intro-line {
    gap: 10px;
  }

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

  .service-card,
  .civil-timeline li,
  .process-steps article {
    min-height: auto;
  }

  .civil-compare-list article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .lead-form {
    min-height: 0;
  }

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

  .calendar-weekdays,
  .calendar-days {
    gap: 4px;
  }

  .calendar-day {
    font-size: 0.82rem;
  }
}

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

  .reveal-target {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
