/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

:root {
  --blush-50: #fff8f9;
  --blush-100: #fdecef;
  --blush-200: #f8d6de;
  --blush-300: #eeb5c5;
  --rose: #c76b83;
  --rose-dark: #8f3f58;
  --ink: #33262b;
  --muted: #7b6a70;
  --cream: #fffdf8;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(143, 63, 88, 0.14);
  --shadow-soft: 0 12px 36px rgba(143, 63, 88, 0.1);
  --radius-large: 34px;
  --radius-medium: 22px;
  --section-space: 6.5rem;
  --header-offset: 110px;
  --shell-pad: 28px;
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-offset) + env(safe-area-inset-top, 0px));
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 8% 0%, rgba(248, 214, 222, 0.75), transparent 28rem),
    radial-gradient(circle at 92% 12%, rgba(253, 236, 239, 0.65), transparent 24rem),
    radial-gradient(circle at 50% 100%, rgba(248, 214, 222, 0.35), transparent 40rem),
    linear-gradient(180deg, var(--blush-50) 0%, var(--cream) 45%, var(--blush-100) 100%);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
}

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

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

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

img {
  max-width: 100%;
  height: auto;
}

.icon-inline {
  flex-shrink: 0;
  line-height: 1;
}

.nav-icon {
  font-size: 0.92em;
  opacity: 0.88;
}

.site-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--shell-pad) 80px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  margin-bottom: 48px;
  padding-top: env(safe-area-inset-top, 0px);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(199, 107, 131, 0.1), 0 8px 32px rgba(143, 63, 88, 0.08);
}

.site-eyebrow {
  padding: 7px max(16px, var(--shell-pad));
  background: var(--blush-100);
  border-bottom: 1px solid rgba(199, 107, 131, 0.14);
}

