:root {
  --blue: #0958c8;
  --blue-2: #0c68df;
  --blue-dark: #083f9e;
  --ink: #17213a;
  --muted: #66718a;
  --line: #d9e8fb;
  --surface: #ffffff;
  --soft-blue: #eff7ff;
  --pink: #f7a9ce;
  --yellow: #ffd66b;
  --cyan: #78d3f0;
  --shadow: 0 16px 40px rgba(7, 59, 142, 0.12);
  --shadow-soft: 0 8px 24px rgba(10, 59, 135, 0.08);
  --radius: 8px;
  --container: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.section-pad {
  padding: 56px 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(217, 232, 251, 0.8);
  backdrop-filter: blur(18px);
}

.header-bar {
  min-height: 86px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 22px;
  align-items: center;
}

.language-menu {
  position: relative;
  width: max-content;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 76px;
  min-height: 34px;
  color: #18213a;
  font-size: 13px;
  font-weight: 700;
  background: #fff;
  border: 1px solid #e4edf8;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(35, 76, 122, 0.09);
  cursor: pointer;
}

.language-switcher::before,
.language-option::before {
  content: "";
  width: 18px;
  height: 12px;
  border-radius: 2px;
  flex: 0 0 auto;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.language-switcher[data-lang="en"]::before,
.language-option[data-lang="en"]::before {
  background-color: #012169;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 40'%3E%3Cpath fill='%23012169' d='M0 0h60v40H0z'/%3E%3Cpath stroke='%23fff' stroke-width='8' d='M0 0l60 40M60 0 0 40'/%3E%3Cpath stroke='%23c8102e' stroke-width='4' d='M0 0l60 40M60 0 0 40'/%3E%3Cpath stroke='%23fff' stroke-width='14' d='M30 0v40M0 20h60'/%3E%3Cpath stroke='%23c8102e' stroke-width='8' d='M30 0v40M0 20h60'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
}

.language-switcher[data-lang="es"]::before,
.language-option[data-lang="es"]::before {
  background: linear-gradient(#c60b1e 0 25%, #ffc400 25% 75%, #c60b1e 75%);
}

.language-switcher[data-lang="de"]::before,
.language-option[data-lang="de"]::before {
  background: linear-gradient(#000 0 33.33%, #dd0000 33.33% 66.66%, #ffce00 66.66%);
}

.language-switcher svg {
  width: 14px;
  height: 14px;
}

.language-options {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 90;
  display: none;
  min-width: 96px;
  padding: 6px;
  background: #fff;
  border: 1px solid #dce9fb;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.language-menu.is-open .language-options {
  display: grid;
}

.language-option {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 10px;
  color: #1d2a44;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 900;
}

.language-option:hover,
.language-option.active {
  color: var(--blue);
  background: #f1f7ff;
}

.brand {
  justify-self: start;
  width: 228px;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 42px;
}

.primary-nav a {
  position: relative;
  color: #24304b;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--blue);
  transition: transform 180ms ease;
}

.primary-nav a:hover,
.primary-nav a.active {
  color: var(--blue);
}

.primary-nav a:hover::after,
.primary-nav a.active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 28px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(7, 71, 167, 0.16);
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, var(--blue-2), var(--blue-dark));
}

.btn-secondary {
  color: var(--blue);
  background: #fff;
  border-color: #dbe9fb;
}

.btn-inverted {
  color: var(--blue);
  background: #fff;
}

.header-cta {
  min-width: 128px;
  min-height: 44px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 34px;
  padding-bottom: 60px;
  background:
    radial-gradient(circle at 2% 100%, rgba(9, 88, 200, 0.12), transparent 32%),
    linear-gradient(150deg, #fff 0%, #fff 62%, #f3f9ff 100%);
}

.hero::after {
  content: "";
  position: absolute;
  left: -10%;
  right: 45%;
  bottom: -1px;
  height: 170px;
  background: #f2f8ff;
  clip-path: polygon(0 40%, 100% 78%, 100% 100%, 0 100%);
  z-index: 0;
}

.confetti {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.confetti span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 13px;
  height: 6px;
  border-radius: 4px;
  background: var(--c);
  transform: rotate(var(--r));
  opacity: 0.75;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.13fr);
  gap: 50px;
  align-items: center;
}

.hero-grid > *,
.page-hero-grid > *,
.about-story-grid > *,
.values-grid > *,
.founder-stat-grid > *,
.wedding-intro-grid > *,
.wedding-card-grid > *,
.wedding-gallery-grid > *,
.service-page-grid > *,
.blog-card-grid > *,
.article-layout > *,
.faq-grid > *,
.contact-layout > *,
.contact-form > *,
.trust-grid > *,
.footer-grid > * {
  min-width: 0;
}

.hero-copy {
  padding-top: 18px;
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 26px;
  min-height: 37px;
  padding: 0 18px;
  color: var(--blue);
  background: #f6fbff;
  border: 1px solid #ddecff;
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(9, 88, 200, 0.08);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow svg {
  width: 16px;
  height: 16px;
}

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

.hero h1 {
  margin-bottom: 22px;
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 3.8vw, 52px);
  line-height: 1.02;
  font-weight: 700;
}

.hero h1 em {
  display: block;
  font-style: italic;
  font-weight: 500;
}

.hero-text {
  max-width: 500px;
  margin-bottom: 32px;
  color: #46516b;
  font-size: 18px;
  line-height: 1.35;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 560px;
  margin-bottom: 28px;
}

.hero-points span {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: center;
  color: #293756;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.15;
}

.hero-points svg {
  width: 34px;
  height: 34px;
  color: var(--blue);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 22px;
}

.micro-copy {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  color: #93a1b6;
  font-size: 12px;
}

.micro-copy span {
  position: relative;
  padding-left: 18px;
}

.micro-copy span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 9px;
  height: 5px;
  border-left: 1.5px solid var(--blue);
  border-bottom: 1.5px solid var(--blue);
  transform: rotate(-45deg);
}

.hero-media {
  position: relative;
  min-height: 430px;
  min-width: 0;
}

.hero-media img {
  width: 100%;
  height: min(54vw, 470px);
  object-fit: cover;
  object-position: 47% 50%;
  border-radius: 0 44px 0 44px;
  box-shadow: var(--shadow);
}

.stat-card {
  position: absolute;
  left: -34px;
  bottom: -18px;
  display: grid;
  grid-template-columns: 52px 1fr;
  column-gap: 12px;
  align-items: center;
  width: 210px;
  min-height: 92px;
  padding: 16px;
  background: #fff;
  border: 1px solid #e4effc;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stat-icon {
  grid-row: span 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 58px;
  background: #fff7ed;
  border-radius: var(--radius);
}

.stat-card strong {
  color: var(--blue);
  font-size: 26px;
  line-height: 1;
}

.stat-card small {
  color: #7d8798;
  font-size: 11px;
  line-height: 1.25;
}

.intro-band {
  position: relative;
  padding: 26px 0 104px;
  color: #fff;
  background:
    radial-gradient(circle at 12px 12px, rgba(255, 255, 255, 0.16) 1px, transparent 1.5px) 0 0 / 42px 42px,
    linear-gradient(180deg, #0860d2, #074db8);
}

.intro-band::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 70px;
  background: #fff;
  clip-path: polygon(0 52%, 50% 100%, 100% 52%, 100% 100%, 0 100%);
}

.intro-band p {
  max-width: 730px;
  margin: 0 auto;
  text-align: center;
  font-size: 18px;
  line-height: 1.3;
}

.feature-section {
  margin-top: -90px;
  padding-bottom: 48px;
  position: relative;
  z-index: 2;
}

.feature-shell {
  background: #fff;
  border: 1px solid #e5eefb;
  border-radius: var(--radius);
  box-shadow: 0 22px 55px rgba(17, 68, 140, 0.08);
  padding: 22px 28px 26px;
}

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

.feature-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid #e6eefb;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.feature-card img {
  width: 100%;
  aspect-ratio: 1.9 / 1;
  object-fit: cover;
}

