:root {
  --navy: #0b1f3a;
  --blue: #1557d5;
  --blue-dark: #1048b6;
  --cyan: #18bdeb;
  --pale-cyan: #e8f8fd;
  --off-white: #f7fafc;
  --white: #ffffff;
  --text: #16253a;
  --muted: #64748b;
  --line: #dfe8f2;
  --shadow: 0 22px 60px rgba(11, 31, 58, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: var(--font-geist-sans), Arial, Helvetica, sans-serif;
}

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

svg {
  display: block;
  width: 1.35em;
  height: 1.35em;
}

.section-shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 82px;
  padding: 12px max(24px, calc((100vw - 1180px) / 2));
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  width: max-content;
  flex-direction: column;
  letter-spacing: -0.03em;
}

.brand strong {
  color: var(--navy);
  font-size: 26px;
  line-height: 1;
  letter-spacing: 0.04em;
}

.brand span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 15px;
  font-weight: 650;
}

.site-header nav a {
  position: relative;
}

.site-header nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--cyan);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.site-header nav a:hover::after,
.site-header nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-call {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 45px;
  padding: 0 16px;
  color: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 750;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.header-call:hover,
.header-call:focus-visible {
  color: var(--white);
  background: var(--blue);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  gap: 72px;
  min-height: 650px;
  padding-block: 70px 58px;
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(24, 189, 235, 0.18);
  border-radius: 36px;
  content: "";
  transform: rotate(45deg);
}

.hero::before {
  top: 42px;
  left: -210px;
  width: 280px;
  height: 280px;
  background: rgba(232, 248, 253, 0.62);
}

.hero::after {
  right: -180px;
  bottom: 16px;
  width: 240px;
  height: 240px;
  background: rgba(232, 248, 253, 0.38);
}

.eyebrow {
  margin: 0 0 18px;
  color: #079cc8;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.5;
}

.hero h1 {
  max-width: 740px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(48px, 5.5vw, 76px);
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero h1 span {
  display: block;
}

.hero-lead {
  max-width: 650px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 56px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 780;
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 12px 26px rgba(21, 87, 213, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--blue-dark);
}

.button-secondary {
  color: var(--blue);
  border-color: var(--blue);
  background: var(--white);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--pale-cyan);
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.hero-note svg {
  color: var(--cyan);
}

.portrait-stage {
  position: relative;
  display: flex;
  justify-content: center;
}

.portrait-stage::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: 112%;
  height: 85%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24, 189, 235, 0.13), transparent 68%);
  content: "";
  transform: translate(-50%, -50%);
}

.portrait-card {
  position: relative;
  width: min(100%, 410px);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  padding: 16px 16px 0;
  background: var(--white);
  border: 1px solid #e7eef6;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.portrait-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.corner {
  position: absolute;
  z-index: 2;
  width: 30px;
  height: 30px;
  border-color: var(--cyan);
  border-style: solid;
}

.corner-tl {
  top: 28px;
  left: 28px;
  border-width: 2px 0 0 2px;
}

.corner-tr {
  top: 28px;
  right: 28px;
  border-width: 2px 2px 0 0;
}

.corner-bl {
  bottom: 28px;
  left: 28px;
  border-width: 0 0 2px 2px;
}

.corner-br {
  right: 28px;
  bottom: 28px;
  border-width: 0 2px 2px 0;
}

.guide {
  position: absolute;
  z-index: 2;
  opacity: 0.8;
}

.guide-v {
  top: 26px;
  bottom: 26px;
  left: 50%;
  border-left: 1px dashed var(--cyan);
}

.guide-h {
  right: 26px;
  left: 26px;
  border-top: 1px dashed var(--cyan);
}

.guide-eyes {
  top: 40%;
}

.guide-chin {
  top: 70%;
}

.compliance-badge {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(11, 31, 58, 0.14);
  font-size: 12px;
  font-weight: 780;
}

.trust-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 120px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 110px;
  padding: 22px 32px;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--line);
}

.trust-icon {
  display: grid;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--blue);
  background: var(--pale-cyan);
  border-radius: 14px;
  font-size: 15px;
  font-weight: 850;
}

.trust-item div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.trust-item strong {
  color: var(--navy);
  font-size: 16px;
}

.trust-item div span {
  color: var(--muted);
  font-size: 13px;
}

.services,
.steps,
.faq {
  padding-bottom: 120px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 44px;
}

.section-heading.compact {
  grid-template-columns: 1fr;
}