.site-eyebrow-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  max-width: 1180px;
  margin: 0 auto;
  color: var(--rose-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-eyebrow-inner span,
.site-eyebrow-inner a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.site-eyebrow a {
  color: var(--rose-dark);
  transition: color 180ms ease;
}

.site-eyebrow a:hover,
.site-eyebrow a:focus {
  color: var(--ink);
}

.site-eyebrow-divider {
  flex-shrink: 0;
  width: 3px;
  height: 3px;
  background: rgba(199, 107, 131, 0.55);
  border-radius: 999px;
}

.site-navbar {
  width: 100%;
  padding: 14px var(--shell-pad);
  background: var(--white);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.site-navbar > .container-fluid {
  max-width: 1200px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.brand:hover,
.brand:focus {
  color: var(--ink);
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(199, 107, 131, 0.3);
}

.site-navbar .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  padding: 8px 10px;
  font-size: 0.92rem;
  font-weight: 800;
  border-radius: 999px;
  transition: color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link:focus,
.site-navbar .nav-link.active {
  color: var(--rose-dark);
  background: rgba(253, 236, 239, 0.86);
  box-shadow: inset 0 0 0 1px rgba(199, 107, 131, 0.16);
}

.site-navbar .navbar-toggler {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border-color: rgba(199, 107, 131, 0.26);
  border-radius: 999px;
  box-shadow: none;
}

.site-navbar .navbar-toggler:focus {
  box-shadow: 0 0 0 0.18rem rgba(199, 107, 131, 0.2);
}

.nav-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--rose-dark), #b05f76);
  border: 0;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(199, 107, 131, 0.24);
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.site-navbar .navbar-nav {
  gap: 2px;
}

.nav-call-btn:hover,
.nav-call-btn:focus {
  color: var(--white);
  background: linear-gradient(135deg, #7a3850, var(--rose-dark));
  box-shadow: 0 10px 24px rgba(199, 107, 131, 0.32);
  transform: translateY(-1px);
}

@media (min-width: 992px) {
  .site-navbar .navbar-nav {
    gap: 4px;
    align-items: center;
  }

  .site-navbar .nav-link {
    padding: 8px 12px;
  }

  .site-navbar .nav-item.nav-cta {
    margin-left: 10px;
    padding-left: 18px;
    border-left: 1px solid rgba(199, 107, 131, 0.18);
  }

  .nav-call-btn {
    padding: 10px 18px;
    border-radius: 10px;
  }
}

@media (max-width: 991.98px) {
  :root {
    --header-offset: 96px;
  }

  .site-header {
    margin-bottom: 32px;
  }

  .site-eyebrow-inner {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    gap: 6px 10px;
  }

  .site-eyebrow-inner span:nth-child(3) {
    display: none;
  }

  .site-eyebrow-inner .site-eyebrow-divider:nth-of-type(2) {
    display: none;
  }

  .site-navbar .navbar-collapse {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(199, 107, 131, 0.14);
  }

  .site-navbar .navbar-nav {
    gap: 4px;
  }

  .site-navbar .nav-link {
    min-height: 44px;
    padding: 12px 14px;
  }

  .site-navbar .nav-item.nav-cta {
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
  }

  .nav-call-btn {
    width: 100%;
    min-height: 48px;
    margin-top: 6px;
    justify-content: center;
  }
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 56px;
  position: relative;
  padding: 24px 0 32px;
}

.hero-copy {
  position: relative;
  padding: 8px 0 8px 28px;
  border-left: 3px solid rgba(199, 107, 131, 0.35);
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 20px;
  padding: 9px 15px;
  color: var(--rose-dark);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--blush-100);
  border: 1px solid rgba(199, 107, 131, 0.16);
  border-radius: 999px;
}

.hero-pill .bi {
  font-size: 0.95rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--rose-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

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

p {
  color: var(--muted);
  font-size: clamp(1rem, 1.15vw, 1.075rem);
  font-weight: 450;
  line-height: 1.72;
  letter-spacing: -0.011em;
}

h1 {
  max-width: 640px;
  margin-bottom: 22px;
  font-family: var(--font-display);
  font-size: clamp(3.1rem, 5.8vw, 5.2rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.02em;
}

h2 {
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.8vw, 3.35rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.015em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero-text,
.intro-section > p,
.wedding-panel p,
.service-card p,
.visit-card p,
.site-footer p {
  color: var(--muted);
  font-size: clamp(1rem, 1.15vw, 1.075rem);
  font-weight: 450;
  line-height: 1.72;
  letter-spacing: -0.011em;
}

.hero-text {
  max-width: 640px;
  margin-bottom: 34px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 24px;
  font-weight: 800;
  border-radius: 999px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: none;
}

@media (hover: hover) and (pointer: fine) {
  .button:hover {
    transform: translateY(-2px);
  }
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--rose-dark), #a85a71);
  box-shadow: 0 14px 28px rgba(199, 107, 131, 0.28);
}

.button-primary:hover {
  box-shadow: 0 18px 36px rgba(199, 107, 131, 0.34);
}

.button-secondary {
  color: var(--rose-dark);
  background: var(--white);
  border: 1px solid rgba(199, 107, 131, 0.28);
  box-shadow: var(--shadow-soft);
}

.hero-card,
.service-card,
.visit-card,
.hours-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-card {
  position: relative;
  width: 100%;
  padding: 0;
  overflow: hidden;
  background: transparent;
  border: 0;
  border-radius: 24px;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-card .hero-photo-main {
  position: static;
  inset: auto;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: auto;
  display: block;
  width: 100%;
  max-width: 100%;
  height: clamp(280px, 56vw, 440px);
  margin: 0;
  border-radius: inherit;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 16px 40px rgba(143, 63, 88, 0.14);
}

.hero-card .hero-photo-top,
.hero-card .hero-photo-bottom,
.hero-card .hero-photo-large,
.hero-card .hero-logo-card {
  display: none;
}

@media (min-width: 992px) {
  .hero-card {
    min-height: 540px;
    overflow: visible;
    border-radius: 0;
  }

  .hero-card::before {
    content: "";
    position: absolute;
    inset: 22px 18px 28px 56px;
    z-index: 0;
    background:
      radial-gradient(circle at 32% 18%, rgba(248, 214, 222, 0.68), transparent 34%),
      radial-gradient(circle at 82% 68%, rgba(255, 255, 255, 0.86), transparent 38%),
      linear-gradient(135deg, rgba(255, 248, 249, 0.48), rgba(253, 236, 239, 0.34));
    border-radius: 42px;
  }

  .hero-card::after {
    content: "";
    position: absolute;
    top: 20px;
    right: 92px;
    z-index: 0;
    width: 210px;
    height: 210px;
    background-image: radial-gradient(rgba(143, 63, 88, 0.15) 1.4px, transparent 1.4px);
    background-size: 13px 13px;
    -webkit-mask-image: radial-gradient(circle, #000 52%, transparent 76%);
    mask-image: radial-gradient(circle, #000 52%, transparent 76%);
  }

  .hero-photo {
    position: absolute;
    object-fit: cover;
    border: 0;
    box-shadow: 0 22px 48px rgba(143, 63, 88, 0.16);
    transition: transform 220ms ease, box-shadow 220ms ease;
  }

  .hero-card .hero-photo-main {
    position: absolute;
    top: 18px;
    left: 70px;
    z-index: 2;
    width: 238px;
    height: 302px;
    border-radius: 28px;
    object-position: center;
    box-shadow: 0 22px 48px rgba(143, 63, 88, 0.16);
  }

  .hero-card .hero-photo-top {
    display: block;
    top: 82px;
    right: 12px;
    z-index: 2;
    width: 232px;
    height: 174px;
    border-radius: 24px;
    object-position: center;
  }

  .hero-card .hero-photo-bottom {
    display: block;
    bottom: 4px;
    left: 104px;
    z-index: 2;
    width: 190px;
    height: 196px;
    border-radius: 26px;
    object-position: center;
  }

  .hero-card .hero-photo-large {
    display: block;
    right: 8px;
    bottom: 0;
    z-index: 1;
    width: 264px;
    height: 254px;
    border-radius: 26px 26px 68px 26px;
    object-position: center;
  }

  .hero-card .hero-logo-card {
    display: grid;
    position: absolute;
    top: 232px;
    left: 50%;
    z-index: 4;
    place-items: center;
    width: 124px;
    height: 124px;
    padding: 13px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(199, 107, 131, 0.14);
    border-radius: 28px;
    box-shadow: 0 18px 45px rgba(51, 38, 43, 0.12);
    backdrop-filter: blur(12px);
    transform: translateX(-50%);
  }
}

.hero-photo:hover {
  transform: none;
}

@media (hover: hover) and (pointer: fine) {
  .hero-photo:hover {
    transform: translateY(-3px);
    box-shadow: 0 28px 56px rgba(143, 63, 88, 0.2);
  }
}

.hero-logo-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.section {
  margin-top: var(--section-space);
  scroll-margin-top: calc(var(--header-offset) + env(safe-area-inset-top, 0px));
}

.section-intro {
  max-width: 680px;
  margin-bottom: 36px;
}

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

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

.formalwear-section {
  display: block;
}

.intro-section {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 40px;
  align-items: center;
  margin-top: var(--section-space);
  padding: 44px 48px;
  background:
    radial-gradient(circle at top left, rgba(253, 236, 239, 0.7), transparent 22rem),
    rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-soft);
}

.intro-section > p {
  margin: 0;
  padding-left: 28px;
  border-left: 2px solid rgba(199, 107, 131, 0.22);
  font-size: clamp(1.05rem, 1.2vw, 1.15rem);
  line-height: 1.75;
}

.photo-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
}

.photo-card {
  position: relative;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  background: var(--blush-100);
  border: 8px solid var(--white);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow);
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.photo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 64px rgba(143, 63, 88, 0.18);
}

.photo-card-tall {
  min-height: 520px;
}

.photo-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  transition: transform 500ms ease;
}

.photo-card:hover img {
  transform: scale(1.04);
}

.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(51, 38, 43, 0.58));
}

.photo-card figcaption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 2;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 30px;
}

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

