﻿@font-face {
  font-family: "The Signature";
  src:
    url("fonts/Thesignature.otf") format("opentype"),
    url("fonts/Thesignature.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --paper: #fbf8f4;
  --surface: #fffdf9;
  --blush: #f4e7e5;
  --blush-strong: #ead5d0;
  --sand: #b6a58a;
  --sand-dark: #8f7d63;
  --button-gradient: linear-gradient(135deg, #cbb99c 0%, #b49b77 48%, #ead7d0 100%);
  --button-gradient-hover: linear-gradient(135deg, #d8c8ad 0%, #a88960 48%, #f0ded8 100%);
  --veil-gradient: linear-gradient(115deg, transparent 0%, rgba(255, 253, 249, 0.18) 34%, rgba(255, 246, 242, 0.62) 50%, rgba(234, 213, 208, 0.22) 64%, transparent 100%);
  --ink: #24211f;
  --muted: #756f69;
  --line: #e7ded5;
  --shadow: 0 24px 70px rgba(73, 57, 42, 0.11);
  --content: min(1180px, calc(100vw - 40px));
}

@media (prefers-reduced-motion: reduce) {
  .page-transition,
  .hero__media::after,
  .dress-card__media::after,
  .blog-card::after,
  .video-feature__media::after,
  .soft-slide::after,
  .instagram-grid a::after,
  .footer-social__grid a::after,
  .page-hero--split img,
  .editorial-strip img,
  .blog-card img,
  .masonry-gallery img,
  .dress-detail__thumbs img,
  .video-feature__media img,
  .soft-slide img,
  .realbrides img,
  .instagram-grid img,
  .footer-social__grid img,
  .about-hero img {
    transition: none;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 18px;
  line-height: 1.7;
}

body.has-lightbox {
  overflow: hidden;
}

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 120;
  pointer-events: none;
  opacity: 0;
  background:
    linear-gradient(105deg, transparent 0%, rgba(255, 253, 249, 0.2) 24%, rgba(255, 248, 246, 0.94) 48%, rgba(234, 213, 208, 0.44) 62%, transparent 100%),
    radial-gradient(ellipse at 42% 50%, rgba(255, 253, 249, 0.78), transparent 56%);
  transform: translateX(-112%) skewX(-9deg);
  transition: transform 680ms cubic-bezier(0.22, 0.72, 0.2, 1), opacity 240ms ease;
}

.page-transition.is-active {
  opacity: 1;
  transform: translateX(112%) skewX(-9deg);
}

img {
  display: block;
  max-width: 100%;
  border-radius: 0;
}

.hero__media,
.dress-card__media,
.blog-card,
.video-feature__media,
.soft-slide,
.instagram-grid a,
.footer-social__grid a {
  position: relative;
  overflow: hidden;
  --veil-opacity: 0;
  --veil-shift: -135%;
}

.hero__media::after,
.dress-card__media::after,
.blog-card::after,
.video-feature__media::after,
.soft-slide::after,
.instagram-grid a::after,
.footer-social__grid a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: var(--veil-gradient);
  opacity: var(--veil-opacity);
  pointer-events: none;
  transform: translateX(var(--veil-shift)) skewX(-10deg);
  transition: transform 760ms cubic-bezier(0.2, 0.7, 0.2, 1), opacity 420ms ease;
}

.hero__media:hover,
.dress-card:hover .dress-card__media,
.blog-card:hover,
.blog-card:focus-within,
.video-feature__media:hover,
.soft-slide:hover,
.instagram-grid a:hover,
.footer-social__grid a:hover {
  --veil-opacity: 0.82;
  --veil-shift: 18%;
}

.page-hero--split img,
.editorial-strip img,
.blog-card img,
.masonry-gallery img,
.dress-detail__thumbs img,
.video-feature__media img,
.soft-slide img,
.realbrides img,
.instagram-grid img,
.footer-social__grid img,
.about-hero img {
  transition: transform 420ms ease, filter 420ms ease, opacity 420ms ease;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--sand-dark);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 200px minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 2vw, 30px);
  padding: 18px max(24px, calc((100vw - 1180px) / 2));
  background: rgba(251, 248, 244, 0.94);
  border-bottom: 1px solid rgba(231, 222, 213, 0.85);
  backdrop-filter: blur(12px);
  transition: grid-template-columns 260ms ease, gap 260ms ease, padding 260ms ease, background 260ms ease, box-shadow 260ms ease;
}

.site-header.is-scrolled {
  grid-template-columns: minmax(0, 1fr) 160px minmax(0, 1fr) auto;
  gap: clamp(14px, 1.7vw, 26px);
  padding-top: 10px;
  padding-bottom: 10px;
  background: rgba(251, 248, 244, 0.985);
  box-shadow: 0 14px 34px rgba(73, 57, 42, 0.08);
}

.logo img {
  width: 155px;
  height: auto;
  mix-blend-mode: multiply;
  transition: width 260ms ease, transform 260ms ease;
}

.site-header.is-scrolled .logo img {
  width: 118px;
}

.logo {
  grid-column: 2;
  justify-self: center;
  position: relative;
  z-index: 2;
}

.main-nav {
  display: flex;
  min-width: 0;
  gap: clamp(10px, 1.2vw, 18px);
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: gap 260ms ease, font-size 260ms ease, letter-spacing 260ms ease;
}

.main-nav--left {
  grid-column: 1;
  justify-content: flex-end;
}

.main-nav--right {
  grid-column: 3;
  justify-content: flex-start;
}

.site-header.is-scrolled .main-nav {
  gap: clamp(10px, 1.35vw, 18px);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.main-nav a {
  color: #625c56;
}

.main-nav a:hover {
  color: var(--ink);
}

.header-cta,
.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  white-space: nowrap;
  border: 1px solid rgba(180, 155, 119, 0.72);
  border-radius: 999px;
  background: var(--button-gradient);
  color: #fff;
  box-shadow: 0 12px 28px rgba(143, 125, 99, 0.18);
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: min-height 260ms ease, padding 260ms ease, transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.header-cta {
  grid-column: 4;
  min-width: 184px;
  padding-inline: 22px;
  justify-self: end;
}

.site-header.is-scrolled .header-cta {
  min-width: 166px;
  min-height: 40px;
  padding-inline: 18px;
  font-size: 12px;
}

.header-cta:hover,
.button:hover,
button:hover,
.footer-cta:hover {
  border-color: rgba(168, 137, 96, 0.85);
  background: var(--button-gradient-hover);
  box-shadow: 0 16px 34px rgba(143, 125, 99, 0.24);
  transform: translateY(-1px);
}

.mobile-menu {
  display: none;
}

.mobile-menu summary {
  width: 44px;
  height: 44px;
  display: grid;
  place-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  background: var(--surface);
  cursor: pointer;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary span {
  width: 20px;
  height: 2px;
  background: var(--sand-dark);
}

.mobile-menu nav {
  position: absolute;
  left: 14px;
  right: 14px;
  top: calc(100% + 8px);
  display: grid;
  gap: 0;
  padding: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.mobile-menu nav a {
  padding: 13px 10px;
  border-bottom: 1px solid var(--line);
  color: #625c56;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mobile-menu nav a:last-child {
  border-bottom: 0;
}

.quick-overlay {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
}

.quick-overlay > summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--sand);
  border-radius: 999px;
  background: var(--sand);
  color: #fff;
  box-shadow: 0 16px 44px rgba(73, 57, 42, 0.18);
  cursor: pointer;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  list-style: none;
  text-transform: uppercase;
}

.quick-overlay > summary::-webkit-details-marker {
  display: none;
}

.quick-overlay[open] > summary {
  background: var(--ink);
  border-color: var(--ink);
}

.quick-overlay__panel {
  position: absolute;
  right: 0;
  bottom: 64px;
  width: min(520px, calc(100vw - 32px));
  padding: 28px;
  background: rgba(255, 253, 249, 0.98);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.quick-overlay__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  min-height: 32px;
  padding: 0;
  border: 1px solid rgba(180, 155, 119, 0.34);
  border-radius: 50%;
  background: rgba(255, 253, 249, 0.72);
  color: rgba(36, 33, 31, 0.62);
  box-shadow: none;
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}

.quick-overlay__close:hover,
.quick-overlay__close:focus-visible {
  background: rgba(255, 253, 249, 0.96);
  color: var(--ink);
  transform: none;
}

.quick-overlay__head {
  margin-right: 38px;
  margin-bottom: 18px;
}

.quick-overlay__head .script {
  margin-bottom: 2px;
  font-size: 36px;
}

.quick-overlay__title {
  margin-bottom: 0;
  font-size: 32px;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.05;
}

.quick-overlay__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.quick-overlay__grid a {
  display: grid;
  gap: 6px;
  min-height: 132px;
  min-width: 0;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--muted);
}