.feature-card-body {
  position: relative;
  min-height: 250px;
  padding: 50px 28px 28px;
  text-align: center;
}

.circle-icon {
  position: absolute;
  left: 50%;
  top: -34px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  color: var(--blue);
  background: #fff;
  border: 1px solid #dcecff;
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(8, 82, 185, 0.12);
}

.circle-icon svg {
  width: 32px;
  height: 32px;
}

.feature-card h3 {
  margin-bottom: 2px;
  color: var(--blue);
  font-size: 22px;
  line-height: 1.15;
}

.card-kicker {
  margin-bottom: 24px;
  color: #303a51;
  font-size: 15px;
  font-weight: 700;
}

.feature-card-body p:last-child {
  color: #69748b;
  font-size: 14px;
  line-height: 1.55;
}

.feature-cta {
  display: flex;
  width: 184px;
  margin: 18px auto 0;
}

.section-overline {
  margin-bottom: 6px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.section-overline::before,
.section-overline::after {
  content: "++";
  color: var(--blue);
  margin: 0 12px;
  opacity: 0.75;
}

.testimonials {
  padding-top: 10px;
  padding-bottom: 28px;
}

.testimonials h2,
.services h2,
.process h2,
.instagram h2 {
  margin-bottom: 12px;
  color: var(--blue);
  text-align: center;
  font-size: 28px;
  line-height: 1.15;
  text-transform: uppercase;
}

.testimonials h2 {
  text-transform: none;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  max-width: 960px;
  margin: 22px auto 0;
}

.testimonial-grid figure {
  position: relative;
  min-height: 240px;
  margin: 0;
  padding: 36px 24px 22px;
  background: #fff;
  border: 1px solid #e4edf9;
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(15, 69, 142, 0.06);
}

.testimonial-grid figure::before {
  content: "\201C";
  position: absolute;
  top: 12px;
  left: 18px;
  color: #dbe8fb;
  font-family: Georgia, serif;
  font-size: 58px;
  line-height: 1;
}

.testimonial-grid blockquote {
  margin: 0 0 18px;
  color: #6b7489;
  font-size: 12px;
  line-height: 1.55;
  font-style: italic;
}

.testimonial-grid figcaption {
  margin-top: auto;
}

.stars {
  display: block;
  color: #ffc000;
  font-size: 12px;
  margin-bottom: 5px;
}

.testimonial-grid strong {
  color: var(--blue);
  font-size: 12px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.slider-dots span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #c6d7ee;
}

.slider-dots span:first-child {
  background: var(--blue);
}

.services {
  padding-top: 20px;
  padding-bottom: 44px;
}

.section-lead {
  margin: 0 auto 24px;
  color: #8590a3;
  text-align: center;
  font-size: 14px;
}

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

.service-grid a {
  position: relative;
  min-height: 58px;
  display: grid;
  grid-template-columns: 32px 1fr 20px;
  gap: 10px;
  align-items: center;
  padding: 10px 14px;
  color: var(--blue);
  background: #fff;
  border: 1px solid #d9e8fb;
  border-radius: var(--radius);
  box-shadow: 0 7px 18px rgba(10, 73, 162, 0.04);
  font-size: 12px;
  font-weight: 800;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.service-grid a:hover {
  transform: translateY(-1px);
  border-color: #9fc5fb;
  box-shadow: 0 12px 24px rgba(9, 88, 200, 0.08);
}

.service-grid a:hover,
.service-grid a:focus-visible,
.service-grid a.is-open {
  z-index: 12;
}

.service-grid a:focus-visible {
  outline: 3px solid rgba(9, 88, 200, 0.2);
  outline-offset: 2px;
}

.service-name {
  min-width: 0;
}

.service-description {
  position: absolute;
  left: 12px;
  right: 12px;
  top: calc(100% - 4px);
  z-index: 10;
  display: block;
  padding: 12px 14px;
  color: #536079;
  background: #fff;
  border: 1px solid #cfe1fb;
  border-radius: var(--radius);
  box-shadow: 0 18px 34px rgba(7, 59, 142, 0.14);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
  text-transform: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.service-description::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 22px;
  width: 10px;
  height: 10px;
  background: #fff;
  border-left: 1px solid #cfe1fb;
  border-top: 1px solid #cfe1fb;
  transform: rotate(45deg);
}

.service-grid a:hover .service-description,
.service-grid a:focus-visible .service-description,
.service-grid a.is-open .service-description {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: var(--blue);
  border: 1px solid #bad6fb;
  border-radius: var(--radius);
  font-size: 18px;
  line-height: 1;
}

.service-grid svg {
  width: 17px;
  height: 17px;
  justify-self: end;
}

.process {
  padding-top: 18px;
  padding-bottom: 48px;
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: 66px;
  align-items: center;
}

.process .section-overline,
.process h2 {
  text-align: left;
}

.process .section-overline::before {
  display: none;
}

.process-list {
  counter-reset: process;
  display: grid;
  gap: 18px;
  margin: 20px 0 28px;
  padding: 0;
  list-style: none;
}

.process-list li {
  counter-increment: process;
  position: relative;
  min-height: 44px;
  padding-left: 54px;
}

.process-list li::before {
  content: counter(process);
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: #fff;
  background: var(--blue);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.process-list strong {
  display: block;
  color: var(--blue);
  font-size: 14px;
}

.process-list span {
  display: block;
  color: #727c91;
  font-size: 13px;
}

.process-media {
  position: relative;
  padding-right: 38px;
}

.process-media::after {
  content: "";
  position: absolute;
  right: -4px;
  bottom: -26px;
  width: 110px;
  height: 150px;
  background:
    radial-gradient(circle, var(--blue) 2px, transparent 3px) 0 0 / 16px 16px;
  opacity: 0.7;
  z-index: -1;
}

.process-media img {
  width: 100%;
  max-height: 330px;
  object-fit: cover;
  object-position: 50% 48%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cta-band {
  padding: 44px 0 36px;
}

.cta-shell {
  position: relative;
  overflow: visible;
  min-height: 126px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 24px 58px;
  color: #fff;
  background:
    radial-gradient(circle at 87% 25%, rgba(255, 255, 255, 0.28), transparent 22%),
    linear-gradient(90deg, var(--blue-dark), var(--blue));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cta-decoration {
  position: absolute;
  right: -92px;
  bottom: -56px;
  z-index: 1;
  width: min(48vw, 610px);
  min-width: 420px;
  pointer-events: none;
}

.cta-shell h2 {
  margin-bottom: 5px;
  font-size: 26px;
}

.cta-shell p {
  max-width: 630px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
}

.cta-shell > div {
  position: relative;
  z-index: 2;
}

.cta-shell .btn {
  position: relative;
  z-index: 3;
  min-width: 180px;
}

.instagram {
  padding: 0 0 28px;
}

.instagram h2 {
  margin-bottom: 20px;
  text-transform: none;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
}

.instagram-grid a {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.instagram-grid img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
  transition: transform 220ms ease;
}

.instagram-grid a:hover img {
  transform: scale(1.03);
}

.trust-strip {
  padding: 0 0 26px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  min-height: 70px;
  align-items: center;
  padding: 13px 34px;
  color: var(--blue);
  background: #eff8ff;
  border: 1px solid #cfe5ff;
  border-radius: var(--radius);
}

.trust-grid span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 14px;
  font-weight: 800;
}

.trust-grid svg {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
}

.site-footer {
  padding: 0 0 24px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 4% 100%, rgba(9, 88, 200, 0.1), transparent 28%),
    linear-gradient(150deg, #fff 0%, #fff 64%, #f3f9ff 100%);
}

.page-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 58px;
  align-items: center;
}

.page-hero-copy {
  min-width: 0;
}

.page-hero h1 {
  margin-bottom: 22px;
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1;
}

.page-hero-text {
  max-width: 620px;
  color: #46516b;
  font-size: 18px;
  line-height: 1.5;
}

.page-hero-media {
  min-width: 0;
}

.page-hero-media img {
  width: 100%;
  height: min(48vw, 430px);
  object-fit: cover;
  border-radius: 0 42px 0 42px;
  box-shadow: var(--shadow);
}

.about-hero {
  padding-bottom: 68px;
}

.about-portrait-card {
  position: relative;
  min-width: 0;
  padding: 18px;
  background: #fff;
  border: 1px solid #dce9fb;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-portrait-card img {
  width: 100%;
  height: min(48vw, 500px);
  object-fit: cover;
  object-position: 82% 50%;
  border-radius: 0 34px 0 34px;
}

.about-signature {
  position: absolute;
  left: 42px;
  bottom: 42px;
  display: grid;
  gap: 2px;
  max-width: calc(100% - 84px);
  padding: 14px 18px;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #dce9fb;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.about-signature strong {
  font-size: 18px;
}

.about-signature span {
  color: #657087;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.founder-stats {
  padding-top: 34px;
  padding-bottom: 20px;
}

.founder-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.founder-stat-grid article {
  display: grid;
  gap: 4px;
  min-height: 118px;
  align-content: center;
  padding: 24px;
  text-align: center;
  background: #fff;
  border: 1px solid #dce9fb;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.founder-stat-grid strong {
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1;
}

.founder-stat-grid span {
  color: #617089;
  font-size: 13px;
  font-weight: 800;
}

.about-story {
  padding-bottom: 34px;
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: stretch;
}

.story-card,
.quote-panel,
.values-grid article,
.contact-form,
.info-card {
  max-width: 100%;
  min-width: 0;
  overflow-wrap: break-word;
  background: #fff;
  border: 1px solid #dce9fb;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.story-card {
  padding: 36px;
}

.story-card .section-overline,
.story-card h2,
.contact-intro .section-overline,
.contact-intro h2 {
  text-align: left;
}

.story-card .section-overline::before,
.contact-intro .section-overline::before {
  display: none;
}

.story-card h2,
.values-section h2,
.contact-intro h2 {
  color: var(--blue);
  font-size: 34px;
  line-height: 1.15;
}

.story-card p {
  color: #5c6880;
  font-size: 16px;
}

.quote-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  color: #fff;
  background:
    radial-gradient(circle at 86% 16%, rgba(255, 255, 255, 0.18), transparent 24%),
    linear-gradient(180deg, var(--blue-2), var(--blue-dark));
}

.quote-panel p {
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  line-height: 1.25;
}

.quote-panel strong {
  font-size: 13px;
  text-transform: uppercase;
}

.wedding-hero-media img {
  object-position: 50% 48%;
}

.wedding-intro {
  padding-bottom: 28px;
}

.wedding-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 34px;
  align-items: stretch;
}

.wedding-intro h2,
.wedding-card-section h2,
.wedding-gallery h2 {
  color: var(--blue);
  font-size: 34px;
  line-height: 1.15;
}

.wedding-intro .section-overline,
.wedding-intro h2 {
  text-align: left;
}

.wedding-intro .section-overline::before {
  display: none;
}

.wedding-intro p {
  color: #5d6880;
}

.planner-note {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 34px;
  color: #fff;
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.18), transparent 24%),
    linear-gradient(180deg, var(--blue-2), var(--blue-dark));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.planner-note strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1.15;
}