.service-card {
  min-height: 280px;
  padding: 32px 28px 36px;
  border-radius: var(--radius-medium);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  border-top: 3px solid rgba(199, 107, 131, 0.22);
}

.service-card:hover {
  transform: none;
}

@media (hover: hover) and (pointer: fine) {
  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 48px rgba(143, 63, 88, 0.14);
    border-top-color: var(--rose);
  }
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 28px;
  color: var(--rose-dark);
  font-size: 1.35rem;
  background: var(--blush-100);
  border-radius: 18px;
  box-shadow: inset 0 0 0 1px rgba(199, 107, 131, 0.14);
}

.wedding-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 48px;
  align-items: center;
  margin-top: var(--section-space);
  padding: 52px 56px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(143, 63, 88, 0.92), rgba(168, 90, 113, 0.88)),
    radial-gradient(circle at top right, #edb7c4, #a85a71);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow);
  overflow: hidden;
  scroll-margin-top: calc(var(--header-offset) + env(safe-area-inset-top, 0px));
}

.wedding-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 18px 18px;
  pointer-events: none;
  opacity: 0.5;
}

.wedding-panel > * {
  position: relative;
  z-index: 1;
}

.wedding-panel h2 {
  font-family: var(--font-display);
  font-weight: 600;
}

.wedding-panel .eyebrow,
.wedding-panel p {
  color: rgba(255, 255, 255, 0.78);
}

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

