:root {
  --rose: #d98494;
  --rose-dark: #bf8080;
  --rose-soft: #f3dfe3;
  --ink: #595859;
  --ink-deep: #353336;
  --muted: #777477;
  --gray: #a6a6a6;
  --surface: #f2f2f2;
  --surface-warm: #f7f2f2;
  --white: #ffffff;
  --border: rgba(89, 88, 89, 0.14);
  --shadow: 0 18px 55px rgba(89, 88, 89, 0.11);
  --shadow-small: 0 10px 30px rgba(89, 88, 89, 0.08);
  --radius: 26px;
  --radius-small: 16px;
  --container: 1180px;
  --header-height: 88px;
  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans: Inter, Lato, "Segoe UI", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--surface);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

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

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

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

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

button {
  border: 0;
}

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

h1,
h2,
h3,
h4 {
  color: var(--ink-deep);
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.04;
}

h1 {
  margin-bottom: 26px;
  font-size: clamp(3rem, 6vw, 5.7rem);
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.5rem, 4.5vw, 4.4rem);
  letter-spacing: -0.035em;
}

h3 {
  font-size: clamp(1.45rem, 2vw, 2rem);
}

p {
  margin-bottom: 20px;
}

:focus-visible {
  outline: 3px solid rgba(217, 132, 148, 0.5);
  outline-offset: 4px;
}

::selection {
  color: var(--white);
  background: var(--rose-dark);
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink-deep);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

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

.section {
  position: relative;
  padding: 120px 0;
}

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

.eyebrow {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
  color: var(--rose-dark);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

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

.eyebrow--light {
  color: #f8e6e9;
}

.section-lead {
  color: var(--ink);
  font-size: clamp(1.08rem, 1.5vw, 1.25rem);
  line-height: 1.75;
}

.section-heading {
  margin-bottom: 60px;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 70px;
  align-items: end;
}

.section-heading--split h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.section-heading--split > p {
  max-width: 480px;
  margin-bottom: 8px;
  color: var(--muted);
}

.section-heading--center {
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading--center p:last-child {
  max-width: 630px;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  color: var(--muted);
}

.section-action {
  margin-top: 50px;
  text-align: center;
}

.button {
  display: inline-flex;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

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

.button--primary {
  color: var(--white);
  background: var(--rose);
  box-shadow: 0 10px 24px rgba(217, 132, 148, 0.22);
}

.button--primary:hover {
  background: var(--rose-dark);
  box-shadow: 0 14px 30px rgba(191, 128, 128, 0.28);
}

.button--secondary {
  color: var(--rose-dark);
  background: transparent;
  border-color: rgba(191, 128, 128, 0.6);
}

.button--secondary:hover {
  color: var(--white);
  background: var(--rose-dark);
  border-color: var(--rose-dark);
}

.button--light {
  color: var(--ink-deep);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(35, 30, 32, 0.18);
}

.button--light:hover {
  color: var(--rose-dark);
  background: #fff8f9;
}

.button--large {
  min-height: 56px;
  padding: 16px 28px;
}

.button--full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--rose-dark);
  font-size: 0.9rem;
  font-weight: 750;
  letter-spacing: 0.03em;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.91);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition:
    height 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.site-header.is-scrolled {
  height: 76px;
  border-color: var(--border);
  box-shadow: 0 8px 32px rgba(71, 61, 65, 0.08);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  display: block;
  flex: 0 0 180px;
}

.brand img {
  width: 180px;
  height: 66px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 650;
}

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

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

.header-cta {
  flex: 0 0 auto;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  margin: 5px 0;
  background: var(--ink-deep);
  transition: transform 180ms ease, opacity 180ms ease;
}

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

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

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

.mobile-nav {
  position: fixed;
  z-index: 999;
  top: var(--header-height);
  right: 0;
  left: 0;
  max-height: calc(100vh - var(--header-height));
  padding: 24px 20px 30px;
  overflow-y: auto;
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.mobile-nav a:not(.button) {
  display: block;
  padding: 13px 6px;
  border-bottom: 1px solid var(--border);
  font-family: var(--serif);
  font-size: 1.5rem;
}

.mobile-nav .button {
  width: 100%;
  margin-top: 24px;
}

.hero {
  min-height: 100vh;
  padding-top: calc(var(--header-height) + 82px);
  padding-bottom: 70px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 22%, rgba(217, 132, 148, 0.14), transparent 31%),
    linear-gradient(135deg, #f7f4f4 0%, var(--surface) 55%, #eee8e9 100%);
}

.hero-decoration {
  position: absolute;
  border: 1px solid rgba(191, 128, 128, 0.2);
  border-radius: 50%;
  pointer-events: none;
}

.hero-decoration--one {
  top: 10%;
  left: -220px;
  width: 430px;
  height: 430px;
}

.hero-decoration--two {
  top: 120px;
  right: -260px;
  width: 650px;
  height: 650px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.78fr);
  gap: clamp(50px, 8vw, 105px);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  max-width: 760px;
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.6vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-location {
  display: flex;
  max-width: 660px;
  margin-top: 30px;
  margin-bottom: 0;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 600;
}

.hero-location svg {
  width: 20px;
  flex: 0 0 20px;
  fill: none;
  stroke: var(--rose-dark);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.hero-frame {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 455px);
  height: 600px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 230px 230px 32px 32px;
  box-shadow: var(--shadow);
}

.hero-frame::after {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.hero-frame img {
  width: 100%;
  height: 100%;
  border-radius: 218px 218px 24px 24px;
  object-fit: cover;
  object-position: center 28%;
}

.hero-card {
  position: absolute;
  z-index: 2;
  bottom: 16px;
  left: -34px;
  width: 210px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-small);
  box-shadow: var(--shadow-small);
  backdrop-filter: blur(12px);
}

.hero-card span {
  display: block;
  color: var(--rose-dark);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  margin: 3px 0 8px;
  color: var(--ink-deep);
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1;
}

.hero-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.5;
}

.hero-seal {
  position: absolute;
  z-index: 3;
  top: 52px;
  left: -58px;
  display: flex;
  width: 130px;
  height: 130px;
  padding: 20px;
  background: var(--rose-dark);
  border: 7px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--white);
  text-align: center;
  box-shadow: 0 12px 35px rgba(100, 64, 72, 0.2);
}