.quick-overlay__grid span {
  color: var(--sand-dark);
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.quick-overlay__grid strong {
  color: var(--ink);
  font-size: clamp(19px, 1.6vw, 22px);
  line-height: 1.1;
  overflow-wrap: normal;
  hyphens: auto;
}

.quick-overlay__grid em {
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-style: normal;
  overflow-wrap: normal;
}

.button--ghost {
  border-color: rgba(180, 155, 119, 0.46);
  background: linear-gradient(135deg, rgba(255, 253, 249, 0.92), rgba(244, 231, 229, 0.42));
  color: var(--sand-dark);
  box-shadow: none;
}

.button--ghost:hover {
  background: linear-gradient(135deg, rgba(255, 253, 249, 0.98), rgba(234, 213, 208, 0.72));
  color: var(--ink);
}

.hero {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: clamp(620px, calc(100vh - 78px), 760px);
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, var(--content));
  align-items: center;
  justify-content: center;
  padding: clamp(54px, 7vw, 96px) max(24px, calc((100vw - 1180px) / 2));
  overflow: hidden;
  background: #eee4dc;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(251, 248, 244, 0.52) 0%, rgba(251, 248, 244, 0.28) 42%, rgba(251, 248, 244, 0.04) 76%),
    linear-gradient(0deg, rgba(143, 125, 99, 0.08), rgba(143, 125, 99, 0));
}

.hero__copy {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
  max-width: 720px;
  padding: clamp(30px, 4.5vw, 58px);
  background: rgba(255, 253, 249, 0.72);
  border: 1px solid rgba(255, 253, 249, 0.58);
  box-shadow: 0 28px 80px rgba(73, 57, 42, 0.11);
  backdrop-filter: blur(3px) saturate(1.05);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--sand-dark);
  font-family: Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(54px, 6.8vw, 96px);
  line-height: 0.94;
  font-weight: 500;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(34px, 4.4vw, 64px);
  line-height: 1.05;
  font-weight: 500;
}

h3 {
  margin-bottom: 12px;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 500;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  margin: 0;
}

.hero__media::before {
  display: none;
}

.hero__media img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center right;
  border-radius: 0;
  box-shadow: none;
  opacity: 0.88;
}

.hero__media iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: max(100vw, 177.78vh);
  height: max(100vh, 56.25vw);
  border: 0;
  filter: saturate(0.96) brightness(1.04);
  opacity: 0.78;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(1.02);
}

.hero__media iframe + img {
  opacity: 0.12;
}

.hero__media:hover img,
.page-hero--split img:hover,
.editorial-strip img:hover,
.blog-card:hover img,
.blog-card:focus-within img,
.masonry-gallery img:hover,
.masonry-gallery img:focus-visible,
.dress-detail__thumbs img:hover,
.video-feature__media:hover img,
.soft-slide:hover img,
.realbrides img:hover,
.instagram-grid a:hover img,
.footer-social__grid a:hover img,
.about-hero img:hover {
  filter: saturate(1.04) brightness(1.025);
  transform: scale(1.018);
}

.section {
  width: var(--content);
  margin: 0 auto;
  padding: 82px 0;
}

.page-hero {
  width: var(--content);
  margin: 0 auto;
  padding: 112px 0 70px;
  max-width: 980px;
}

.page-hero h1 {
  max-width: 880px;
}

.page-hero p:not(.script) {
  max-width: 680px;
}

.page-hero--split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 84px);
}

.page-hero--split img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.script {
  margin-bottom: 8px;
  color: var(--sand-dark);
  font-family: "The Signature", "Segoe Print", "Bradley Hand ITC", "Lucida Handwriting", cursive;
  font-size: clamp(46px, 6.8vw, 88px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.78;
}

.script-umlaut {
  position: relative;
  display: inline-block;
}

.script-umlaut::after {
  content: "..";
  position: absolute;
  left: 50%;
  top: -0.2em;
  color: currentColor;
  font-family: Georgia, serif;
  font-size: 0.34em;
  letter-spacing: 0.08em;
  line-height: 1;
  transform: translateX(-48%);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) 1fr;
  gap: clamp(28px, 6vw, 84px);
}

.soft-band {
  width: 100%;
  padding-inline: max(24px, calc((100vw - 1180px) / 2));
  background: #f6eeee;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-grid article {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 260px;
  padding: 34px;
  background:
    linear-gradient(145deg, rgba(255, 253, 249, 0.98) 0%, rgba(255, 253, 249, 0.84) 48%, rgba(244, 231, 229, 0.78) 100%);
  border: 1px solid rgba(231, 222, 213, 0.9);
  box-shadow: 0 16px 42px rgba(73, 57, 42, 0.055);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.service-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 86% 14%, rgba(255, 255, 255, 0.82), transparent 30%),
    linear-gradient(120deg, transparent 0%, rgba(203, 185, 156, 0.12) 48%, rgba(255, 253, 249, 0.54) 64%, transparent 100%);
  opacity: 0.72;
}

.service-grid article::after {
  content: "";
  position: absolute;
  inset: auto 22px 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(180, 155, 119, 0.42), transparent);
}

.service-grid article:hover {
  border-color: rgba(180, 155, 119, 0.42);
  box-shadow: 0 22px 54px rgba(73, 57, 42, 0.1);
  transform: translateY(-3px);
}

.service-grid span {
  display: block;
  margin-bottom: 44px;
  color: var(--sand);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-heading a {
  color: var(--sand-dark);
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.collection-heading {
  display: grid;
  grid-template-columns: minmax(0, 760px) auto;
  justify-content: center;
  align-items: end;
  column-gap: clamp(36px, 7vw, 92px);
  row-gap: 4px;
  margin-bottom: 34px;
}

.collection-heading .script {
  grid-column: 1;
  align-self: start;
  margin: 0 0 -2px;
  color: rgba(143, 125, 99, 0.86);
  font-size: clamp(34px, 3.8vw, 54px);
  line-height: 0.9;
  white-space: nowrap;
}

.collection-heading h2 {
  grid-column: 1;
  max-width: 640px;
  margin: 0;
  font-size: clamp(36px, 4.3vw, 60px);
  line-height: 1.02;
}

.collection-heading a {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  max-width: 128px;
  line-height: 1.35;
}

.editorial-strip {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 16px;
}

.editorial-strip img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  border-radius: 0;
}

.dress-gallery {
  padding-top: 28px;
}

.dress-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.dress-card {
  background: var(--surface);
  border: 1px solid var(--line);
}

.dress-card__media {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--blush);
}