.wedding-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 800;
  background: rgba(255, 255, 255, 0.86);
  border-radius: 18px;
}

.wedding-list-icon {
  flex-shrink: 0;
  color: var(--rose-dark);
  font-size: 1.05rem;
}

.owner-section {
  display: block;
}

.owner-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 36px;
  align-items: start;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 40px 44px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(253, 236, 239, 0.95), transparent 20rem),
    rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.owner-card::after {
  content: "";
  position: absolute;
  right: -54px;
  bottom: -74px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(248, 214, 222, 0.9), transparent 68%);
  border-radius: 999px;
  pointer-events: none;
}

.owner-image-card {
  position: relative;
  overflow: hidden;
  width: 148px;
  height: 148px;
  background: var(--blush-100);
  border: 7px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 18px 42px rgba(143, 63, 88, 0.16);
}

.owner-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(143, 63, 88, 0.18));
}

.owner-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.owner-copy {
  position: relative;
  z-index: 1;
  padding: 4px 0 0;
}

.owner-copy h2 {
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  font-weight: 600;
}

.owner-copy p {
  max-width: 860px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 450;
  line-height: 1.7;
  letter-spacing: -0.011em;
}

.owner-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.owner-tags span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 13px;
  color: var(--rose-dark);
  font-size: 0.82rem;
  font-weight: 900;
  background: rgba(253, 236, 239, 0.86);
  border: 1px solid rgba(199, 107, 131, 0.14);
  border-radius: 999px;
}

.visit-section {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: 28px;
  align-items: stretch;
}

.visit-card,
.hours-card {
  padding: 36px;
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-soft);
}

.visit-card {
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.84), transparent 20rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(253, 236, 239, 0.58));
}

.location-details {
  display: grid;
  gap: 10px;
  margin: 18px 0 24px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(199, 107, 131, 0.12);
  border-radius: 18px;
}

.location-details span {
  color: var(--rose-dark);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.map-frame {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  background: var(--blush-100);
  border: 9px solid rgba(255, 255, 255, 0.78);
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(143, 63, 88, 0.14);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: block;
  border: 0;
  filter: saturate(0.86) contrast(0.98);
}

.hours-card {
  position: relative;
  overflow: hidden;
  height: fit-content;
  align-self: start;
  background:
    radial-gradient(circle at top right, rgba(248, 214, 222, 0.72), transparent 18rem),
    rgba(255, 255, 255, 0.84);
}

.hours-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: inherit;
}

address {
  margin: 0;
  color: var(--muted);
  font-style: normal;
  line-height: 1.7;
}

.hours-header {
  display: flex;
  position: relative;
  z-index: 1;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.hours-header a {
  color: var(--rose-dark);
  font-size: 1rem;
  font-weight: 900;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(199, 107, 131, 0.16);
  border-radius: 999px;
}

.hours-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
}

.hours-status::before {
  content: "";
  width: 9px;
  height: 9px;
  background: var(--rose);
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(199, 107, 131, 0.14);
}

.hours-status.is-open::before {
  background: #4f9d69;
  box-shadow: 0 0 0 5px rgba(79, 157, 105, 0.16);
}

.hours-status.is-closed::before {
  background: var(--rose);
  box-shadow: 0 0 0 5px rgba(199, 107, 131, 0.14);
}

.hours-list div.is-today {
  background: rgba(253, 236, 239, 0.92);
  border-color: rgba(199, 107, 131, 0.24);
  box-shadow: inset 3px 0 0 var(--rose);
}

.hours-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 9px;
  margin: 0;
}

.hours-list div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 13px 15px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(199, 107, 131, 0.1);
  border-radius: 16px;
}

