:root {
  --color-ivory: #fff8f2;
  --color-cream: #f7efe8;
  --color-beige: #f2e5dc;
  --color-blush: #d9a6a1;
  --color-blush-soft: #f1d8d4;
  --color-rose-deep: #7d4e47;
  --color-espresso: #3a241f;
  --color-brown-soft: #6f5a50;
  --color-gold: #a88545;
  --color-white: #ffffff;
  --color-card: #fbf3ec;
  --color-border: #e8d8cf;
  --color-shadow: rgba(58, 36, 31, 0.12);
  --color-primary: #6b3f35;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Plus Jakarta Sans", Arial, sans-serif;
  --container: 1120px;
  --radius: 8px;
  --radius-small: 8px;
  --section-padding: clamp(3.5rem, 7vw, 6.5rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(180deg, var(--color-ivory), var(--color-cream));
  color: var(--color-espresso);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
}

body.nav-open {
  overflow: hidden;
}

img,
iframe {
  max-width: 100%;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(185, 152, 88, 0.55);
  outline-offset: 4px;
}

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

h1,
h2,
h3 {
  color: var(--color-espresso);
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.98;
}

h1 {
  max-width: 14ch;
  margin-bottom: 1.25rem;
  font-size: 2.55rem;
}

h2 {
  margin-bottom: 1rem;
  font-size: 2.35rem;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.45rem;
}

p {
  max-width: 42rem;
  color: var(--color-brown-soft);
}

address {
  color: var(--color-brown-soft);
  font-style: normal;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1000;
  padding: 0.8rem 1rem;
  transform: translateY(-140%);
  border-radius: 999px;
  background: var(--color-espresso);
  color: var(--color-white);
  font-weight: 700;
  transition: transform 180ms ease;
}

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

.section {
  padding-block: var(--section-padding);
  scroll-margin-top: 6rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(255, 248, 242, 0.9);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--color-border);
  box-shadow: 0 14px 38px rgba(61, 43, 35, 0.08);
}

.header-inner {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  color: var(--color-espresso);
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1;
}