.dress-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: opacity 220ms ease, transform 280ms ease;
}

.dress-card__media img.is-switching {
  opacity: 0.35;
}

.dress-card:hover .dress-card__media img {
  transform: scale(1.025);
}

.dress-card__arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 30px;
  height: 30px;
  min-height: 30px;
  padding: 0;
  border: 1px solid rgba(255, 253, 249, 0.66);
  border-radius: 50%;
  background: rgba(255, 253, 249, 0.54);
  color: rgba(36, 33, 31, 0.68);
  box-shadow: 0 8px 20px rgba(73, 57, 42, 0.08);
  font-family: Georgia, serif;
  font-size: 21px;
  line-height: 1;
  backdrop-filter: blur(5px);
  transform: translateY(-50%);
}

.dress-card__arrow:hover {
  background: rgba(255, 253, 249, 0.76);
  color: rgba(36, 33, 31, 0.86);
  box-shadow: 0 10px 22px rgba(73, 57, 42, 0.12);
  transform: translateY(-50%);
}

.dress-card__arrow--prev {
  left: 10px;
}

.dress-card__arrow--next {
  right: 10px;
}

.dress-card__count {
  position: absolute;
  z-index: 4;
  top: 12px;
  right: 12px;
  padding: 5px 8px;
  background: rgba(255, 253, 249, 0.52);
  border: 1px solid rgba(255, 253, 249, 0.5);
  color: rgba(36, 33, 31, 0.62);
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  backdrop-filter: blur(5px);
}

.dress-card__dots {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 12px;
  display: flex;
  gap: 6px;
  transform: translateX(-50%);
}

.dress-card__dots i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 253, 249, 0.5);
  border: 1px solid rgba(36, 33, 31, 0.14);
}

.dress-card__dots .is-active {
  width: 16px;
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.78);
}

.dress-card__body {
  padding: 20px 20px 22px;
}

.dress-card__body p,
.dress-card__body span {
  margin: 0;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.dress-card__body h3 {
  margin: 7px 0 10px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding-top: 10px;
}

.blog-card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 22px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.blog-card:hover,
.blog-card:focus-within {
  border-color: rgba(180, 155, 119, 0.46);
  box-shadow: 0 18px 44px rgba(73, 57, 42, 0.1);
  transform: translateY(-3px);
}

.blog-card__link {
  display: block;
  height: 100%;
}

.blog-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  margin-bottom: 22px;
}

.blog-card--featured {
  grid-column: 1 / -1;
  padding: 0;
}

.blog-card--featured .blog-card__link {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 42px;
  align-items: center;
}

.blog-card--featured img {
  height: 460px;
  margin: 0;
}

.blog-card--featured .blog-card__link div {
  padding: 38px 42px 38px 0;
}

.text-link {
  color: var(--sand-dark);
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-article {
  width: var(--content);
  margin: 0 auto;
  padding: 96px 0;
}

.blog-article__hero {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.72fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: end;
  margin-bottom: 76px;
}

.blog-article__hero img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.blog-article__meta {
  margin-bottom: 18px;
  color: var(--sand-dark);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.blog-article__content {
  max-width: 780px;
  margin: 0 auto;
}

.blog-article__content h2 {
  margin-top: 52px;
  margin-bottom: 16px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
  font-weight: 500;
}

.blog-article__content p,
.blog-article__content li {
  color: var(--muted);
}

.blog-article__content ul {
  padding-left: 22px;
}

.blog-article__note {
  margin: 54px 0;
  padding: 34px;
  background: var(--blush);
  border-left: 4px solid var(--sand);
}

.blog-article__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 54px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 26px;
  align-items: start;
}

.contact-panel,
.info-stack > div {
  background: var(--surface);
  border: 1px solid var(--line);
}

.contact-panel {
  padding: clamp(28px, 5vw, 56px);
}

.form-card {
  perspective: 1400px;
}

.form-card__inner {
  display: grid;
  transform-style: preserve-3d;
  transition: transform 760ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.form-card.is-sent .form-card__inner {
  transform: rotateY(180deg);
}

.form-card__front,
.form-card__back {
  grid-area: 1 / 1;
  min-width: 0;
  backface-visibility: hidden;
}

.form-card__back {
  display: grid;
  align-content: center;
  justify-items: start;
  min-height: 520px;
  padding: clamp(18px, 4vw, 48px);
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 255, 255, 0.78), transparent 32%),
    linear-gradient(145deg, rgba(255, 253, 249, 0.96), rgba(244, 231, 229, 0.72));
  border: 1px solid rgba(231, 222, 213, 0.82);
  transform: rotateY(180deg);
}

.form-card__back p:not(.script) {
  max-width: 560px;
  color: var(--muted);
}

.info-stack {
  display: grid;
  gap: 16px;
}

.info-stack > div {
  padding: 26px;
}

.info-stack span,
.facts-list dt {
  display: block;
  margin-bottom: 8px;
  color: var(--sand-dark);
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding-top: 0;
  padding-bottom: 26px;
}

.filter-row button {
  min-height: 0;
  padding: 11px 18px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
  box-shadow: none;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.filter-row button:hover,
.filter-row button:focus-visible {
  border-color: rgba(180, 155, 119, 0.62);
  background: linear-gradient(135deg, rgba(255, 253, 249, 0.96), rgba(244, 231, 229, 0.6));
  color: var(--ink);
  transform: none;
}

.filter-row button.is-active {
  background: var(--button-gradient);
  border-color: rgba(180, 155, 119, 0.72);
  color: #fff;
  box-shadow: 0 10px 22px rgba(143, 125, 99, 0.16);
}

.masonry-gallery {
  columns: 3 250px;
  column-gap: 18px;
  padding-top: 0;
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition: opacity 360ms ease, transform 360ms ease, filter 360ms ease;
}

.masonry-gallery.is-switching {
  opacity: 0.18;
  transform: translateY(8px);
  filter: blur(3px);
}

.masonry-gallery img {
  width: 100%;
  margin: 0 0 18px;
  break-inside: avoid;
  object-fit: cover;
  cursor: zoom-in;
  opacity: 1;
  transition: opacity 340ms ease, transform 340ms ease, filter 340ms ease;
}

.masonry-gallery img:hover,
.masonry-gallery img:focus-visible {
  filter: saturate(1.05) contrast(1.02) brightness(1.025);
  transform: translateY(-2px) scale(1.012);
}

.masonry-gallery img.is-hidden {
  display: none;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(22px, 5vw, 64px);
  background: rgba(36, 33, 31, 0);
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease, background 280ms ease;
}

.gallery-lightbox.is-open {
  background: rgba(36, 33, 31, 0.72);
  opacity: 1;
  pointer-events: auto;
}

.gallery-lightbox__stage {
  position: relative;
  width: min(980px, 100%);
  transform: translateY(14px) scale(0.975);
  transition: transform 320ms ease;
}

.gallery-lightbox.is-open .gallery-lightbox__stage {
  transform: translateY(0) scale(1);
}

.gallery-lightbox__image {
  width: 100%;
  max-height: min(78vh, 760px);
  object-fit: contain;
  background: var(--surface);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.gallery-lightbox__caption {
  margin: 14px 56px 0;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-align: center;
}

.gallery-lightbox__close,
.gallery-lightbox__nav {
  position: absolute;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 253, 249, 0.82);
  background: rgba(255, 253, 249, 0.9);
  color: var(--ink);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
}

.gallery-lightbox__close:hover,
.gallery-lightbox__nav:hover {
  background: #fffdf9;
  color: var(--ink);
  transform: none;
}

.gallery-lightbox__close {
  top: -18px;
  right: -18px;
  width: 42px;
  height: 42px;
  min-height: 42px;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
}

.gallery-lightbox__nav {
  top: 50%;
  width: 44px;
  height: 44px;
  min-height: 44px;
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 30px;
  transform: translateY(-50%);
}

.gallery-lightbox__nav:hover {
  transform: translateY(-50%);
}

.gallery-lightbox__nav--prev {
  left: -22px;
}

.gallery-lightbox__nav--next {
  right: -22px;
}

.dress-detail {
  width: var(--content);
  margin: 0 auto;
  padding: 90px 0;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.82fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: start;
}

.dress-detail__main {
  width: 100%;
  max-height: 780px;
  object-fit: cover;
  object-position: top;
  box-shadow: var(--shadow);
}

.dress-detail__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.dress-detail__thumbs img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top;
  border: 1px solid var(--line);
}