.hero-seal span {
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-seal strong {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.05;
}

.specialty-grid {
  display: grid;
  margin-top: 72px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: var(--radius);
  box-shadow: var(--shadow-small);
  grid-template-columns: repeat(4, 1fr);
  backdrop-filter: blur(10px);
}

.specialty-card {
  display: flex;
  min-width: 0;
  padding: 25px;
  gap: 14px;
  border-right: 1px solid var(--border);
}

.specialty-card:last-child {
  border-right: 0;
}

.specialty-card__number {
  flex: 0 0 auto;
  color: var(--rose);
  font-family: var(--serif);
  font-size: 1.15rem;
}

.specialty-card h3 {
  margin-bottom: 6px;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 750;
  letter-spacing: 0;
}

.specialty-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.55;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.05fr);
  gap: clamp(60px, 9vw, 125px);
  align-items: center;
}

.about-visual {
  position: relative;
  padding: 0 0 56px 42px;
}

.about-visual::before {
  position: absolute;
  z-index: 0;
  top: -38px;
  left: 0;
  width: 74%;
  height: 88%;
  background: var(--rose-soft);
  border-radius: 180px 180px 24px 24px;
  content: "";
}

.about-image {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 160px 160px 24px 24px;
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.about-quote {
  position: absolute;
  z-index: 2;
  right: -20px;
  bottom: 0;
  width: 235px;
  padding: 24px 24px 20px;
  color: var(--white);
  background: var(--ink-deep);
  border-radius: var(--radius-small);
  box-shadow: var(--shadow-small);
}

.about-quote span {
  display: block;
  height: 22px;
  color: var(--rose);
  font-family: var(--serif);
  font-size: 3.2rem;
  line-height: 0.8;
}

.about-quote p {
  margin-bottom: 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.2;
}

.about-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.about-highlights {
  display: grid;
  margin: 34px 0;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-highlights div {
  padding: 20px 16px 20px 0;
}

.about-highlights strong,
.about-highlights span {
  display: block;
}

.about-highlights strong {
  color: var(--ink-deep);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
}

.about-highlights span {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.45;
}

.services {
  background:
    linear-gradient(rgba(217, 132, 148, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217, 132, 148, 0.035) 1px, transparent 1px),
    var(--surface);
  background-size: 34px 34px;
}

.services--packages {
  color: rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(circle at 85% 20%, rgba(217, 132, 148, 0.2), transparent 30%),
    var(--ink-deep);
}

.services--packages h2,
.services--packages h3,
.services--packages h4 {
  color: var(--white);
}

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

.service-card {
  position: relative;
  display: flex;
  min-height: 520px;
  padding: 22px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-small);
  flex-direction: column;
  box-shadow: 0 1px 0 rgba(89, 88, 89, 0.02);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.service-card:hover {
  border-color: rgba(217, 132, 148, 0.42);
  box-shadow: var(--shadow-small);
  transform: translateY(-5px);
}

.service-card--featured {
  color: var(--white);
  background: var(--rose-dark);
  border-color: var(--rose-dark);
}

.service-card--featured h3,
.service-card--featured a,
.service-card--featured .service-card__index {
  color: var(--white);
}

.service-card--featured p,
.service-card--featured li {
  color: rgba(255, 255, 255, 0.83);
}

.service-card__index {
  display: block;
  margin-bottom: 14px;
  color: var(--rose-dark);
  font-family: var(--serif);
  font-size: 1.35rem;
}

.service-card__media {
  height: 185px;
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 12px;
  background: var(--surface);
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.service-card:hover .service-card__media img {
  transform: scale(1.045);
}

.service-card--featured .service-card__media {
  background: rgba(255, 255, 255, 0.14);
}

.service-card__tag {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 5px 10px;
  color: var(--rose-dark);
  background: var(--white);
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card h3 {
  margin-bottom: 15px;
}

.service-card p {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.65;
}

.service-card a {
  display: inline-flex;
  margin-top: auto;
  padding-top: 20px;
  align-items: center;
  justify-content: space-between;
  color: var(--rose-dark);
  border-top: 1px solid currentColor;
  font-size: 0.72rem;
  font-weight: 750;
}

.mini-list {
  margin: 0 0 22px;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.mini-list li {
  position: relative;
  padding-left: 14px;
  font-size: 0.74rem;
}

.mini-list li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--rose);
  border-radius: 50%;
  content: "";
}

.bridal {
  color: rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(circle at 85% 20%, rgba(217, 132, 148, 0.2), transparent 30%),
    var(--ink-deep);
}

.bridal h2,
.bridal h3,
.bridal h4 {
  color: var(--white);
}

.bridal-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.75fr);
  gap: clamp(60px, 9vw, 120px);
  align-items: center;
}

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

.bridal-steps {
  margin: 38px 0 42px;
  padding: 0;
  list-style: none;
}

.bridal-steps li {
  display: grid;
  padding: 19px 0;
  grid-template-columns: 48px 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.bridal-steps li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.bridal-steps li > span {
  color: var(--rose);
  font-family: var(--serif);
  font-size: 1.1rem;
}

.bridal-steps h3 {
  margin-bottom: 4px;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 750;
}

.bridal-steps p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
}

.bridal-image {
  position: relative;
  padding: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 220px 220px 24px 24px;
}

.bridal-image img {
  width: 100%;
  height: 620px;
  border-radius: 210px 210px 18px 18px;
  object-fit: cover;
  object-position: center;
}

.bridal-image__caption {
  position: absolute;
  right: 32px;
  bottom: 32px;
  left: 32px;
  padding: 20px;
  color: var(--ink-deep);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.bridal-image__caption span,
.bridal-image__caption strong {
  display: block;
}

.bridal-image__caption span {
  color: var(--rose-dark);
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bridal-image__caption strong {
  margin-top: 3px;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.2;
}

.packages {
  margin-top: 105px;
}

.package-groups {
  display: grid;
  gap: 48px;
}

.package-group > h4 {
  margin: 0 0 22px;
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.packages-heading {
  display: flex;
  margin-bottom: 32px;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.packages-heading span {
  color: var(--rose);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.packages-heading h3 {
  margin: 4px 0 0;
  font-size: 2.4rem;
}

.packages-heading p {
  max-width: 420px;
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.82rem;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  padding-bottom: 14px;
}

.package-card {
  display: flex;
  min-height: 100%;
  padding: 28px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-small);
  flex-direction: column;
  overflow: hidden;
}

.package-card--accent {
  background: var(--rose-dark);
  border-color: var(--rose-dark);
}

.package-card__type {
  color: var(--rose);
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.package-card--accent .package-card__type {
  color: var(--white);
}

.package-card__image {
  width: calc(100% + 56px);
  height: 230px;
  margin: -28px -28px 24px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.08);
}

.package-card h4 {
  margin: 18px 0 15px;
  font-size: 1.8rem;
}

.package-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.8rem;
}

.package-card strong {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 500;
}

.package-card a {
  display: flex;
  margin-top: auto;
  padding-top: 20px;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.72rem;
  font-weight: 750;
}

.course-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1fr);
  gap: clamp(60px, 9vw, 120px);
  align-items: center;
}

.course-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.course-audience {
  margin: 32px 0 35px;
  padding: 22px 24px;
  background: var(--surface-warm);
  border-left: 3px solid var(--rose);
}

.course-audience > span {
  color: var(--ink-deep);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
}

.course-audience ul {
  margin: 10px 0 0;
  padding-left: 19px;
  color: var(--muted);
  font-size: 0.82rem;
}

.course-cards {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, 1fr);
}

.course-cards article {
  min-height: 230px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-small);
}