.site-nav {
  position: fixed;
  inset: 74px 1rem auto;
  display: grid;
  gap: 0.85rem;
  padding: 1rem;
  transform: translateY(-1rem);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-small);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 20px 60px var(--color-shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.site-nav a {
  padding: 0.65rem 0.75rem;
  border-radius: 999px;
  color: var(--color-brown-soft);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a:not(.button):hover {
  background: rgba(217, 166, 161, 0.22);
  color: var(--color-espresso);
}

.nav-toggle {
  display: inline-grid;
  width: 2.75rem;
  height: 2.75rem;
  place-content: center;
  gap: 0.28rem;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-espresso);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border: 1px solid var(--color-primary);
  border-radius: var(--radius);
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.1;
  box-shadow: 0 16px 34px rgba(58, 36, 31, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--color-espresso);
  box-shadow: 0 18px 40px rgba(58, 36, 31, 0.22);
}

.button-glow {
  position: relative;
  isolation: isolate;
  flex-direction: column;
  gap: 0.18rem;
  min-height: 3.45rem;
  overflow: hidden;
  border-color: rgba(168, 133, 69, 0.62);
  background:
    linear-gradient(135deg, var(--color-rose-deep), var(--color-primary) 54%, #8f6735);
  color: var(--color-white);
  box-shadow:
    0 0 0 1px rgba(168, 133, 69, 0.2),
    0 18px 42px rgba(107, 63, 53, 0.22),
    0 0 24px rgba(168, 133, 69, 0.36);
  animation: bridalGlow 2.8s ease-in-out infinite;
}

.button-glow::before {
  position: absolute;
  inset: -45% auto -45% -40%;
  z-index: -1;
  width: 42%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  content: "";
  animation: bridalShine 3.4s ease-in-out infinite;
}

.button-glow span,
.button-glow small {
  position: relative;
}

.button-glow small {
  max-width: 16rem;
  color: rgba(255, 248, 242, 0.86);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.button-glow:hover {
  background:
    linear-gradient(135deg, var(--color-espresso), var(--color-primary) 50%, var(--color-gold));
  box-shadow:
    0 0 0 1px rgba(168, 133, 69, 0.28),
    0 20px 48px rgba(58, 36, 31, 0.28),
    0 0 34px rgba(168, 133, 69, 0.44);
}

.button-secondary {
  border-color: rgba(58, 36, 31, 0.28);
  background: rgba(255, 255, 255, 0.72);
  color: var(--color-espresso);
  box-shadow: none;
}

.button-small {
  min-height: 2.75rem;
  padding: 0.7rem 1.05rem;
  color: var(--color-white);
}

.site-nav a.button {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 12px 28px rgba(58, 36, 31, 0.18);
}

.site-nav a.button:hover {
  background: var(--color-espresso);
  color: var(--color-white);
}

.hero {
  position: relative;
  min-height: auto;
  display: grid;
  align-items: center;
  padding-block: 3.5rem 3.75rem;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 7.5rem;
  background: linear-gradient(180deg, transparent, rgba(242, 229, 220, 0.55));
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(1.5rem, 5vw, 3.25rem);
}

.hero-copy {
  max-width: 42rem;
}

.hero-text {
  max-width: 38rem;
  margin-bottom: 1.75rem;
  font-size: 1.08rem;
}

.hero-actions,
.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

@keyframes bridalGlow {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(168, 133, 69, 0.2),
      0 18px 42px rgba(107, 63, 53, 0.22),
      0 0 18px rgba(168, 133, 69, 0.3);
  }

  50% {
    box-shadow:
      0 0 0 1px rgba(168, 133, 69, 0.3),
      0 20px 48px rgba(107, 63, 53, 0.28),
      0 0 34px rgba(168, 133, 69, 0.5);
  }
}

@keyframes bridalShine {
  0%,
  45% {
    left: -45%;
    opacity: 0;
  }

  58% {
    opacity: 0.9;
  }

  100% {
    left: 118%;
    opacity: 0;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  color: var(--color-rose-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2.4rem;
  height: 1px;
  background: var(--color-gold);
  content: "";
}

.hero-visual {
  position: relative;
  min-height: 11.5rem;
  isolation: isolate;
}

.hero-visual::before {
  position: absolute;
  inset: 8% 3% 7% 10%;
  z-index: -1;
  border-radius: 48% 52% 42% 58%;
  background:
    linear-gradient(145deg, rgba(241, 216, 212, 0.62), rgba(242, 229, 220, 0.7)),
    radial-gradient(circle at 80% 20%, rgba(185, 152, 88, 0.28), transparent 12rem);
  content: "";
}

.visual-card {
  position: absolute;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 249, 0.82);
  border-radius: 48% 48% 8px 8px;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.12), rgba(61, 43, 35, 0.16)),
    linear-gradient(135deg, #f1d8d4, #d9a6a1 52%, #f2e5dc);
  box-shadow: 0 30px 70px var(--color-shadow);
}

.visual-card::before,
.visual-card::after {
  position: absolute;
  content: "";
}

.visual-card::before {
  inset: 14% 12% auto auto;
  width: 30%;
  height: 50%;
  border: 1px solid rgba(255, 253, 249, 0.45);
  border-radius: 999px 999px 8px 8px;
}

.visual-card::after {
  inset: auto auto 18% 12%;
  width: 52%;
  height: 28%;
  border-radius: 999px 999px 12px 12px;
  background: rgba(255, 253, 249, 0.2);
}

.visual-card span {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 1.1rem;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  text-shadow: 0 2px 12px rgba(61, 43, 35, 0.24);
}

.visual-card-large {
  inset: 0 8% 10% 10%;
}

.visual-card-small {
  right: 0;
  bottom: 0;
  width: 40%;
  min-width: 9rem;
  aspect-ratio: 0.76;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.08), rgba(61, 43, 35, 0.12)),
    linear-gradient(135deg, #fff8f2, #a88545 58%, #d9a6a1);
}

.about-section,
.why-section {
  background: rgba(242, 229, 220, 0.68);
}

.split-layout {
  display: grid;
  gap: 2rem;
}

.prose {
  max-width: 42rem;
}

.prose p:last-child,
.contact-list p:last-child,
.site-footer p:last-child {
  margin-bottom: 0;
}

.section-heading {
  max-width: 45rem;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.service-grid,
.why-grid {
  display: grid;
  gap: 1.25rem;
}

.service-card,
.why-item,
.contact-card,
.map-card,
.review-card,
.feature-card,
.wedding-package,
.wedding-benefit-card,
.wedding-package-cta,
.faq-item {
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 50px rgba(58, 36, 31, 0.08);
}

.service-card {
  position: relative;
  min-height: 15rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border-radius: var(--radius-small);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(168, 133, 69, 0.46);
  box-shadow: 0 24px 58px rgba(58, 36, 31, 0.13);
}

.service-card h3,
.why-item h3 {
  line-height: 1.05;
}

.service-number {
  display: inline-flex;
  margin-bottom: 2.5rem;
  color: var(--color-gold);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
}

.service-card p {
  margin-bottom: 0;
}

.service-card-cta {
  background: var(--color-primary);
}

.service-card-cta h3,
.service-card-cta .service-number,
.service-card-cta p,
.service-card-cta a {
  color: var(--color-white);
}

.service-card-cta a {
  display: inline-flex;
  margin-top: 1.25rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.28rem;
}

.why-grid {
  counter-reset: why;
}

.why-item {
  position: relative;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border-radius: var(--radius-small);
}

.why-item::before {
  display: inline-grid;
  width: 2.3rem;
  height: 2.3rem;
  place-items: center;
  margin-bottom: 1.25rem;
  counter-increment: why;
  content: counter(why);
  border: 1px solid rgba(185, 152, 88, 0.42);
  border-radius: 50%;
  color: var(--color-rose-deep);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
}

.gallery-section {
  background: linear-gradient(180deg, rgba(255, 248, 242, 0.96), rgba(247, 239, 232, 0.96));
}

.gallery-carousel {
  display: grid;
  gap: 1rem;
}

.gallery-track {
  display: grid;
  grid-auto-columns: minmax(16rem, 82%);
  grid-auto-flow: column;
  gap: 1.25rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 0.15rem 0 0.85rem;
  scroll-padding-inline: 0;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-item {
  position: relative;
  scroll-snap-align: start;
  min-height: 17rem;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 249, 0.72);
  border-radius: var(--radius-small);
  background:
    linear-gradient(180deg, transparent 44%, rgba(61, 43, 35, 0.42)),
    linear-gradient(135deg, var(--gallery-a), var(--gallery-b) 55%, var(--gallery-c));
  box-shadow: 0 22px 56px rgba(61, 43, 35, 0.1);
}

.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.12) saturate(0.82) contrast(0.96);
}