.dress-detail__content {
  position: sticky;
  top: 116px;
  padding-top: 18px;
}

.facts-list {
  display: grid;
  gap: 16px;
  margin: 32px 0;
}

.facts-list div {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.facts-list dd {
  margin: 0;
  color: var(--muted);
}

.related-dresses .dress-grid {
  max-width: 760px;
}

.video-feature {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) 1fr;
  align-items: center;
  gap: clamp(30px, 6vw, 76px);
}

.video-feature__media {
  position: relative;
  width: min(100%, 360px);
  margin-inline: auto;
  aspect-ratio: 9 / 16;
  background: var(--blush);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.video-feature__media::before {
  content: "";
  position: absolute;
  inset: 22px -20px -20px 22px;
  background: #f0e3dc;
  z-index: -1;
}

.video-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.video-feature__media span {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  width: max-content;
  max-width: calc(100% - 32px);
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.92);
  color: var(--sand-dark);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.video-feature__media span::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-right: 9px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid var(--sand-dark);
}

.video-feature__copy {
  max-width: 620px;
}

.soft-slider {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
}

.soft-slider__copy {
  max-width: 440px;
}

.soft-slider__dots {
  display: flex;
  gap: 9px;
  margin-top: 28px;
}

.soft-slider__dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(143, 125, 99, 0.32);
}

.soft-slider__dots .is-active {
  width: 28px;
  border-radius: 999px;
  background: var(--sand);
}

.soft-slider__stage {
  position: relative;
  min-height: 420px;
  background:
    radial-gradient(circle at 40% 45%, rgba(244, 231, 229, 0.9), transparent 62%),
    linear-gradient(90deg, rgba(255, 253, 249, 0), rgba(255, 253, 249, 0.72));
}

.soft-slide {
  position: absolute;
  margin: 0;
  box-shadow: 0 24px 70px rgba(73, 57, 42, 0.09);
}

.soft-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.soft-slide figcaption {
  position: absolute;
  z-index: 3;
  left: 14px;
  bottom: 14px;
  padding: 8px 10px;
  background: rgba(255, 253, 249, 0.86);
  color: var(--sand-dark);
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.soft-slide.is-main {
  left: 10%;
  top: 14%;
  z-index: 2;
  width: 54%;
  height: 68%;
}

.soft-slide:nth-child(2) {
  right: 8%;
  top: 5%;
  width: 36%;
  height: 46%;
  opacity: 0.9;
}

.soft-slide:nth-child(3) {
  right: 18%;
  bottom: 3%;
  width: 32%;
  height: 38%;
  opacity: 0.86;
}

.designers {
  text-align: center;
}

.designer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.designer-row span {
  padding: 13px 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.realbrides {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  align-items: center;
  gap: 52px;
}

.realbrides img {
  width: 100%;
  max-height: 720px;
  object-fit: cover;
  object-position: top;
  border-radius: 0;
  box-shadow: var(--shadow);
}

.story-hero {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
}

.story-hero img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top;
  box-shadow: var(--shadow);
}

.story-intro {
  max-width: 860px;
  text-align: center;
}

.story-book {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.story-card {
  background:
    linear-gradient(145deg, rgba(255, 253, 249, 0.98), rgba(244, 231, 229, 0.52));
  border: 1px solid rgba(231, 222, 213, 0.86);
  box-shadow: 0 18px 46px rgba(73, 57, 42, 0.07);
}

.story-card img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  object-position: top;
}

.story-card div {
  padding: 30px;
}

.story-card h2,
.story-card h3 {
  margin-bottom: 18px;
}

.story-card p {
  color: var(--muted);
}

.story-card--large {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  align-items: stretch;
}

.story-card--large img {
  height: 100%;
  min-height: 520px;
}

.story-card dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 32px 0 0;
}

.story-card dt {
  color: var(--sand-dark);
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-card dd {
  margin: 4px 0 0;
  color: var(--muted);
}

.story-cta {
  max-width: 760px;
  text-align: center;
}

.instagram-section {
  padding-top: 20px;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.instagram-grid a {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--blush);
}

.instagram-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 260ms ease, filter 260ms ease;
}