.course-cards article:nth-child(2),
.course-cards article:nth-child(3) {
  background: var(--rose-soft);
}

.course-cards span {
  display: block;
  margin-bottom: 38px;
  color: var(--rose-dark);
  font-family: var(--serif);
  font-size: 1.2rem;
}

.course-cards h3 {
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.course-cards p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.differentials {
  overflow: hidden;
  background: var(--surface-warm);
}

.differentials::before {
  position: absolute;
  top: -250px;
  right: -250px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(191, 128, 128, 0.14);
  border-radius: 50%;
  content: "";
}

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

.differential-card {
  min-height: 245px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--border);
  border-radius: var(--radius-small);
}

.differential-card span {
  display: flex;
  width: 46px;
  height: 46px;
  margin-bottom: 38px;
  align-items: center;
  justify-content: center;
  color: var(--rose-dark);
  background: var(--rose-soft);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.05rem;
}

.differential-card h3 {
  margin-bottom: 12px;
  font-size: 1.5rem;
}

.differential-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.portfolio-filters {
  display: flex;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 10px;
}

.portfolio-filters button {
  padding: 10px 18px;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 700;
  transition: all 180ms ease;
}

.portfolio-filters button:hover,
.portfolio-filters button.is-active {
  color: var(--white);
  background: var(--rose-dark);
  border-color: var(--rose-dark);
}