.gallery-item::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 38%, rgba(61, 43, 35, 0.58)),
    linear-gradient(135deg, rgba(239, 212, 207, 0.12), rgba(185, 152, 88, 0.16));
  content: "";
}

.gallery-item::after {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 34%;
  height: 58%;
  border: 1px solid rgba(255, 253, 249, 0.34);
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.18), rgba(255, 253, 249, 0.05));
  content: "";
  z-index: 2;
}

.gallery-item figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 3;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
}

.gallery-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.gallery-button {
  display: inline-grid;
  width: 2.75rem;
  height: 2.75rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(61, 43, 35, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-espresso);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(61, 43, 35, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.gallery-button:hover {
  transform: translateY(-2px);
  background: var(--color-white);
  box-shadow: 0 18px 38px rgba(61, 43, 35, 0.13);
}

.gallery-dots {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.gallery-dot {
  width: 0.56rem;
  height: 0.56rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(61, 43, 35, 0.22);
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease, width 180ms ease;
}

.gallery-dot.is-active {
  width: 1.45rem;
  background: var(--color-primary);
}

.gallery-credit {
  margin: 0;
  color: var(--color-brown-soft);
  font-size: 0.82rem;
}

.gallery-credit a {
  color: var(--color-espresso);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.18rem;
}

.gallery-one {
  --gallery-a: #f3d9d2;
  --gallery-b: #c98f8f;
  --gallery-c: #eadccd;
}

.gallery-two {
  --gallery-a: #f9f0e6;
  --gallery-b: #c8ad83;
  --gallery-c: #d8b2ac;
}

.gallery-three {
  --gallery-a: #e8c9c4;
  --gallery-b: #9f6868;
  --gallery-c: #eadccd;
}

.gallery-four {
  --gallery-a: #fff7ee;
  --gallery-b: #d9c6ad;
  --gallery-c: #c98f8f;
}

.gallery-five {
  --gallery-a: #efd4cf;
  --gallery-b: #b99858;
  --gallery-c: #8d7060;
}

.gallery-six {
  --gallery-a: #f6eadf;
  --gallery-b: #b97c7a;
  --gallery-c: #eadccd;
}

.location-grid {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.location-copy address {
  max-width: 36rem;
  margin-bottom: 1.5rem;
  font-size: 1.03rem;
}

.map-card {
  overflow: hidden;
  min-height: 22rem;
  border-radius: var(--radius);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 22rem;
  border: 0;
}

.review-section {
  padding-top: 0;
}

.feature-section {
  padding-top: 0;
}

.kebaya-section,
.tourist-section {
  background: rgba(242, 229, 220, 0.68);
}

.area-section {
  background: rgba(255, 248, 242, 0.96);
}

.feature-card,
.review-card {
  display: grid;
  gap: 1.5rem;
  padding: clamp(1.25rem, 4vw, 1.75rem);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(242, 229, 220, 0.56)),
    var(--color-white);
}

.feature-card h2,
.review-card h2 {
  max-width: 12ch;
}

.feature-content,
.review-content {
  max-width: 42rem;
}

.feature-content .button {
  margin-top: 0.6rem;
}

.feature-note {
  margin-block: 1rem;
  padding-block: 1rem;
  border-block: 1px solid rgba(168, 133, 69, 0.2);
}

.feature-note h3 {
  margin-bottom: 0.45rem;
  font-size: 1.32rem;
}

.feature-note p {
  margin-bottom: 0;
}

.wedding-package-section {
  padding-top: 0;
  background:
    linear-gradient(180deg, rgba(255, 248, 242, 0), rgba(242, 229, 220, 0.72) 42%, rgba(255, 248, 242, 0.94));
}

.wedding-package {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: clamp(1.25rem, 3vw, 1.75rem);
  padding: clamp(1.25rem, 4vw, 2rem);
  border-color: rgba(168, 133, 69, 0.3);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at top right, rgba(217, 166, 161, 0.34), transparent 34rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(242, 229, 220, 0.72)),
    var(--color-white);
}

.wedding-package::before {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: clamp(5rem, 16vw, 10rem);
  height: clamp(5rem, 16vw, 10rem);
  border: 1px solid rgba(168, 133, 69, 0.24);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.wedding-package-intro {
  position: relative;
  display: grid;
  gap: 1.25rem;
}

.wedding-package-intro h2 {
  max-width: 13ch;
}

.wedding-package-copy {
  display: grid;
  gap: 0.85rem;
  max-width: 44rem;
}

.wedding-package-copy p,
.wedding-package-cta p,
.wedding-benefit-card p {
  margin-bottom: 0;
}

.wedding-benefits {
  position: relative;
  display: grid;
  gap: 1rem;
}

.wedding-benefit-card {
  padding: clamp(1.1rem, 3vw, 1.45rem);
  border-color: rgba(168, 133, 69, 0.22);
  border-radius: var(--radius-small);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(251, 243, 236, 0.92)),
    var(--color-card);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.wedding-benefit-card:hover {
  transform: translateY(-3px);
  border-color: rgba(168, 133, 69, 0.42);
  box-shadow: 0 22px 56px rgba(58, 36, 31, 0.12);
}

.benefit-mark {
  display: inline-flex;
  margin-bottom: 0.85rem;
  color: var(--color-gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.wedding-benefit-card h3 {
  font-size: 1.35rem;
}

.wedding-package-cta {
  position: relative;
  display: grid;
  gap: 1rem;
  padding: clamp(1.15rem, 3vw, 1.5rem);
  border-color: rgba(125, 78, 71, 0.22);
  border-radius: var(--radius-small);
  background:
    linear-gradient(135deg, rgba(125, 78, 71, 0.1), rgba(255, 255, 255, 0.86)),
    var(--color-white);
}

.wedding-package-cta h3 {
  margin-bottom: 0.5rem;
}

.wedding-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  width: 100%;
}

.wedding-actions .button-secondary {
  background: rgba(255, 255, 255, 0.72);
}

.review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.faq-section {
  background: rgba(255, 248, 242, 0.96);
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border-radius: var(--radius-small);
}

.faq-item h3 {
  margin-bottom: 0.55rem;
  font-size: 1.35rem;
}

.faq-item p {
  margin-bottom: 0;
}

.contact-section {
  padding-top: var(--section-padding);
}

.contact-card {
  display: grid;
  gap: 1.5rem;
  padding: clamp(1.25rem, 4vw, 1.75rem);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(241, 216, 212, 0.42)),
    var(--color-white);
}

.contact-card h2 {
  max-width: 11ch;
}

.contact-list {
  display: grid;
  gap: 1.25rem;
}

.contact-list div {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}

.contact-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-list span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--color-rose-deep);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-list a {
  color: var(--color-espresso);
  font-weight: 800;
}

.small-note {
  font-size: 0.9rem;
}

.site-footer {
  padding-block: 2.25rem;
  border-top: 1px solid var(--color-border);
  background: var(--color-espresso);
  color: var(--color-white);
}

.site-footer p,
.site-footer address,
.site-footer a {
  color: rgba(255, 253, 249, 0.76);
}

.site-footer .footer-brand {
  margin-bottom: 0.8rem;
  color: var(--color-white);
}

.built-by {
  margin-top: 0.45rem;
}

.built-by a {
  color: var(--color-white);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.22rem;
}

.footer-grid {
  display: grid;
  gap: 1.35rem;
}

@media (max-width: 520px) {
  .hero-actions .button,
  .location-actions .button,
  .wedding-actions .button,
  .review-actions .button,
  .contact-card .button {
    width: 100%;
    justify-content: center;
  }

  .wedding-actions {
    align-items: stretch;
  }
}

@media (min-width: 640px) {
  h1 {
    font-size: 3.5rem;
  }

  h2 {
    font-size: 3.1rem;
  }

  h3 {
    font-size: 1.65rem;
  }

  .hero-text {
    font-size: 1.16rem;
  }

  .visual-card span {
    font-size: 2rem;
  }

  .hero-visual {
    min-height: 27rem;
  }

  .service-grid,
  .why-grid,
  .wedding-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .gallery-track {
    grid-auto-columns: minmax(18rem, calc(50% - 0.5rem));
  }

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

  .contact-list div:last-child {
    grid-column: 1 / -1;
  }
}

@media (min-width: 860px) {
  h1 {
    font-size: 4.25rem;
  }

  h2 {
    font-size: 4rem;
  }

  h3 {
    font-size: 1.85rem;
  }

  .hero-text {
    font-size: 1.22rem;
  }

  .visual-card span {
    font-size: 2.35rem;
  }

  .hero {
    min-height: calc(82vh - 74px);
    min-height: calc(82svh - 74px);
    padding-block: 3rem 3.25rem;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0;
    transform: none;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding-inline: 0.8rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.14fr) minmax(20rem, 0.86fr);
    align-items: center;
  }

  .hero-visual {
    min-height: 32rem;
  }

  .visual-card-small {
    width: 46%;
    min-width: 12rem;
  }

  .split-layout,
  .location-grid,
  .feature-card,
  .wedding-package-intro,
  .wedding-package-cta,
  .review-card,
  .contact-card,
  .footer-grid {
    grid-template-columns: 0.85fr 1.15fr;
  }

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

  .contact-list div:last-child {
    grid-column: auto;
  }

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

  .why-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
  }

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

  .wedding-package-cta .small-note {
    grid-column: 1 / -1;
  }

  .gallery-track {
    grid-auto-columns: minmax(18rem, calc(33.333% - 0.67rem));
    gap: 1.5rem;
  }

  .faq-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .footer-grid {
    align-items: start;
  }
}

@media (min-width: 1080px) {
  h1 {
    font-size: 4.8rem;
  }

  h2 {
    font-size: 3.8rem;
  }

  .gallery-item {
    min-height: 22rem;
  }

  .wedding-benefits {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

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