.hours-list dt,
.hours-list dd {
  margin: 0;
}

.hours-list dt {
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 850;
}

.hours-list dd {
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 900;
}

.site-footer {
  margin-top: 22px;
  padding: 0;
}

.footer-inner {
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 46px 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.84), transparent 30rem),
    linear-gradient(135deg, rgba(255, 248, 249, 0.9), rgba(255, 253, 248, 0.82)),
    url("/images/footer.jpg") center / cover no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-right: 0;
  border-left: 0;
  border-radius: 0;
  box-shadow: var(--shadow);
}

.footer-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(1px);
}

.footer-brand {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(199, 107, 131, 0.16);
}

.footer-logo {
  width: clamp(92px, 12vw, 140px);
  height: clamp(92px, 12vw, 140px);
  object-fit: contain;
  padding: 10px;
  background: var(--white);
  border-radius: 30px;
  box-shadow: 0 14px 34px rgba(143, 63, 88, 0.12);
}

.footer-brand h2 {
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 600;
}

.footer-brand p:last-child {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1rem, 1.15vw, 1.075rem);
  font-weight: 450;
  line-height: 1.72;
  letter-spacing: -0.011em;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 0.95fr 0.75fr;
  gap: 32px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 34px 0;
}

.footer-column h3 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-column address,
.footer-column a,
.footer-column li,
.footer-hours dt,
.footer-hours dd,
.footer-bottom p {
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 450;
  line-height: 1.65;
  letter-spacing: -0.006em;
}

.footer-column a,
.footer-links a,
.footer-bottom a {
  color: var(--rose-dark);
  font-weight: 900;
}