.portfolio-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: 260px;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.portfolio-item {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-small);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.portfolio-item--tall {
  grid-row: span 2;
}

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

.portfolio-item.is-hidden {
  display: none;
}

.portfolio-item button {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  background: var(--surface);
  cursor: zoom-in;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.portfolio-item button::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(40, 34, 36, 0.65));
  content: "";
  opacity: 0.8;
}

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

.portfolio-item span {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 16px;
  left: 18px;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-align: left;
  text-transform: uppercase;
}

.testimonials {
  background:
    radial-gradient(circle at 0% 100%, rgba(217, 132, 148, 0.13), transparent 33%),
    var(--surface);
}

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

.testimonial-card {
  display: flex;
  min-height: 350px;
  margin: 0;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  flex-direction: column;
  box-shadow: var(--shadow-small);
}

.testimonial-card::before {
  height: 46px;
  color: var(--rose);
  content: "“";
  font-family: var(--serif);
  font-size: 4.8rem;
  line-height: 0.8;
}

.testimonial-card--accent {
  color: var(--white);
  background: var(--rose-dark);
  border-color: var(--rose-dark);
  transform: translateY(22px);
}

.testimonial-card--accent::before {
  color: rgba(255, 255, 255, 0.58);
}

.testimonial-card blockquote {
  margin-bottom: 35px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.45;
}