.planner-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.wedding-card-section {
  padding-top: 22px;
}

.wedding-card-section h2,
.wedding-gallery h2 {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.wedding-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.wedding-card-grid article {
  min-width: 0;
  padding: 28px;
  background: #fff;
  border: 1px solid #dce9fb;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.wedding-card-grid h3 {
  color: var(--blue);
  font-size: 20px;
}

.wedding-card-grid p {
  margin: 0;
  color: #657087;
  font-size: 14px;
}

.wedding-process-media img {
  object-position: 50% 45%;
}

.blog-hero-media img {
  object-position: 50% 46%;
}

.content-hub {
  padding-top: 42px;
  padding-bottom: 48px;
}

.content-hub h2,
.faq-list > h2,
.service-page-section h2 {
  margin-bottom: 26px;
  color: var(--blue);
  text-align: center;
  font-size: 34px;
  line-height: 1.15;
}

.service-page-section {
  padding-top: 42px;
}

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

.service-page-grid article {
  min-width: 0;
  padding: 28px;
  background: #fff;
  border: 1px solid #dce9fb;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.service-page-grid h3 {
  color: var(--blue);
  font-size: 21px;
  line-height: 1.2;
}

.service-page-grid p {
  margin: 0;
  color: #657087;
  font-size: 14px;
  line-height: 1.58;
}

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

.blog-card a {
  display: grid;
  height: 100%;
  overflow: hidden;
  color: inherit;
  background: #fff;
  border: 1px solid #dce9fb;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.blog-card a:hover,
.blog-card a:focus-visible {
  transform: translateY(-2px);
  border-color: #a8ccfb;
  box-shadow: var(--shadow);
  outline: none;
}

.blog-card img {
  width: 100%;
  aspect-ratio: 1.5 / 1;
  object-fit: cover;
}

.blog-card span {
  margin: 22px 24px 8px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-card h3 {
  margin: 0 24px 12px;
  color: var(--blue);
  font-size: 22px;
  line-height: 1.18;
}

.blog-card p {
  margin: 0 24px 20px;
  color: #657087;
  font-size: 14px;
  line-height: 1.55;
}

.blog-card strong {
  align-self: end;
  margin: 0 24px 24px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.article-date {
  margin: 18px 0 0;
  color: #7c8aa0;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.article-shell {
  padding-top: 42px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 44px;
  align-items: start;
}

.article-main {
  max-width: 820px;
}

.article-lead {
  color: #4d5971;
  font-size: 18px;
  line-height: 1.65;
}

.article-toc {
  display: grid;
  gap: 10px;
  margin: 28px 0 34px;
  padding: 22px;
  background: #f5faff;
  border: 1px solid #d8e9fd;
  border-radius: var(--radius);
}

.article-toc a {
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

.article-list {
  display: grid;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid #e0edf9;
  scroll-margin-top: 110px;
}

.article-list li > span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: #fff;
  background: var(--blue);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
}

.article-list h2 {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 25px;
  line-height: 1.18;
}

.article-list p {
  margin: 0;
  color: #5d6880;
  font-size: 16px;
  line-height: 1.65;
}

.article-note,
.article-cta,
.related-links,
.faq-grid article {
  background: #fff;
  border: 1px solid #dce9fb;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.article-note {
  margin-top: 30px;
  padding: 28px;
}

.article-note h2,
.article-cta h2,
.related-links h2 {
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 24px;
  line-height: 1.2;
}

.article-note p,
.article-cta p {
  margin: 0;
  color: #5d6880;
  line-height: 1.6;
}

.article-sidebar {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 18px;
}

.article-cta,
.related-links {
  padding: 24px;
}

.article-cta .btn {
  width: 100%;
  margin-top: 18px;
}

.related-links {
  display: grid;
  gap: 12px;
}

.related-links a {
  color: #31415f;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.related-links a:hover {
  color: var(--blue);
}

.faq-section {
  padding-top: 42px;
}

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

.faq-grid article {
  padding: 26px;
}

.faq-grid h2 {
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 21px;
  line-height: 1.22;
}

.faq-grid p {
  margin: 0;
  color: #5f6c82;
  font-size: 15px;
  line-height: 1.6;
}

.wedding-gallery {
  padding-top: 22px;
}

.wedding-gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
}

.wedding-gallery-grid img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.wedding-gallery-grid img:first-child {
  height: 400px;
  grid-row: span 2;
}

.values-section {
  padding-top: 24px;
}

.values-section h2 {
  max-width: 760px;
  margin: 0 auto 26px;
  text-align: center;
}

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

.values-grid article {
  padding: 28px;
}

.inline-icon {
  position: static;
  transform: none;
  margin-bottom: 18px;
}

.values-grid h3 {
  color: var(--blue);
  font-size: 21px;
}

.values-grid p {
  color: #657087;
  font-size: 14px;
}

.contact-hero {
  padding-bottom: 42px;
}

.contact-section {
  padding-top: 34px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1.24fr);
  gap: 34px;
  align-items: start;
}

.contact-intro p {
  color: #5f6a80;
}

.contact-cards {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.info-card {
  display: grid;
  gap: 3px;
  padding: 18px 20px;
  color: var(--blue);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.info-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(9, 88, 200, 0.08);
}

.info-card span {
  color: #5f6a80;
  font-size: 14px;
  overflow-wrap: anywhere;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 28px;
}

.form-row {
  display: grid;
  gap: 8px;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-row-full {
  grid-column: 1 / -1;
}

.form-row label {
  color: #1f2a44;
  font-size: 13px;
  font-weight: 800;
}

.form-row input,
.form-row textarea {
  min-width: 0;
  width: 100%;
  border: 1px solid #cfdef1;
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  background: #fbfdff;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-row textarea {
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: #7fb0f6;
  box-shadow: 0 0 0 3px rgba(9, 88, 200, 0.12);
}

.contact-form .btn {
  justify-self: start;
}

.form-note {
  align-self: center;
  margin: 0;
  color: #7b879b;
  font-size: 13px;
}

.success-dialog {
  width: min(430px, calc(100vw - 32px));
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
}

.success-dialog::backdrop {
  background: rgba(18, 32, 58, 0.5);
  backdrop-filter: blur(6px);
}

.success-dialog__panel {
  overflow: hidden;
  padding: 30px;
  text-align: center;
  background:
    linear-gradient(180deg, #f5fbff 0%, #fff 42%),
    #fff;
  border: 1px solid #dce9fb;
  border-radius: var(--radius);
  box-shadow: 0 28px 70px rgba(7, 59, 142, 0.24);
}

.success-dialog__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  color: #fff;
  background: linear-gradient(180deg, var(--blue-2), var(--blue-dark));
  border-radius: 50%;
  box-shadow: 0 14px 30px rgba(9, 88, 200, 0.22);
}

.success-dialog__icon::before {
  content: "";
  width: 19px;
  height: 10px;
  margin-top: -3px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(-45deg);
}

.success-dialog h2 {
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 28px;
  line-height: 1.15;
}

.success-dialog p {
  margin: 0;
  color: #5f6a80;
}

.success-dialog .btn {
  width: 100%;
  margin-top: 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  padding: 6px 0 18px;
}

.footer-brand {
  width: 190px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: var(--blue);
  border: 1px solid #cddff6;
  border-radius: 999px;
}

.social-links svg {
  width: 16px;
  height: 16px;
}

.footer-nav {
  display: flex;
  justify-content: flex-end;
  gap: 28px;
}

.footer-nav a {
  color: #657084;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-nav a:hover {
  color: var(--blue);
}

.copyright {
  margin: 0;
  color: #9aa4b6;
  text-align: center;
  font-size: 12px;
}

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

  .header-cta {
    display: none;
  }

  .primary-nav {
    gap: 28px;
  }

  .hero-grid {
    gap: 34px;
  }

  .feature-grid {
    gap: 22px;
  }

  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .header-bar {
    position: relative;
    min-height: 74px;
    grid-template-columns: auto 1fr auto;
    gap: 14px;
  }

  .brand {
    width: 188px;
    justify-self: center;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
    position: fixed;
    right: 14px;
    top: 16px;
    z-index: 80;
  }

  .primary-nav {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  body.nav-open .primary-nav {
    display: flex;
  }

  .primary-nav a {
    padding: 16px 12px;
    border-bottom: 1px solid #edf4fe;
    font-size: 13px;
  }

  .primary-nav a:last-child {
    border-bottom: 0;
  }

  .primary-nav a::after {
    display: none;
  }

  .hero {
    padding-top: 24px;
  }

  .hero-grid,
  .process-grid,
  .page-hero-grid,
  .about-story-grid,
  .wedding-intro-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero h1 {
    font-size: clamp(38px, 9.6vw, 50px);
  }

  .hero-media {
    min-height: unset;
  }

  .hero-media img {
    height: min(92vw, 500px);
    border-radius: 0 30px 0 30px;
  }

  .stat-card {
    left: 16px;
    bottom: -26px;
  }

  .intro-band {
    padding-top: 52px;
  }

  .feature-grid,
  .testimonial-grid,
  .instagram-grid,
  .trust-grid,
  .founder-stat-grid,
  .wedding-card-grid,
  .wedding-gallery-grid,
  .service-page-grid,
  .blog-card-grid,
  .article-layout,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-shell {
    padding: 18px;
  }

  .testimonial-grid {
    max-width: 520px;
  }

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

  .process-grid {
    gap: 28px;
  }

  .process-media {
    padding-right: 0;
  }

  .cta-shell {
    grid-template-columns: 1fr;
    padding: 26px;
  }

  .cta-decoration {
    right: -180px;
    bottom: -34px;
    opacity: 0.35;
  }

  .trust-grid span,
  .footer-nav {
    justify-content: center;
  }

  .page-hero-media img {
    height: min(82vw, 420px);
  }

  .about-portrait-card img {
    height: min(98vw, 520px);
  }

  .wedding-gallery-grid img,
  .wedding-gallery-grid img:first-child {
    height: min(70vw, 360px);
    grid-row: auto;
  }

  .values-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .form-row-full {
    grid-column: auto;
  }

  .footer-brand {
    justify-self: center;
  }

  .footer-nav {
    flex-wrap: wrap;
  }

  .article-sidebar {
    position: static;
  }
}

@media (max-width: 560px) {
  .container {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
  }

  .language-switcher {
    width: 60px;
  }

  .brand {
    width: 156px;
  }

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

  .hero h1 {
    font-size: clamp(29px, 8vw, 32px);
    line-height: 1.08;
    max-width: min(342px, calc(100vw - 42px));
  }

  .page-hero h1 {
    font-size: clamp(34px, 10vw, 42px);
    max-width: min(342px, calc(100vw - 42px));
    overflow-wrap: anywhere;
  }

  .hero-text {
    font-size: 16px;
    max-width: min(342px, calc(100vw - 42px));
  }

  .page-hero-text {
    font-size: 16px;
    max-width: min(342px, calc(100vw - 42px));
    overflow-wrap: anywhere;
  }

  .content-hub h2,
  .faq-list > h2,
  .service-page-section h2 {
    font-size: 28px;
  }

  .article-list li {
    grid-template-columns: 1fr;
  }

  .article-list h2 {
    font-size: 22px;
  }

  .article-toc,
  .article-note,
  .article-cta,
  .related-links,
  .service-page-grid article,
  .faq-grid article {
    padding: 20px;
  }

  .intro-band p {
    max-width: min(305px, calc(100vw - 56px));
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    white-space: normal;
    text-align: center;
    line-height: 1.2;
  }

  .micro-copy {
    display: grid;
    gap: 10px;
  }

  .cta-decoration {
    display: none;
  }

  .story-card,
  .quote-panel,
  .values-grid article,
  .contact-form,
  .planner-note,
  .wedding-card-grid article {
    padding: 22px;
  }

  .story-card h2,
  .values-section h2,
  .contact-intro h2,
  .wedding-intro h2,
  .wedding-card-section h2,
  .wedding-gallery h2 {
    font-size: 28px;
    overflow-wrap: anywhere;
  }

  .wedding-intro h2,
  .wedding-card-section h2,
  .wedding-gallery h2 {
    width: 100%;
    max-width: min(320px, calc(100vw - 56px));
  }

  .wedding-intro p,
  .planner-note,
  .wedding-card-grid article {
    width: 100%;
    max-width: min(330px, calc(100vw - 56px));
  }

  .wedding-intro h2,
  .wedding-intro p,
  .planner-note {
    margin-left: 0;
    margin-right: 0;
  }

  .planner-note strong {
    font-size: 26px;
  }

  .planner-note strong,
  .planner-note p,
  .wedding-intro p,
  .wedding-card-grid h3,
  .wedding-card-grid p {
    overflow-wrap: anywhere;
  }

  .about-signature {
    left: 34px;
    right: 34px;
    bottom: 34px;
    max-width: none;
  }

  .feature-card-body {
    min-height: auto;
  }

  .section-pad {
    padding: 42px 0;
  }
}