.footer-column ul,
.footer-hours {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-hours div {
  display: grid;
  gap: 2px;
}

.footer-hours dt {
  font-weight: 900;
}

.footer-hours dd {
  margin: 0;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(199, 107, 131, 0.16);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 900px) {
  :root {
    --shell-pad: 22px;
    --section-space: 4.5rem;
    --header-offset: 100px;
  }

  .hero,
  .intro-section,
  .service-grid,
  .wedding-panel,
  .owner-section,
  .visit-section {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hero {
    gap: 36px;
    padding: 12px 0 20px;
  }

  .hero-copy {
    padding: 4px 0 4px 0;
    border-left: 0;
  }

  .hero-pill {
    margin-bottom: 14px;
    font-size: 0.7rem;
  }

  .intro-section {
    padding: 32px 28px;
  }

  .intro-section > p {
    padding-left: 0;
    border-left: 0;
    padding-top: 12px;
    border-top: 2px solid rgba(199, 107, 131, 0.18);
  }

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

  .photo-card,
  .photo-card-tall {
    min-height: 360px;
  }

  .owner-card {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 28px;
  }

  .owner-image-card {
    width: 120px;
    height: 120px;
  }

  .wedding-panel {
    padding: 34px;
  }

  .visit-card,
  .hours-card {
    padding: 28px;
  }

  .footer-inner {
    padding: 34px max(22px, env(safe-area-inset-left, 0px)) 34px max(22px, env(safe-area-inset-right, 0px));
  }

  .footer-brand {
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
  }

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

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

@media (max-width: 720px) {
  :root {
    --shell-pad: 18px;
    --section-space: 3.75rem;
  }

  .site-shell {
    padding: 0 var(--shell-pad) 64px;
  }

  .site-navbar {
    padding-inline: var(--shell-pad);
  }

  .brand {
    min-width: 0;
    font-size: 0.98rem;
  }

  .brand-logo {
    width: 44px;
    height: 44px;
  }

  h1 {
    font-size: clamp(2.35rem, 9.5vw, 3.35rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
  }

  h2 {
    font-size: clamp(1.85rem, 7vw, 2.65rem);
    line-height: 1.08;
  }

  .hero {
    gap: 28px;
  }

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

  .hero-text,
  .intro-section > p,
  .wedding-panel p,
  .service-card p,
  .visit-card p,
  .owner-copy p,
  .site-footer p {
    font-size: 1rem;
    line-height: 1.65;
  }

  .service-card {
    min-height: auto;
    padding: 26px 22px 28px;
  }

  .service-icon {
    margin-bottom: 22px;
  }

  .intro-section {
    gap: 18px;
    padding: 26px 20px;
  }

  .photo-card,
  .photo-card-tall {
    min-height: 320px;
  }

  .visit-section {
    gap: 16px;
    align-items: start;
  }

  .hours-card {
    padding: 24px 20px 20px;
  }

  .hours-header {
    margin-bottom: 16px;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 260px;
  }

  .hours-header {
    flex-wrap: wrap;
  }
}

@media (max-width: 560px) {
  :root {
    --shell-pad: 14px;
    --section-space: 3.25rem;
    --header-offset: 88px;
  }

  .site-shell {
    padding: 0 var(--shell-pad) calc(46px + env(safe-area-inset-bottom, 0px));
  }

  .site-eyebrow {
    padding-inline: 12px;
  }

  .site-eyebrow-inner {
    font-size: 0.68rem;
    letter-spacing: 0.06em;
  }

  .button {
    width: 100%;
    min-height: 50px;
    padding-inline: 18px;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
  }

  h1 {
    margin-bottom: 16px;
    font-size: clamp(2.2rem, 10.5vw, 2.85rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
  }

  h2 {
    margin-bottom: 12px;
    letter-spacing: -0.02em;
  }

  h3 {
    font-size: 1.12rem;
  }

  .hero-copy {
    padding-left: 0;
    border-left: 0;
  }

  .hero-text {
    margin-bottom: 22px;
  }

  .hero-card .hero-photo-main {
    height: clamp(240px, 68vw, 360px);
  }

  .section-intro {
    margin-bottom: 24px;
  }

  .section-intro-center {
    text-align: left;
  }

  .section-intro-center .eyebrow {
    justify-content: flex-start;
  }

  .service-card,
  .visit-card,
  .hours-card,
  .wedding-panel {
    padding: 20px;
    border-radius: 22px;
  }

  .hero-card {
    padding: 0;
    border-radius: 24px;
  }

  .location-details {
    padding: 14px;
  }

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

  .map-frame {
    border-width: 6px;
    border-radius: 18px;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 220px;
  }

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

  .photo-card,
  .photo-card-tall {
    min-height: 280px;
    border-width: 6px;
    border-radius: 22px;
  }

  .photo-card figcaption {
    right: 14px;
    bottom: 14px;
    left: 14px;
    font-size: 1.05rem;
  }

  .service-grid {
    gap: 12px;
  }

  .wedding-panel {
    margin-top: var(--section-space);
  }

  .wedding-list li {
    padding: 14px 15px;
    font-size: 0.95rem;
  }

  .owner-card {
    gap: 16px;
    padding: 20px;
    border-radius: 22px;
  }

  .owner-image-card {
    width: 96px;
    height: 96px;
    border-width: 5px;
  }

  .owner-tags {
    gap: 8px;
  }

  .owner-tags span {
    font-size: 0.76rem;
    padding: 8px 11px;
  }

  .hours-header,
  .hours-list div {
    grid-template-columns: 1fr;
  }

  .hours-header {
    display: grid;
  }

  .hours-header a {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    min-height: 44px;
    align-items: center;
  }

  .hours-list div {
    gap: 4px;
    padding: 12px 13px;
  }

  .footer-inner {
    padding: 22px max(14px, env(safe-area-inset-left, 0px)) calc(22px + env(safe-area-inset-bottom, 0px)) max(14px, env(safe-area-inset-right, 0px));
  }

  .footer-brand,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    gap: 16px;
    padding-bottom: 22px;
  }

  .footer-logo {
    width: 88px;
    height: 88px;
    border-radius: 20px;
  }

  .footer-grid {
    gap: 20px;
    padding: 22px 0;
  }

  .footer-column h3 {
    margin-bottom: 10px;
    font-size: 0.78rem;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .footer-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(199, 107, 131, 0.16);
    border-radius: 999px;
    text-align: center;
  }

  .footer-bottom {
    gap: 12px;
  }

  .footer-bottom a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }
}

@media (max-width: 380px) {
  :root {
    --shell-pad: 12px;
  }

  .brand {
    font-size: 0.92rem;
    gap: 10px;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
  }

  h1 {
    font-size: 2.05rem;
  }

  .hero-pill {
    font-size: 0.65rem;
    padding: 8px 12px;
  }

  .hero-card .hero-photo-main {
    height: 220px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}