.testimonial-card--accent blockquote {
  color: var(--white);
}

.testimonial-card figcaption {
  display: flex;
  margin-top: auto;
  align-items: center;
  gap: 13px;
}

.testimonial-card figcaption img {
  width: 46px;
  height: 46px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card figcaption strong,
.testimonial-card figcaption span {
  display: block;
}

.testimonial-card figcaption strong {
  color: var(--ink-deep);
  font-size: 0.82rem;
}

.testimonial-card figcaption span {
  color: var(--muted);
  font-size: 0.68rem;
}

.testimonial-card--accent figcaption strong,
.testimonial-card--accent figcaption span {
  color: var(--white);
}

.process-grid {
  position: relative;
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(5, 1fr);
  list-style: none;
}

.process-grid::before {
  position: absolute;
  top: 33px;
  right: 8%;
  left: 8%;
  height: 1px;
  background: var(--border);
  content: "";
}

.process-grid li {
  position: relative;
  z-index: 1;
  padding: 0 18px;
  text-align: center;
}

.process-grid li > span {
  display: flex;
  width: 66px;
  height: 66px;
  margin: 0 auto 25px;
  align-items: center;
  justify-content: center;
  color: var(--rose-dark);
  background: var(--white);
  border: 1px solid rgba(217, 132, 148, 0.32);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.2rem;
  box-shadow: 0 8px 20px rgba(89, 88, 89, 0.07);
}

.process-grid h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.process-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.75rem;
}

.contact {
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(217, 132, 148, 0.17), transparent 35%),
    var(--surface-warm);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(460px, 1fr);
  gap: clamp(55px, 9vw, 120px);
  align-items: start;
}

.contact-info > p:not(.eyebrow) {
  color: var(--muted);
}

.contact-list {
  margin: 38px 0 32px;
  font-style: normal;
  border-top: 1px solid var(--border);
}

.contact-list div {
  display: grid;
  padding: 19px 0;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--border);
}