.section-heading h2,
.standard-copy h2,
.location-card h2 {
  max-width: 720px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 820;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.section-heading > p,
.standard-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

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

.service-card {
  position: relative;
  min-height: 310px;
  padding: 34px;
  overflow: hidden;
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: 18px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(21, 87, 213, 0.24);
  box-shadow: 0 18px 40px rgba(11, 31, 58, 0.08);
}

.service-number {
  display: inline-block;
  margin-bottom: 46px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.service-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 24px;
  letter-spacing: -0.025em;
}

.service-card p {
  margin: 16px 0 30px;
  color: var(--muted);
  line-height: 1.65;
}

.service-card a,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 750;
}

.service-card a svg,
.text-link svg {
  width: 18px;
  transition: transform 180ms ease;
}

.service-card a:hover svg,
.text-link:hover svg {
  transform: translateX(4px);
}

.standards-section {
  margin-bottom: 120px;
  background: var(--navy);
}

.standards {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 100px;
  min-height: 650px;
  padding-block: 80px;
}

.standard-visual {
  position: relative;
  display: grid;
  min-height: 500px;
  place-items: center;
}

.standard-visual::before {
  position: absolute;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(24, 189, 235, 0.2);
  border-radius: 50%;
  content: "";
}

.photo-sheet {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: 340px;
  padding: 18px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
  transform: rotate(-4deg);
}

.mini-portrait {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: 3px;
}

.mini-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
}

.size-chip {
  position: absolute;
  right: 20px;
  bottom: 58px;
  z-index: 3;
  padding: 12px 16px;
  color: var(--navy);
  background: var(--pale-cyan);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  font-size: 13px;
  font-weight: 800;
}

.standard-copy h2 {
  color: var(--white);
}

.standard-copy > p {
  max-width: 590px;
  margin-top: 24px;
  color: #b6c4d6;
}

.standard-copy ul {
  display: grid;
  gap: 16px;
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.standard-copy li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #e8eef6;
  font-weight: 600;
}

.standard-copy li svg {
  flex: 0 0 auto;
  color: var(--cyan);
}

.standard-copy .text-link {
  color: var(--cyan);
}

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

.step-grid article {
  padding: 30px 0;
  border-top: 2px solid var(--line);
}

.step-grid article > span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 32px;
  place-items: center;
  color: var(--blue);
  background: var(--pale-cyan);
  border-radius: 50%;
  font-weight: 850;
}

.step-grid h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 21px;
}

.step-grid p {
  max-width: 300px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.location-section {
  padding-block: 84px;
  background:
    linear-gradient(rgba(21, 87, 213, 0.94), rgba(21, 87, 213, 0.94)),
    radial-gradient(circle at 10% 40%, var(--cyan), transparent 45%);
}

.location-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 50px;
}

.location-card .eyebrow {
  color: #aeeeff;
}

.location-card h2 {
  max-width: 720px;
  color: var(--white);
}

.location-card p:not(.eyebrow) {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}

.location-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.button-white {
  color: var(--blue);
  background: var(--white);
  box-shadow: 0 15px 35px rgba(11, 31, 58, 0.2);
}

.location-phone {
  display: flex;
  flex-direction: column;
  color: var(--white);
}

.location-phone span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.location-phone strong {
  margin-top: 3px;
  font-size: 22px;
}