.instagram-grid span {
  position: absolute;
  z-index: 3;
  left: 12px;
  bottom: 12px;
  padding: 8px 10px;
  background: rgba(255, 253, 249, 0.88);
  color: var(--sand-dark);
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.instagram-grid a:hover img {
  transform: scale(1.035);
  filter: saturate(1.04) brightness(1.025);
}

.appointment {
  width: 100%;
  padding-inline: max(24px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(90deg, rgba(251, 248, 244, 0.96) 0%, rgba(251, 248, 244, 0.78) 42%, rgba(251, 248, 244, 0.92) 100%),
    url("assets/images/p04-img01.jpg") center / cover;
}

.appointment-shell {
  width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.36fr) minmax(0, 1fr);
  gap: clamp(28px, 4.4vw, 62px);
  align-items: start;
}

.appointment-contact {
  display: grid;
  gap: 14px;
  padding: 18px;
  background: linear-gradient(145deg, rgba(255, 253, 249, 0.64), rgba(244, 231, 229, 0.36));
  border: 1px solid rgba(231, 222, 213, 0.78);
}

.appointment-contact a {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  column-gap: 14px;
  align-items: center;
  padding: 14px 12px;
  background: rgba(255, 253, 249, 0.66);
  border: 1px solid rgba(231, 222, 213, 0.62);
  color: var(--muted);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.appointment-contact a:hover,
.appointment-contact a:focus-visible {
  background: rgba(255, 253, 249, 0.92);
  border-color: rgba(180, 155, 119, 0.42);
  box-shadow: 0 14px 34px rgba(73, 57, 42, 0.08);
  transform: translateY(-2px);
}

.appointment-contact span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(180, 155, 119, 0.54);
  background: linear-gradient(135deg, rgba(203, 185, 156, 0.94), rgba(180, 155, 119, 0.84));
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 0;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 10px 22px rgba(143, 125, 99, 0.15);
}

.appointment-contact span::before {
  content: none !important;
  display: none !important;
}

.appointment-contact strong {
  display: block;
  margin-top: -8px;
  color: var(--sand-dark);
  font-family: "The Signature", "Segoe Print", "Bradley Hand ITC", "Lucida Handwriting", cursive;
  font-size: clamp(34px, 3.7vw, 52px);
  font-weight: 400;
  line-height: 0.9;
}

.appointment-contact em {
  display: block;
  margin-top: 6px;
  color: var(--sand);
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-style: normal;
}

.appointment-contact strong {
  margin: 0 0 2px;
  font-size: clamp(24px, 2vw, 31px);
  line-height: 0.98;
}

.appointment-contact em {
  margin-top: 0;
  color: #8f7d63;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  overflow-wrap: normal;
  word-break: normal;
  white-space: nowrap;
}

.appointment-contact a[href^="tel"] em,
.appointment-contact a[href*="wa.me"] em,
.appointment-contact a[href^="mailto"] em {
  white-space: nowrap;
  overflow-wrap: normal;
}

.appointment-contact a {
  grid-template-columns: 44px minmax(0, 1fr);
  column-gap: 20px;
  row-gap: 4px;
  align-items: center;
  padding: 16px 18px;
}

.appointment-contact span {
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: center;
  width: 40px;
  height: 40px;
}

.appointment-contact strong {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  margin: 0;
  font-size: clamp(25px, 1.9vw, 30px);
  line-height: 0.98;
}

.appointment-contact em {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  margin: 0;
  line-height: 1.3;
}

.appointment__card {
  padding: clamp(30px, 4.8vw, 62px);
  background: rgba(255, 253, 249, 0.82);
  border: 1px solid rgba(231, 222, 213, 0.85);
  box-shadow: var(--shadow);
}

.appointment__card h2 {
  max-width: 780px;
  font-family: Arial, sans-serif;
  font-size: clamp(25px, 2.4vw, 36px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.16;
}

form {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 13px;
}

input {
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

textarea {
  width: 100%;
  min-height: 112px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fff;
  color: var(--ink);
  font: inherit;
  resize: vertical;
}

.pretty-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 24px;
  row-gap: 18px;
}

.pretty-form .is-wide {
  grid-column: 1 / -1;
}

.date-field {
  position: relative;
}

.date-field::after {
  content: "";
  position: absolute;
  right: 16px;
  bottom: 17px;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(143, 125, 99, 0.64);
  background:
    linear-gradient(rgba(143, 125, 99, 0.64), rgba(143, 125, 99, 0.64)) 0 4px / 100% 1px no-repeat,
    linear-gradient(90deg, rgba(143, 125, 99, 0.64) 0 1px, transparent 1px 8px, rgba(143, 125, 99, 0.64) 8px 9px, transparent 9px 100%);
  pointer-events: none;
}

.pretty-form button {
  grid-column: 1 / span 1;
  width: fit-content;
  min-width: 190px;
  border-radius: 0;
}

.pretty-form input,
.pretty-form textarea {
  background: rgba(255, 255, 255, 0.68);
  border-color: rgba(143, 125, 99, 0.34);
}

.pretty-form input:focus,
.pretty-form textarea:focus {
  outline: 2px solid var(--sand-dark);
  outline-offset: 2px;
  border-color: var(--sand);
}

.date-picker {
  position: absolute;
  z-index: 90;
  width: min(340px, calc(100vw - 32px));
  padding: 18px;
  background:
    linear-gradient(145deg, rgba(255, 253, 249, 0.98), rgba(244, 231, 229, 0.92));
  border: 1px solid rgba(180, 155, 119, 0.34);
  box-shadow: 0 24px 70px rgba(73, 57, 42, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px) scale(0.985);
  transform-origin: top center;
  transition: opacity 180ms ease, transform 180ms ease;
}

.date-picker.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.date-picker__head {
  display: grid;
  grid-template-columns: 34px 1fr 34px;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.date-picker__month {
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  line-height: 1;
  text-align: center;
}

.date-picker__nav {
  min-height: 34px;
  width: 34px;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 253, 249, 0.78);
  color: var(--sand-dark);
  box-shadow: none;
}

.date-picker__week,
.date-picker__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.date-picker__week {
  margin-bottom: 8px;
  color: var(--sand-dark);
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.date-picker__day {
  min-height: 36px;
  padding: 0;
  border: 1px solid rgba(231, 222, 213, 0.8);
  border-radius: 0;
  background: rgba(255, 253, 249, 0.7);
  color: var(--ink);
  box-shadow: none;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.date-picker__day:hover,
.date-picker__day:focus-visible {
  border-color: rgba(180, 155, 119, 0.62);
  background: rgba(255, 253, 249, 0.96);
  color: var(--ink);
  transform: none;
}

.date-picker__day.is-muted {
  color: rgba(117, 111, 105, 0.44);
}

.date-picker__day.is-selected {
  border-color: rgba(180, 155, 119, 0.72);
  background: var(--button-gradient);
  color: #fff;
}

.date-picker__day.is-today {
  border-color: rgba(143, 125, 99, 0.72);
}

.privacy-check {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: -8px;
}

.privacy-check input {
  width: 16px;
  min-height: 16px;
  padding: 0;
  accent-color: var(--sand);
}

.privacy-title {
  margin-top: 2px;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 13px;
}

.faq {
  max-width: 880px;
}

.faq-page {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.faq-sidebar {
  position: sticky;
  top: 116px;
  display: grid;
  gap: 10px;
}

.faq-sidebar a {
  padding: 13px 16px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--sand-dark);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.faq-groups {
  display: grid;
  gap: 54px;
}

.faq-group {
  background: rgba(255, 253, 249, 0.62);
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

details {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  font-size: 25px;
}

.about-hero {
  width: var(--content);
  margin: 0 auto;
  padding: 90px 0;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
}

.about-hero img {
  width: 100%;
  max-height: 680px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.values-section > h2 {
  margin-bottom: 34px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.values-grid article {
  padding: 34px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.values-grid span {
  display: block;
  margin-bottom: 36px;
  color: var(--sand);
  font-family: Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
}

.partner-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.8fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.partner-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.partner-list span {
  padding: 14px 18px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.checklist-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: start;
}

.checklist-note {
  position: sticky;
  top: 116px;
}

.checklist-mini-timeline {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.checklist-mini-timeline span {
  position: relative;
  padding: 12px 14px 12px 34px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.7);
  color: var(--sand-dark);
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.checklist-mini-timeline span::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 8px;
  height: 8px;
  background: var(--sand);
  transform: translateY(-50%);
}

.checklist-card {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: clamp(26px, 5vw, 56px);
}

.checklist-group {
  padding: 0 0 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.checklist-group label {
  display: flex;
  grid-template-columns: none;
  gap: 13px;
  align-items: flex-start;
  padding: 12px 0;
  color: var(--ink);
  font-family: inherit;
  font-size: 20px;
  line-height: 1.35;
}

.checklist-group input {
  width: 18px;
  min-width: 18px;
  min-height: 18px;
  margin-top: 5px;
  padding: 0;
  accent-color: var(--sand);
}

.checklist-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.checklist-footer a {
  color: var(--sand-dark);
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 72px max(24px, calc((100vw - 1180px) / 2)) 0;
  background:
    linear-gradient(90deg, rgba(244, 231, 229, 0.9), rgba(251, 248, 244, 0.55)),
    #f4ece7;
  color: var(--muted);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 12px;
  background: linear-gradient(90deg, var(--sand), var(--blush-strong), var(--sand));
  opacity: 0.72;
}

.footer-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, 1.25fr) minmax(190px, 0.9fr) minmax(150px, 0.7fr) minmax(190px, 0.85fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: start;
  padding-bottom: 52px;
}

.footer-brand {
  max-width: 330px;
}

.footer-brand img {
  margin-bottom: 24px;
}

.footer-brand p {
  margin-bottom: 24px;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid rgba(180, 155, 119, 0.72);
  border-radius: 999px;
  background: var(--button-gradient);
  color: #fff;
  box-shadow: 0 12px 28px rgba(143, 125, 99, 0.18);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.site-footer a.footer-cta {
  display: inline-flex;
  color: #fff;
}

.footer-title {
  margin: 0 0 18px;
  color: var(--ink);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-contact address {
  margin-bottom: 18px;
  font-style: normal;
}

.site-footer a {
  display: block;
  color: var(--sand-dark);
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: #625c56;
  font-weight: 600;
}

.footer-social__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.footer-social__grid a {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--surface);
}

.footer-social__grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 260ms ease;
}

.footer-social__grid a:hover img {
  transform: scale(1.04);
  filter: saturate(1.04) brightness(1.025);
}

.footer-bottom {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid rgba(143, 125, 99, 0.24);
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 12px;
}

.footer-bottom a {
  display: inline;
}

@media (max-width: 1220px) and (min-width: 981px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) 172px minmax(0, 1fr) auto;
    gap: 18px;
  }

  .logo img {
    width: 132px;
  }

  .main-nav {
    gap: 10px;
    font-size: 10.5px;
    letter-spacing: 0.08em;
  }

  .header-cta {
    min-width: 170px;
    padding-inline: 18px;
    font-size: 12px;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .logo {
    grid-column: 1;
    grid-row: 1;
  }

  .header-cta {
    position: static;
    grid-column: 2;
    grid-row: 1;
  }

  .main-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .main-nav--left {
    grid-row: 2;
    justify-content: flex-start;
  }

  .main-nav--right {
    grid-row: 3;
    padding-right: 0;
  }

  .hero,
  .two-column,
  .video-feature,
  .soft-slider,
  .realbrides,
  .story-hero,
  .story-card--large,
  .page-hero--split,
  .contact-layout,
  .appointment-shell,
  .dress-detail,
  .faq-page,
  .about-hero,
  .partner-section,
  .checklist-layout,
  .blog-card--featured .blog-card__link,
  .blog-article__hero {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .faq-sidebar {
    position: static;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .dress-grid {
    grid-template-columns: 1fr 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }

  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .story-book {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .appointment-contact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-top: 0;
  }

  .blog-card--featured .blog-card__link div {
    padding: 28px;
  }

  .dress-detail__content {
    position: static;
  }

  .checklist-note {
    position: static;
  }

  .collection-heading {
    grid-template-columns: 1fr;
    justify-content: start;
    row-gap: 8px;
  }

  .collection-heading .script,
  .collection-heading h2,
  .collection-heading a {
    grid-column: 1;
    grid-row: auto;
  }

  .collection-heading a {
    justify-self: start;
    max-width: none;
  }
}

@media (max-width: 680px) {
  :root {
    --content: min(100vw - 28px, 1180px);
  }

  body {
    font-size: 17px;
  }

  .site-header {
    grid-template-columns: 1fr auto auto;
    padding: 14px;
    gap: 14px;
  }

  .logo img {
    width: 98px;
  }

  .header-cta {
    position: static;
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
    min-height: 40px;
    padding-inline: 12px;
    font-size: 11px;
  }

  .main-nav {
    display: none;
  }

  .hero {
    min-height: 620px;
    padding-block: 34px;
  }

  .hero__copy {
    padding: 26px 22px;
  }

  .hero__media img {
    object-position: 62% center;
  }

  .mobile-menu {
    display: block;
    grid-column: 3;
    grid-row: 1;
  }

  .quick-overlay {
    right: 14px;
    bottom: 14px;
  }

  .quick-overlay__panel {
    right: -1px;
    bottom: 60px;
    padding: 20px;
  }

  .quick-overlay__grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding-top: 52px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-bottom: 34px;
  }

  .footer-brand {
    max-width: none;
  }

  .footer-social__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-bottom {
    display: grid;
  }

  .gallery-lightbox {
    padding: 18px;
  }

  .gallery-lightbox__caption {
    margin-inline: 42px;
  }

  .gallery-lightbox__close {
    top: -10px;
    right: -10px;
  }

  .gallery-lightbox__nav--prev {
    left: 8px;
  }

  .gallery-lightbox__nav--next {
    right: 8px;
  }

  .appointment {
    padding-inline: 14px;
  }

  .appointment-contact,
  .pretty-form {
    grid-template-columns: 1fr;
  }

  .appointment-contact a {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .appointment-contact strong {
    font-size: 28px;
  }

  .hero {
    padding-top: 42px;
  }

  .hero__actions,
  .button {
    width: 100%;
  }

  .editorial-strip {
    grid-template-columns: 1fr;
  }

  .dress-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .story-book {
    grid-template-columns: 1fr;
  }

  .story-card--large img {
    min-height: 320px;
  }

  .story-card dl {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding-top: 56px;
  }

  .page-hero--split img,
  .blog-card img,
  .blog-card--featured img {
    height: 260px;
    min-height: 0;
  }

  .dress-detail {
    padding-top: 54px;
  }

  .faq-sidebar {
    grid-template-columns: 1fr 1fr;
  }

  .checklist-footer {
    display: grid;
  }

  .dress-detail__thumbs {
    grid-template-columns: repeat(2, 1fr);
  }

  .instagram-grid {
    gap: 10px;
  }

  .editorial-strip img {
    height: 240px;
  }

  .video-feature__media {
    width: min(100%, 300px);
  }

  .soft-slider__stage {
    min-height: 330px;
  }

  .soft-slide.is-main {
    left: 0;
    width: 62%;
  }

  .soft-slide:nth-child(2) {
    right: 0;
    width: 44%;
  }

  .soft-slide:nth-child(3) {
    right: 8%;
    width: 40%;
  }

  .section-heading,
  .site-footer {
    display: grid;
    grid-template-columns: 1fr;
  }
}

/* WordPress/Elementor bridge: keep WP menus editable while matching the static HTML preview. */
.brk-homepage .main-nav ul {
  display: flex;
  align-items: center;
  gap: inherit;
  margin: 0;
  padding: 0;
  list-style: none;
}

.brk-homepage .main-nav li {
  margin: 0;
  padding: 0;
}

.brk-homepage .main-nav a {
  display: inline-flex;
}

.brk-homepage .elementor-widget-container {
  overflow: visible;
}

.brk-homepage .appointment-contact small {
  display: block;
  grid-column: 2;
  color: rgba(128, 110, 88, 0.86);
  font: 700 0.78rem/1.55 var(--font-sans);
  word-break: break-word;
}

.brk-homepage .appointment-contact a[href^="tel"] small,
.brk-homepage .appointment-contact a[href*="wa.me"] small,
.brk-homepage .appointment-contact a[href^="mailto"] small {
  font-family: var(--font-sans);
}

.brk-homepage .pretty-form .brk-demo-form__check,
.brk-homepage .pretty-form button {
  grid-column: 1 / -1;
}

.brk-homepage .brk-footer nav ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.brk-homepage .site-footer {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 72px max(24px, calc((100vw - 1180px) / 2)) 0;
}

.brk-homepage .footer-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, 1.25fr) minmax(190px, 0.9fr) minmax(150px, 0.7fr) minmax(190px, 0.85fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: start;
  padding-bottom: 52px;
}

.brk-homepage .footer-brand {
  max-width: 330px;
}

.brk-homepage .footer-brand img {
  width: 150px;
  height: auto;
  margin-bottom: 24px;
  filter: contrast(1.18) saturate(0);
  mix-blend-mode: normal;
  opacity: 1;
}

.brk-homepage .footer-brand p {
  margin: 0 0 24px;
}

.brk-homepage .footer-contact,
.brk-homepage .footer-links,
.brk-homepage .footer-social {
  min-width: 0;
}

.brk-homepage .footer-links {
  display: grid;
  gap: 8px;
}

.brk-homepage .footer-title {
  margin: 0 0 18px;
}

.brk-homepage .footer-social__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.brk-homepage .footer-social__grid a {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.brk-homepage .footer-social__grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.brk-homepage .footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}

.brk-homepage .quick-overlay__panel {
  display: grid;
  gap: 12px;
}

.brk-homepage .quick-overlay__panel a {
  color: var(--ink);
  font: 800 0.78rem/1.25 var(--font-sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
}

@media (max-width: 1024px) {
  .brk-homepage .main-nav ul {
    display: none;
  }
}

.brk-homepage .header-cta,
.brk-homepage .button {
  min-height: 46px;
  padding: 0 24px;
  border: 1px solid rgba(180, 155, 119, 0.72);
  border-radius: 999px;
  background: var(--button-gradient);
  color: #fff;
  box-shadow: 0 12px 28px rgba(143, 125, 99, 0.18);
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1;
  text-decoration: none;
}

.brk-homepage .header-cta {
  grid-column: 4;
  min-width: 184px;
  padding-inline: 22px;
  justify-self: end;
}

.brk-homepage .header-cta:hover,
.brk-homepage .button:hover,
.brk-homepage .footer-cta:hover {
  border-color: rgba(168, 137, 96, 0.85);
  background: var(--button-gradient-hover);
  box-shadow: 0 16px 34px rgba(143, 125, 99, 0.24);
  color: #fff;
  transform: translateY(-1px);
}

.brk-homepage .button--ghost {
  background: rgba(255, 253, 249, 0.74);
  color: var(--sand-dark);
  box-shadow: none;
}

.brk-homepage .brk-mega-menu {
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  z-index: 60;
  width: min(940px, calc(100vw - 40px));
  display: grid;
  grid-template-columns: minmax(210px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(18px, 2.4vw, 30px);
  padding: 26px 28px 28px;
  border: 1px solid rgba(180, 155, 119, 0.28);
  background: rgba(255, 253, 249, 0.96);
  box-shadow: 0 28px 72px rgba(62, 54, 45, 0.16);
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.brk-homepage .brk-mega-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 18px;
}

.brk-homepage .site-header.is-mega-open .brk-mega-menu,
.brk-homepage .brk-mega-menu:focus-within {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.brk-homepage .brk-mega-menu__intro {
  display: grid;
  align-content: start;
  gap: 10px;
}

.brk-homepage .brk-mega-menu__eyebrow {
  margin: 0;
  color: var(--sand-dark);
  font: 800 0.68rem/1 var(--font-sans);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brk-homepage .brk-mega-menu__title {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.34rem, 1.72vw, 1.9rem);
  font-weight: 500;
  line-height: 1.02;
}

.brk-homepage .brk-mega-menu__intro p:last-child {
  margin: 0;
  color: rgba(36, 33, 31, 0.72);
  font-size: 0.88rem;
  line-height: 1.5;
}

.brk-homepage .brk-mega-menu__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.brk-homepage .brk-mega-menu__card {
  min-width: 0;
  display: grid;
  grid-template-rows: 82px auto;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(180, 155, 119, 0.2);
  background: linear-gradient(145deg, rgba(255, 253, 249, 0.72), rgba(246, 238, 238, 0.42));
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.brk-homepage .brk-mega-menu__card:hover,
.brk-homepage .brk-mega-menu__card:focus-visible {
  border-color: rgba(180, 155, 119, 0.58);
  background: rgba(255, 253, 249, 0.94);
  transform: translateY(-2px);
}

.brk-homepage .brk-mega-menu__card img {
  width: 100%;
  height: 82px;
  object-fit: cover;
  border-radius: 0;
  filter: saturate(0.94) brightness(1.04);
}

.brk-homepage .brk-mega-menu__card span {
  display: grid;
  gap: 5px;
}

.brk-homepage .brk-mega-menu__card strong {
  font-family: var(--font-serif);
  font-size: clamp(0.98rem, 1.12vw, 1.12rem);
  font-weight: 500;
  line-height: 1.08;
  overflow-wrap: normal;
}

.brk-homepage .brk-mega-menu__card em {
  color: rgba(36, 33, 31, 0.68);
  font: 700 0.64rem/1.38 var(--font-sans);
  font-style: normal;
  letter-spacing: 0.02em;
  overflow-wrap: normal;
}

.brk-homepage .brk-mega-menu__empty {
  grid-column: 1 / -1;
  padding: 22px;
  border: 1px dashed rgba(180, 155, 119, 0.38);
  color: rgba(36, 33, 31, 0.7);
  font: 700 0.82rem/1.4 var(--font-sans);
}

@media (max-width: 1024px) {
  .brk-homepage .brk-mega-menu {
    display: none;
  }
}

@media (max-width: 1180px) {
  .brk-homepage .brk-mega-menu {
    grid-template-columns: 1fr;
    width: min(680px, calc(100vw - 40px));
  }

  .brk-homepage .brk-mega-menu__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.brk-homepage .quick-overlay__panel {
  display: block;
  gap: 0;
}

.brk-homepage .quick-overlay__head {
  margin-right: 38px;
  margin-bottom: 18px;
}

.brk-homepage .quick-overlay__head .script {
  margin: 0 0 2px;
  font-size: 36px;
  line-height: 0.9;
}

.brk-homepage .quick-overlay__title {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.05;
}

.brk-homepage .quick-overlay__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.brk-homepage .quick-overlay__grid a {
  display: grid;
  gap: 6px;
  min-height: 132px;
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--muted);
  font: inherit;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: none;
}

.brk-homepage .quick-overlay__grid a:hover,
.brk-homepage .quick-overlay__grid a:focus-visible {
  border-color: rgba(180, 155, 119, 0.5);
  background: rgba(255, 253, 249, 0.92);
  transform: translateY(-1px);
}

.brk-homepage .quick-overlay__grid span {
  color: var(--sand-dark);
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.brk-homepage .quick-overlay__grid strong {
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(19px, 1.6vw, 22px);
  font-weight: 500;
  line-height: 1.1;
  overflow-wrap: normal;
  hyphens: auto;
}

.brk-homepage .quick-overlay__grid em {
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.45;
  overflow-wrap: normal;
}

.brk-homepage .brk-form-slot-note {
  display: grid;
  gap: 8px;
  margin-top: 26px;
  padding: 22px;
  border: 1px dashed rgba(180, 155, 119, 0.52);
  background: rgba(255, 253, 249, 0.74);
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 13px;
  line-height: 1.45;
}

.brk-homepage .brk-form-slot-note strong {
  color: var(--sand-dark);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@media (max-width: 560px) {
  .brk-homepage .quick-overlay {
    right: 16px;
    bottom: 16px;
  }

  .brk-homepage .quick-overlay__panel {
    width: calc(100vw - 32px);
    padding: 24px;
  }

  .brk-homepage .quick-overlay__grid {
    grid-template-columns: 1fr;
  }
}

.brk-homepage .site-header {
  grid-template-columns: max-content 142px max-content max-content;
  justify-content: center;
  gap: clamp(14px, 1.45vw, 22px);
  padding-inline: max(22px, calc((100vw - 1180px) / 2));
}

.brk-homepage .logo img {
  width: 142px;
}

.brk-homepage .main-nav {
  gap: clamp(8px, 0.9vw, 13px);
  font-size: 9.5px;
  letter-spacing: 0.065em;
}

.brk-homepage .main-nav ul {
  flex-wrap: nowrap;
}

.brk-homepage .main-nav li,
.brk-homepage .main-nav a {
  white-space: nowrap;
}

.brk-homepage .main-nav--right {
  justify-self: start;
  max-width: 100%;
}

.brk-homepage .main-nav--right ul {
  justify-content: flex-start;
}

.brk-homepage .header-cta {
  grid-column: 4;
  width: auto;
  min-width: 0;
  max-width: none;
  min-height: 42px;
  padding-inline: 14px;
  font-size: 11px;
}

.brk-homepage .site-header.is-scrolled {
  grid-template-columns: max-content 124px max-content max-content;
}

.brk-homepage .site-header.is-scrolled .logo img {
  width: 112px;
}

@media (max-width: 1120px) {
  .brk-homepage .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .brk-homepage .main-nav {
    display: none;
  }

  .brk-homepage .logo {
    grid-column: 1;
    justify-self: start;
  }

  .brk-homepage .header-cta {
    grid-column: 3;
  }
}

.brk-homepage .brk-mega-menu {
  left: 0;
  right: 0;
  top: 100%;
  width: 100%;
  max-height: calc(100vh - 86px);
  grid-template-columns: minmax(190px, 260px) repeat(3, minmax(0, 220px));
  justify-content: center;
  align-items: stretch;
  gap: 18px;
  padding: 20px max(24px, calc((100vw - 1180px) / 2)) 22px;
  border-right: 0;
  border-left: 0;
  background: rgba(255, 253, 249, 0.982);
  overflow: auto;
  transform: translateY(-8px);
}

.brk-homepage .site-header.is-mega-open .brk-mega-menu,
.brk-homepage .brk-mega-menu:focus-within {
  transform: translateY(0);
}

.brk-homepage .brk-mega-menu__intro {
  min-width: 0;
  padding-right: 8px;
}

.brk-homepage .brk-mega-menu__title {
  font-size: clamp(1.18rem, 1.35vw, 1.55rem);
}

.brk-homepage .brk-mega-menu__intro p:last-child {
  font-size: 0.78rem;
  line-height: 1.45;
}

.brk-homepage .brk-mega-menu__grid {
  display: contents;
}

.brk-homepage .brk-mega-menu__card {
  grid-template-rows: 74px auto;
  gap: 8px;
  padding: 8px;
}

.brk-homepage .brk-mega-menu__card img {
  height: 74px;
}

.brk-homepage .brk-mega-menu__card strong {
  font-size: 0.98rem;
}

.brk-homepage .brk-mega-menu__card em {
  font-size: 0.6rem;
  line-height: 1.32;
}

@media (max-width: 1180px) {
  .brk-homepage .brk-mega-menu {
    grid-template-columns: minmax(190px, 260px) repeat(3, minmax(0, 1fr));
    width: 100%;
  }
}

@media (max-width: 980px) {
  .brk-homepage .brk-mega-menu {
    display: none;
  }
}

.brk-homepage .intro.section {
  width: min(1180px, calc(100vw - 40px));
  margin: 0 auto;
  padding: clamp(64px, 8vw, 96px) 0;
}

.brk-homepage .intro > .script {
  position: static;
  display: block;
  margin: 0 0 8px;
  color: var(--sand-dark);
  font-family: "The Signature", "Segoe Print", "Bradley Hand ITC", "Lucida Handwriting", cursive;
  font-size: clamp(46px, 6.8vw, 88px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.78;
  transform: none;
}

.brk-homepage .intro > .two-column {
  display: grid;
  grid-template-columns: minmax(430px, 0.92fr) minmax(360px, 0.78fr);
  gap: clamp(72px, 8vw, 118px);
  align-items: start;
}

.brk-homepage .intro h2 {
  margin: 0;
  max-width: 560px;
  font-family: var(--font-serif);
  font-size: clamp(46px, 5vw, 70px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.96;
  overflow-wrap: normal;
  hyphens: manual;
}

.brk-homepage .intro .brk-text-flow {
  display: block;
  max-width: 430px;
  min-width: 0;
  padding-top: 12px;
  justify-self: end;
}

.brk-homepage .intro .brk-text-flow p {
  margin: 0 0 18px;
}

@media (max-width: 920px) {
  .brk-homepage .intro > .two-column {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .brk-homepage .intro .brk-text-flow {
    max-width: 620px;
    justify-self: start;
  }
}

.brk-homepage .brk-reasons > .script {
  display: block;
  margin: 0 auto 14px;
  max-width: 760px;
  text-align: center;
  line-height: 0.84;
}

.brk-homepage .brk-reasons > h2 {
  max-width: 900px;
  margin: 0 auto clamp(42px, 5vw, 64px);
  text-align: center;
  line-height: 1.02;
}

.brk-homepage .brk-reasons .service-grid {
  margin-top: 0;
}

@media (max-width: 720px) {
  .brk-homepage .brk-reasons > h2 {
    margin-bottom: 34px;
  }
}

.brk-homepage .collection-heading {
  text-align: left;
}

.brk-homepage .collection-heading a {
  display: inline-flex;
  justify-content: flex-start;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: var(--sand-dark);
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
  transform: none;
}

.brk-homepage .collection-heading a:hover,
.brk-homepage .collection-heading a:focus-visible {
  background: transparent;
  box-shadow: none;
  color: var(--ink);
  transform: none;
}

.brk-homepage .brk-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.brk-homepage .brk-blog-card {
  min-width: 0;
  padding: clamp(22px, 2.4vw, 30px);
}

.brk-homepage .brk-blog-card h3 {
  margin: 0 0 14px;
  max-width: 100%;
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.15vw, 32px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.02;
  overflow-wrap: normal;
  hyphens: auto;
}

.brk-homepage .brk-blog-card p {
  margin: 0 0 20px;
  overflow-wrap: normal;
}

.brk-homepage .brk-blog-card a {
  display: inline-flex;
  max-width: 100%;
  overflow-wrap: normal;
}

@media (max-width: 920px) {
  .brk-homepage .brk-blog-grid {
    grid-template-columns: 1fr;
  }
}