.contact-list span {
  color: var(--rose-dark);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-list strong,
.contact-list a {
  color: var(--ink-deep);
  font-size: 0.84rem;
  font-weight: 650;
  line-height: 1.55;
}

.contact-list a:hover {
  color: var(--rose-dark);
}

.contact-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.location-map {
  height: 300px;
  margin: 30px 0 24px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-small);
  box-shadow: var(--shadow-small);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-form {
  padding: clamp(30px, 5vw, 50px);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-heading {
  margin-bottom: 30px;
}

.form-heading > span {
  color: var(--rose-dark);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.form-heading h3 {
  margin: 5px 0 9px;
  font-size: 2rem;
}

.form-heading p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.contact-form label {
  display: block;
  margin-bottom: 18px;
}

.contact-form label > span {
  display: block;
  margin-bottom: 7px;
  color: var(--ink-deep);
  font-size: 0.72rem;
  font-weight: 750;
}

.contact-form label em {
  color: var(--muted);
  font-size: 0.65rem;
  font-style: normal;
  font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  background: #fcfbfb;
  border: 1px solid var(--border);
  border-radius: 10px;
  outline: none;
  font-size: 0.82rem;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.contact-form input,
.contact-form select {
  height: 49px;
}

.contact-form textarea {
  min-height: 110px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(217, 132, 148, 0.11);
}

.contact-form [aria-invalid="true"] {
  border-color: #a8344b;
}

.field-error {
  display: block;
  min-height: 16px;
  margin-top: 4px;
  color: #8c273c;
  font-size: 0.66rem;
}

.form-status {
  min-height: 24px;
  margin: 13px 0 0;
  color: var(--rose-dark);
  font-size: 0.74rem;
  text-align: center;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.6fr) minmax(0, 1.25fr);
  gap: clamp(60px, 9vw, 120px);
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 120px;
}

.faq-intro > p:not(.eyebrow) {
  color: var(--muted);
}

.faq-item {
  border-top: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--border);
}

.faq-item h3 {
  margin: 0;
  font-family: var(--sans);
}

.faq-item button {
  display: grid;
  width: 100%;
  padding: 24px 0;
  align-items: center;
  grid-template-columns: 1fr 28px;
  gap: 25px;
  color: var(--ink-deep);
  background: transparent;
  cursor: pointer;
  font-size: 0.94rem;
  font-weight: 700;
  text-align: left;
}

.faq-item button span {
  position: relative;
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  border-radius: 50%;
}

.faq-item button span::before,
.faq-item button span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: var(--rose-dark);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-item button span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item button[aria-expanded="true"] span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  padding: 0 60px 23px 0;
}

.faq-answer p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.83rem;
}

.final-cta {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  color: var(--white);
  background: var(--rose-dark);
  text-align: center;
}

.final-cta__decoration {
  position: absolute;
  top: -220px;
  left: 50%;
  width: 800px;
  height: 800px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transform: translateX(-50%);
}