.faq {
  padding-top: 110px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq details {
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.faq summary {
  position: relative;
  padding: 22px 58px 22px 24px;
  color: var(--navy);
  cursor: pointer;
  font-size: 17px;
  font-weight: 750;
  list-style: none;
}

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

.faq summary::after {
  position: absolute;
  top: 50%;
  right: 24px;
  color: var(--blue);
  content: "+";
  font-size: 26px;
  font-weight: 400;
  transform: translateY(-50%);
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  max-width: 850px;
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
  line-height: 1.65;
}

.wedding-section {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: stretch;
  gap: 20px;
  margin-bottom: 110px;
  padding: 22px;
  overflow: hidden;
  background: #f5f0e9;
  border: 1px solid #eadfd2;
  border-radius: 26px;
  box-shadow: 0 24px 60px rgba(64, 43, 25, 0.1);
}

.wedding-copy {
  padding: 52px 46px;
}

.wedding-copy .eyebrow {
  color: #9a6c43;
}

.wedding-copy h2 {
  max-width: 680px;
  margin: 0;
  color: #2c2118;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.wedding-copy > p:not(.eyebrow) {
  max-width: 660px;
  margin: 24px 0 0;
  color: #705f51;
  font-size: 17px;
  line-height: 1.7;
}

.wedding-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}

.wedding-actions .button-primary {
  background: #2c2118;
  box-shadow: 0 12px 26px rgba(44, 33, 24, 0.2);
}

.wedding-actions .button-primary:hover,
.wedding-actions .button-primary:focus-visible {
  background: #4b3728;
}

.wedding-actions .text-link {
  color: #765238;
}

.wedding-mark {
  position: relative;
  display: flex;
  min-height: 410px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fffaf4;
  background:
    radial-gradient(circle at 70% 22%, rgba(255, 255, 255, 0.16), transparent 24%),
    linear-gradient(145deg, #7a5437, #2c2118 72%);
  border-radius: 18px;
  text-align: center;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.wedding-mark:hover,
.wedding-mark:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(44, 33, 24, 0.2);
}

.wedding-mark::before,
.wedding-mark::after {
  position: absolute;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(255, 250, 244, 0.18);
  border-radius: 50%;
  content: "";
}

.wedding-mark::before {
  top: -88px;
  right: -68px;
}

.wedding-mark::after {
  bottom: -104px;
  left: -54px;
}

.wedding-mark-kicker {
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.3em;
}

.wedding-mark strong {
  margin-top: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 400;
  letter-spacing: 0.06em;
}

.wedding-mark > span:last-of-type {
  margin-top: 12px;
  color: rgba(255, 250, 244, 0.72);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.wedding-mark i {
  margin-top: 36px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 54px;
  font-weight: 400;
  line-height: 0.5;
}

footer {
  background: var(--navy);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 40px;
  min-height: 190px;
  color: #b6c4d6;
}

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

.brand-light span {
  color: #b6c4d6;
}

.footer-inner p {
  margin: 0;
  line-height: 1.6;
}

.footer-inner > div {
  display: flex;
  flex-direction: column;
  justify-self: end;
  gap: 8px;
}

.footer-inner > div a {
  transition: color 160ms ease;
}

.footer-inner > div a:hover {
  color: var(--cyan);
}

.mobile-actions {
  display: none;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy {
    animation: reveal 500ms ease-out both;
  }

  .portrait-stage {
    animation: reveal 650ms 80ms ease-out both;
  }

  @keyframes reveal {
    from {
      opacity: 0;
      transform: translateY(14px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

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

  .site-header nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 46px;
    padding-top: 58px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-lead,
  .hero h1 {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-note {
    justify-content: center;
  }

  .portrait-card {
    width: min(84vw, 420px);
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-item + .trust-item {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section-heading,
  .location-card,
  .wedding-section {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .wedding-copy {
    padding: 42px 34px 24px;
  }

  .wedding-mark {
    min-height: 340px;
  }

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

  .service-card {
    min-height: auto;
  }

  .service-number {
    margin-bottom: 30px;
  }

  .standards {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .standard-copy {
    padding-bottom: 20px;
  }

  .location-actions {
    margin-top: 16px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    padding-block: 48px 108px;
  }

  .footer-inner > div {
    justify-self: start;
  }

  .mobile-actions {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 50;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 14px 40px rgba(11, 31, 58, 0.2);
  }

  .mobile-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 56px;
    color: var(--blue);
    font-size: 14px;
    font-weight: 800;
  }

  .mobile-actions a + a {
    color: var(--white);
    background: var(--blue);
  }
}

@media (max-width: 560px) {
  .section-shell {
    width: min(100% - 32px, 1180px);
  }

  .site-header {
    min-height: 72px;
    padding-inline: 16px;
  }

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

  .header-call {
    width: 43px;
    min-height: 43px;
    padding: 0;
    justify-content: center;
  }

  .header-call span {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-block: 42px 40px;
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: 11px;
  }

  .hero h1 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .hero-lead {
    margin-top: 24px;
    font-size: 18px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .portrait-card {
    width: 100%;
  }

  .trust-strip {
    margin-bottom: 86px;
  }

  .trust-item {
    min-height: 94px;
    padding: 18px 20px;
  }

  .section-heading h2,
  .standard-copy h2,
  .location-card h2 {
    font-size: 37px;
  }

  .services,
  .steps,
  .faq {
    padding-bottom: 86px;
  }

  .standard-visual {
    min-height: 420px;
  }

  .photo-sheet {
    width: min(82vw, 330px);
  }

  .standards {
    min-height: auto;
    padding-block: 60px;
  }

  .location-section {
    padding-block: 64px;
  }

  .faq {
    padding-top: 84px;
  }

  .wedding-section {
    width: min(100% - 24px, 1180px);
    margin-bottom: 72px;
    padding: 12px;
  }

  .wedding-copy {
    padding: 34px 18px 24px;
  }

  .wedding-copy h2 {
    font-size: 40px;
  }

  .wedding-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 20px;
  }

  .wedding-actions .text-link {
    justify-content: center;
  }

  .wedding-mark {
    min-height: 300px;
  }
}