.final-cta__decoration::before,
.final-cta__decoration::after {
  position: absolute;
  inset: 85px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.final-cta__decoration::after {
  inset: 170px;
}

.final-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.final-cta .eyebrow {
  justify-content: center;
}

.final-cta h2 {
  color: var(--white);
}

.final-cta p:not(.eyebrow) {
  max-width: 650px;
  margin: 0 auto 32px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
}

.site-footer {
  padding: 74px 0 24px;
  color: rgba(255, 255, 255, 0.62);
  background: #2f2d30;
}

.footer-grid {
  display: grid;
  padding-bottom: 54px;
  grid-template-columns: 1.2fr 0.65fr 1fr 0.9fr;
  gap: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand img {
  width: 210px;
  height: 106px;
  margin-bottom: 18px;
  padding: 8px;
  background: var(--white);
  border-radius: 8px;
  object-fit: contain;
}

.footer-brand p {
  max-width: 270px;
  font-family: var(--serif);
  font-size: 1.2rem;
}

.footer-grid h2 {
  margin-bottom: 20px;
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-grid nav,
.footer-grid address {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 9px;
  font-style: normal;
}

.footer-grid a,
.footer-policy {
  color: rgba(255, 255, 255, 0.67);
  background: none;
  cursor: pointer;
  font-size: 0.76rem;
  text-align: left;
  transition: color 180ms ease;
}

.footer-grid a:hover,
.footer-policy:hover {
  color: var(--rose);
}

.footer-grid p {
  margin-bottom: 12px;
  font-size: 0.76rem;
}

.footer-bottom {
  display: flex;
  padding-top: 22px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.68rem;
}

.footer-bottom p {
  margin-bottom: 0;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.72);
}

.whatsapp-float {
  position: fixed;
  z-index: 900;
  right: 22px;
  bottom: 22px;
  display: flex;
  min-height: 54px;
  padding: 0 18px 0 14px;
  align-items: center;
  gap: 9px;
  color: var(--white);
  background: #218c55;
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(31, 112, 69, 0.3);
  font-size: 0.74rem;
  font-weight: 750;
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.whatsapp-float:hover {
  background: #187545;
  transform: translateY(-3px);
}

.whatsapp-float svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

dialog {
  max-width: calc(100% - 32px);
  padding: 0;
  color: var(--ink);
  background: var(--white);
  border: 0;
  border-radius: var(--radius-small);
  box-shadow: 0 30px 100px rgba(30, 26, 27, 0.32);
}

dialog::backdrop {
  background: rgba(36, 31, 33, 0.72);
  backdrop-filter: blur(5px);
}

.dialog-close {
  position: absolute;
  z-index: 3;
  top: 12px;
  right: 12px;
  display: flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: var(--ink-deep);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
}

.lightbox {
  width: min(900px, calc(100% - 32px));
  overflow: hidden;
  background: var(--ink-deep);
}

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

.lightbox p {
  margin: 0;
  padding: 14px 20px;
  color: var(--white);
  font-size: 0.8rem;
  text-align: center;
}

.privacy-dialog {
  width: min(620px, calc(100% - 32px));
  padding: 42px;
}

.privacy-dialog h2 {
  padding-right: 38px;
  font-size: 2.3rem;
}

.privacy-dialog p {
  color: var(--muted);
  font-size: 0.84rem;
}

.consent-banner {
  position: fixed;
  z-index: 1500;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  width: min(1080px, calc(100% - 36px));
  margin: 0 auto;
  padding: 22px;
  align-items: center;
  grid-template-columns: 1fr auto;
  gap: 24px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(47, 45, 48, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-small);
  box-shadow: 0 22px 70px rgba(35, 31, 32, 0.35);
  backdrop-filter: blur(12px);
}

.consent-banner h2 {
  margin: 0 0 5px;
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 750;
}

.consent-banner p {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.5;
}

.consent-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.consent-banner button {
  min-height: 40px;
  padding: 9px 15px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 750;
}

.consent-banner [data-consent="accept"] {
  color: var(--white);
  background: var(--rose);
}

.consent-banner [data-consent="essential"],
.consent-banner [data-consent="settings"] {
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.26);
}

.consent-dialog {
  width: min(560px, calc(100% - 32px));
  padding: 40px;
}

.consent-dialog h2 {
  padding-right: 40px;
  font-size: 2rem;
}

.consent-dialog > p {
  color: var(--muted);
  font-size: 0.8rem;
}

.consent-option {
  display: grid;
  padding: 18px 0;
  align-items: center;
  grid-template-columns: 1fr auto;
  gap: 20px;
  border-top: 1px solid var(--border);
}

.consent-option strong,
.consent-option span {
  display: block;
}

.consent-option strong {
  color: var(--ink-deep);
  font-size: 0.82rem;
}

.consent-option span {
  color: var(--muted);
  font-size: 0.7rem;
}

.consent-option input {
  width: 20px;
  height: 20px;
  accent-color: var(--rose-dark);
}

.consent-dialog__actions {
  display: flex;
  margin-top: 22px;
  justify-content: flex-end;
  gap: 10px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}

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

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

  .menu-toggle {
    display: block;
  }

  .header-cta {
    margin-left: auto;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.72fr);
    gap: 45px;
  }

  .hero-visual {
    min-height: 550px;
  }

  .hero-frame {
    height: 535px;
  }

  .hero-seal {
    left: -30px;
  }

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

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

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

@media (min-width: 1081px) {
  body.menu-open {
    overflow: auto;
  }

  .mobile-nav {
    display: none !important;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 76px;
  }

  .section {
    padding: 90px 0;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 55px);
  }

  .hero-grid,
  .about-grid,
  .bridal-intro,
  .course-grid,
  .contact-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-copy .eyebrow,
  .hero-actions,
  .hero-location {
    justify-content: center;
  }

  .hero-copy h1,
  .hero-lead,
  .hero-location {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-visual {
    width: min(100%, 500px);
    min-height: 620px;
    margin: 0 auto;
  }

  .hero-frame {
    right: 20px;
    left: 20px;
    width: auto;
    height: 590px;
  }

  .hero-card {
    left: 0;
  }

  .hero-seal {
    left: -8px;
  }

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

  .specialty-card:nth-child(2) {
    border-right: 0;
  }

  .specialty-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }

  .about-grid {
    gap: 70px;
  }

  .about-visual {
    width: min(90%, 520px);
    margin: 0 auto;
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .bridal-copy {
    order: 2;
  }

  .bridal-image {
    width: min(100%, 530px);
    margin: 0 auto;
  }

  .packages {
    margin-top: 80px;
  }

  .course-grid {
    gap: 55px;
  }

  .differentials-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-card--accent {
    transform: none;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 15px;
  }

  .process-grid::before {
    display: none;
  }

  .process-grid li:last-child {
    grid-column: 1 / -1;
    max-width: 270px;
    margin: 0 auto;
  }

  .contact-grid {
    gap: 55px;
  }

  .faq-intro {
    position: static;
  }
}

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

  .section {
    padding: 72px 0;
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 4rem);
  }

  h2 {
    font-size: clamp(2.25rem, 11vw, 3.3rem);
  }

  .brand {
    flex-basis: 150px;
  }

  .brand img {
    width: 150px;
    height: 58px;
  }

  .hero {
    padding-top: calc(var(--header-height) + 38px);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .hero-location {
    align-items: flex-start;
    text-align: left;
  }

  .hero-visual {
    min-height: 490px;
  }

  .hero-frame {
    right: 8px;
    left: 8px;
    height: 465px;
    border-radius: 180px 180px 24px 24px;
  }

  .hero-frame img {
    border-radius: 168px 168px 18px 18px;
  }

  .hero-card {
    bottom: 0;
    left: 0;
    width: 180px;
    padding: 18px;
  }

  .hero-seal {
    top: 22px;
    left: -2px;
    width: 105px;
    height: 105px;
    border-width: 5px;
  }

  .hero-seal strong {
    font-size: 0.9rem;
  }

  .specialty-grid {
    margin-top: 45px;
    grid-template-columns: 1fr;
  }

  .specialty-card {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .specialty-card:nth-child(3) {
    border-bottom: 1px solid var(--border);
  }

  .specialty-card:last-child {
    border-bottom: 0;
  }

  .about-visual {
    width: 100%;
    padding-left: 22px;
  }

  .about-quote {
    right: 0;
    width: 205px;
  }

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

  .about-highlights div {
    border-bottom: 1px solid var(--border);
  }

  .about-highlights div:last-child {
    border-bottom: 0;
  }

  .services-grid,
  .course-cards,
  .differentials-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 330px;
  }

  .bridal-image img {
    height: 510px;
  }

  .packages-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .course-cards article {
    min-height: 200px;
  }

  .portfolio-grid {
    grid-auto-rows: 300px;
    grid-template-columns: 1fr;
  }

  .portfolio-item--tall {
    grid-row: span 1;
  }

  .portfolio-item--wide {
    grid-column: span 1;
  }

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

  .process-grid li:last-child {
    grid-column: auto;
  }

  .contact-list div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form {
    padding: 27px 20px;
  }

  .faq-answer {
    padding-right: 10px;
  }

  .final-cta {
    padding: 80px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 56px;
    height: 56px;
    min-height: 56px;
    padding: 0;
    justify-content: center;
  }

  .whatsapp-float span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

  .consent-banner {
    right: 10px;
    bottom: 10px;
    left: 10px;
    width: auto;
    padding: 18px;
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .consent-banner__actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .consent-banner [data-consent="accept"] {
    grid-column: 1 / -1;
  }

  .privacy-dialog,
  .consent-dialog {
    padding: 30px 22px;
  }

  .consent-dialog__actions {
    flex-direction: column;
  }

  .consent-dialog__actions .button {
    width: 100%;
  }
}

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

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

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

@media print {
  .site-header,
  .whatsapp-float,
  .consent-banner,
  .hero-actions,
  .contact-form,
  .final-cta {
    display: none !important;
  }

  .section {
    padding: 35px 0;
  }

  body {
    color: #000;
    background: #fff;
  }
}
