/* ============================================================
   Dulhan Mehndi Art — glassmorphism theme
   Frosted glass cards floating over a warm henna-toned gradient
   ============================================================ */
:root {
  --ink: #3d2213;
  --ink-soft: #6b4a2e;
  --maroon: #8e1f41;
  --maroon-deep: #6e1731;
  --gold: #b98a2e;
  --leaf: #5a7248;
  --wa: #1ea952;
  --glass: rgba(255, 251, 243, 0.55);
  --glass-strong: rgba(255, 251, 243, 0.72);
  --glass-border: rgba(255, 255, 255, 0.65);
  --glass-shadow: 0 8px 32px rgba(74, 44, 23, 0.18);
  --blur: blur(16px);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
@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;
  }
}
body {
  font-family: "Jost", sans-serif;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
  min-block-size: 100vh;
  background:
    radial-gradient(
      1100px 600px at 85% -10%,
      rgba(185, 138, 46, 0.28),
      transparent 60%
    ),
    radial-gradient(
      900px 700px at -10% 30%,
      rgba(142, 31, 65, 0.22),
      transparent 55%
    ),
    radial-gradient(
      800px 600px at 100% 85%,
      rgba(90, 114, 72, 0.2),
      transparent 55%
    ),
    linear-gradient(160deg, #fdf6e9 0%, #f7e8d4 45%, #f2dcc4 100%);
  background-attachment: fixed;
}
/* soft floating blobs behind the glass */
body::before,
body::after {
  content: "";
  position: fixed;
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
  filter: blur(60px);
}
body::before {
  inline-size: 420px;
  block-size: 420px;
  top: 12%;
  left: -140px;
  background: radial-gradient(circle, rgba(142, 31, 65, 0.3), transparent 70%);
}
body::after {
  width: 480px;
  height: 480px;
  bottom: -120px;
  right: -140px;
  background: radial-gradient(
    circle,
    rgba(185, 138, 46, 0.32),
    transparent 70%
  );
}
h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 1.15;
}
.script {
  font-family: "Great Vibes", cursive;
  font-weight: 400;
}
a {
  color: var(--maroon);
}
img {
  max-width: 100%;
  display: block;
}
.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 22px;
}
section {
  padding: 72px 0;
  position: relative;
}
.divider {
  border: none;
  border-top: 2px dashed rgba(74, 44, 23, 0.3);
  width: min(320px, 70%);
  margin: 0 auto;
}
.eyebrow {
  font-family: "Great Vibes", cursive;
  font-size: 1.9rem;
  color: var(--maroon);
  display: block;
  margin-bottom: 0.2rem;
}
.sec-title {
  font-size: clamp(2rem, 4.5vw, 2.9rem);
  color: var(--ink);
}
.sec-title u,
.hand-u {
  text-decoration: none;
  background-image: linear-gradient(var(--gold), var(--gold));
  background-repeat: no-repeat;
  background-size: 100% 2px;
  background-position: 0 96%;
}
.sec-head {
  text-align: center;
  margin-bottom: 44px;
}
.sec-head p {
  max-width: 560px;
  margin: 10px auto 0;
  color: var(--ink-soft);
}
.center {
  text-align: center;
}
.center-flex {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.mt {
  margin-top: 28px;
}

/* ---------- reusable glass surfaces ---------- */
.glass,
.svc,
.review,
.time-card,
.about-card,
.form-card,
.vframe,
.masonry figure,
.gp,
.c-panel {
  background: var(--glass);
  -webkit-backdrop-filter: var(--blur);
  backdrop-filter: var(--blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

/* ---------- header ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 251, 243, 0.5);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 4px 24px rgba(74, 44, 23, 0.08);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}
.brand-logo {
  width: 52px;
  height: 64px;
  object-fit: contain;
  flex: none;
  filter: drop-shadow(0 2px 6px rgba(74, 44, 23, 0.25));
}
.brand-mark {
  display: none;
}
.brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.05;
}
.brand-name small {
  display: block;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--maroon);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border-bottom: 2px solid transparent;
  padding: 4px 0;
  transition:
    border-color 0.25s,
    color 0.25s;
}
.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--maroon);
  border-bottom-color: var(--gold);
}
.nav-links a[aria-current="page"] {
  color: var(--maroon);
  border-bottom-color: var(--maroon);
}
.nav-cta {
  background: rgba(142, 31, 65, 0.9);
  color: #fff !important;
  border-radius: 999px;
  padding: 9px 20px !important;
  border-bottom: none !important;
  -webkit-backdrop-filter: var(--blur);
  backdrop-filter: var(--blur);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 8px 24px rgba(142, 31, 65, 0.35);
}
.nav-cta:hover {
  background: var(--maroon-deep);
}
.menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--ink);
}
.menu-btn svg {
  width: 26px;
  height: 26px;
}
@media (max-width: 940px) {
  .menu-btn {
    display: block;
  }
  .nav-links {
    position: fixed;
    inset: 76px 0 auto 0;
    background: rgba(255, 251, 243, 0.85);
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
    flex-direction: column;
    padding: 26px 0 32px;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    transform: translateY(-130%);
    transition: transform 0.35s ease;
    box-shadow: 0 20px 40px rgba(74, 44, 23, 0.2);
  }
  .nav-links.open {
    transform: translateY(0);
  }
}

/* ---------- hero (landing) ---------- */
.hero {
  padding: 64px 0 80px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero-logo {
  width: 170px;
  height: auto;
  margin-bottom: 18px;
  filter: drop-shadow(0 8px 20px rgba(74, 44, 23, 0.25));
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 700;
}
.hero .script-line {
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  color: var(--maroon);
  display: block;
  margin-bottom: 6px;
}
.hero-quote {
  margin: 22px 0 30px;
  max-width: 520px;
  color: var(--ink-soft);
  border-left: 3px solid var(--gold);
  padding-left: 18px;
  font-size: 1.06rem;
}
.hero-quote strong {
  color: var(--maroon);
  font-weight: 500;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.02em;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s;
  border: 1px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  font-family: "Jost", sans-serif;
  -webkit-backdrop-filter: var(--blur);
  backdrop-filter: var(--blur);
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-wa {
  background: rgba(30, 169, 82, 0.92);
  color: #fff;
  box-shadow: 0 8px 24px rgba(30, 169, 82, 0.4);
}
.btn-wa:hover {
  background: #178a43;
}
.btn-outline {
  background: rgba(255, 251, 243, 0.45);
  color: var(--ink);
  border: 1.5px solid rgba(61, 34, 19, 0.55);
}
.btn-outline:hover {
  background: rgba(61, 34, 19, 0.85);
  color: #fdf6e9;
}
.btn svg {
  width: 19px;
  height: 19px;
  flex: none;
}
.hero-badges {
  display: flex;
  gap: 26px;
  margin-top: 36px;
  flex-wrap: wrap;
  border-radius: 18px;
  padding: 16px 24px;
  width: fit-content;
}
.badge {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.badge b {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  color: var(--maroon);
  font-weight: 700;
}
.hero-art {
  position: relative;
  display: grid;
  place-items: center;
}
.glass-frame {
  border-radius: 26px;
  padding: 16px;
  background: var(--glass);
  -webkit-backdrop-filter: var(--blur);
  backdrop-filter: var(--blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  transform: rotate(1.5deg);
  transition: transform 0.35s ease;
}
.glass-frame:hover {
  transform: rotate(0deg) scale(1.01);
}
.glass-frame img {
  width: min(430px, 80vw);
  height: auto;
  border-radius: 16px;
}
@media (max-width: 880px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-logo {
    margin-inline: auto;
  }
  .hero .script-line,
  .hero h1 {
    text-align: center;
  }
  .hero-quote {
    margin-inline: auto;
  }
  .hero-ctas,
  .hero-badges {
    justify-content: center;
    margin-inline: auto;
  }
  .hero-art {
    order: 2;
  }
}

/* ---------- page hero (subpages) ---------- */
.page-hero {
  padding: 56px 0 44px;
  text-align: center;
  position: relative;
}
.page-hero .script-line {
  font-family: "Great Vibes", cursive;
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  color: var(--maroon);
  display: block;
  margin-bottom: 4px;
}
.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
}
.page-hero p {
  max-width: 580px;
  margin: 12px auto 0;
  color: var(--ink-soft);
}
.page-hero .wrap {
  background: var(--glass);
  -webkit-backdrop-filter: var(--blur);
  backdrop-filter: var(--blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: 24px;
  padding: 44px 26px;
  max-width: 900px;
}
.crumbs {
  margin-top: 18px;
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.crumbs a {
  color: var(--maroon);
  text-decoration: none;
}
.crumbs a:hover {
  text-decoration: underline;
}
.crumbs span {
  margin: 0 4px;
}

/* ---------- about ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}
.about-card {
  border-radius: 20px;
  padding: 34px;
  position: relative;
}
.about-card::before {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px dashed rgba(142, 31, 65, 0.4);
  border-radius: 14px;
  pointer-events: none;
}
.about-card h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.about-list {
  list-style: none;
  margin-top: 16px;
}
.about-list li {
  padding: 7px 0;
  display: flex;
  gap: 11px;
  align-items: flex-start;
}
.about-list .heart {
  color: var(--maroon);
  flex: none;
  margin-top: 2px;
}
.big-15 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4.5rem, 9vw, 7rem);
  font-weight: 700;
  color: var(--maroon);
  line-height: 1;
}
.about-copy .script {
  font-size: 2rem;
  color: var(--gold);
}
@media (max-width: 820px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
}
.svc {
  border-radius: 20px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    background 0.25s;
}
.svc:hover {
  transform: translateY(-6px);
  background: var(--glass-strong);
  box-shadow: 0 16px 44px rgba(74, 44, 23, 0.24);
}
.svc-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  border: 1.5px solid var(--gold);
  display: grid;
  place-items: center;
  color: var(--maroon);
}
.svc-icon svg {
  width: 26px;
  height: 26px;
}
.svc h3 {
  font-size: 1.45rem;
}
.svc p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  flex: 1;
}
.svc a {
  font-weight: 500;
  text-decoration: none;
  font-size: 0.92rem;
  color: var(--wa);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.svc a:hover {
  text-decoration: underline;
}
.svc a svg {
  width: 16px;
  height: 16px;
}

/* ---------- gallery ---------- */
.masonry {
  columns: 4 240px;
  column-gap: 14px;
}
.masonry figure {
  break-inside: avoid;
  margin: 0 0 14px;
  border-radius: 16px;
  overflow: hidden;
  cursor: zoom-in;
  padding: 7px;
  transition: transform 0.25s;
}
.masonry figure:hover {
  transform: scale(1.02);
}
.masonry img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.4);
}
.gp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gp {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  padding: 7px;
  transition: transform 0.25s;
  aspect-ratio: 1;
}
.gp:hover {
  transform: scale(1.04);
}
.gp img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.4);
}
@media (max-width: 680px) {
  .gp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.g-note {
  text-align: center;
  margin-top: 26px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(42, 26, 16, 0.6);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  display: none;
  place-items: center;
  padding: 30px;
}
.lightbox.open {
  display: grid;
}
.lightbox img {
  max-height: 86vh;
  max-width: 92vw;
  border-radius: 14px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.lb-close,
.lb-prev,
.lb-next {
  position: absolute;
  background: rgba(255, 251, 243, 0.16);
  border: 1px solid rgba(255, 251, 243, 0.45);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: #fdf6e9;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  transition: background 0.2s;
}
.lb-close:hover,
.lb-prev:hover,
.lb-next:hover {
  background: rgba(255, 251, 243, 0.32);
}
.lb-close {
  top: 20px;
  right: 20px;
}
.lb-prev {
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.lb-next {
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

/* ---------- videos ---------- */
.vid-embed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.vframe {
  border-radius: 18px;
  overflow: hidden;
  padding: 8px;
  transition: transform 0.25s;
  background: #fff;
}
.vframe:hover {
  transform: translateY(-4px);
}
.vframe iframe,
.vframe video {
  width: 100%;
  aspect-ratio: 16 / 10;
  max-height: 34rem;
  height: auto;
  object-fit: contain;
  border: 0;
  display: block;
  border-radius: 12px;
  background: #000;
}
.vframe p {
  padding: 12px 10px 6px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.vframe p a {
  color: var(--maroon);
}
@media (max-width: 680px) {
  .vid-embed-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- reviews ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 22px;
}
.review {
  border-radius: 20px;
  padding: 28px 26px;
  position: relative;
}
.review::before {
  content: "\201C";
  position: absolute;
  top: 6px;
  right: 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: 4.6rem;
  color: rgba(142, 31, 65, 0.18);
  line-height: 1;
}
.stars {
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 1.15rem;
}
.stars b {
  color: var(--ink);
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0;
  margin-left: 8px;
}
.review blockquote {
  margin: 12px 0 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-style: italic;
}
.review cite {
  font-style: normal;
  color: var(--maroon);
  font-weight: 500;
  font-size: 0.95rem;
}
.rating-summary {
  text-align: center;
  margin-top: 36px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
}
.rating-summary a {
  color: var(--maroon);
}

/* ---------- timings ---------- */
.time-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
  max-width: 860px;
  margin: 0 auto;
}
.time-card {
  text-align: center;
  border-radius: 20px;
  padding: 30px 22px;
}
.time-card .t-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 12px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: grid;
  place-items: center;
  color: var(--maroon);
  background: rgba(255, 255, 255, 0.55);
}
.time-card .t-icon svg {
  width: 26px;
  height: 26px;
}
.time-card h3 {
  font-size: 1.35rem;
  margin-bottom: 4px;
}
.time-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.time-card .big {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  color: var(--maroon);
  font-weight: 700;
}

/* ---------- contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 44px;
  align-items: start;
}
.c-panel {
  border-radius: 20px;
  padding: 30px 26px;
}
.c-list {
  list-style: none;
  display: grid;
  gap: 16px;
}
.c-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.c-ico {
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  border: 1.5px solid var(--gold);
  display: grid;
  place-items: center;
  color: var(--maroon);
}
.c-ico svg {
  width: 21px;
  height: 21px;
}
.c-list b {
  display: block;
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
}
.c-list a {
  text-decoration: none;
}
.c-list a:hover {
  text-decoration: underline;
}
.socials {
  display: flex;
  gap: 12px;
  margin-top: 26px;
}
.soc {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--glass-border);
  color: var(--ink);
  background: var(--glass);
  -webkit-backdrop-filter: var(--blur);
  backdrop-filter: var(--blur);
  box-shadow: var(--glass-shadow);
  transition: all 0.25s;
}
.soc:hover {
  background: var(--maroon);
  border-color: var(--maroon);
  color: #fff;
  transform: translateY(-3px);
}
.soc svg {
  width: 21px;
  height: 21px;
}
.form-card {
  border-radius: 20px;
  padding: 32px;
}
.form-card h3 {
  font-size: 1.6rem;
  margin-bottom: 4px;
}
.form-card > p {
  color: var(--ink-soft);
  font-size: 0.93rem;
  margin-bottom: 20px;
}
.field {
  margin-bottom: 16px;
}
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.5);
  font-family: "Jost", sans-serif;
  font-size: 1rem;
  color: var(--ink);
  transition:
    border-color 0.2s,
    background 0.2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
  background: rgba(255, 255, 255, 0.78);
}
.field textarea {
  resize: vertical;
  min-height: 88px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 520px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 880px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- cta strip ---------- */
.cta-strip {
  text-align: center;
}
.cta-strip .wrap {
  background: linear-gradient(
    135deg,
    rgba(142, 31, 65, 0.86),
    rgba(110, 23, 49, 0.86)
  );
  -webkit-backdrop-filter: var(--blur);
  backdrop-filter: var(--blur);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 26px;
  padding: 52px 26px;
  color: #fdf6e9;
  box-shadow: 0 20px 50px rgba(142, 31, 65, 0.35);
}
.cta-strip .sec-title {
  color: #fdf6e9;
}
.cta-strip .script-line,
.cta-strip .eyebrow {
  color: #f2cc66;
}
.cta-strip .hand-u {
  background-image: linear-gradient(#f2cc66, #f2cc66);
}
.cta-strip .btn-outline {
  color: #fdf6e9;
  border-color: rgba(253, 246, 233, 0.7);
  background: rgba(255, 255, 255, 0.12);
}
.cta-strip .btn-outline:hover {
  background: #fdf6e9;
  color: var(--maroon);
}

/* sections that previously had solid tints — now transparent so gradient shows */
.about,
.gallery,
.timings {
  background: transparent;
}

/* ---------- footer ---------- */
footer {
  margin-top: 24px;
  padding: 52px 0 96px;
  position: relative;
  color: var(--ink);
  background: rgba(255, 251, 243, 0.45);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.65);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 36px;
}
.foot-logo {
  width: 84px;
  height: auto;
  margin-bottom: 10px;
  filter: drop-shadow(0 4px 10px rgba(74, 44, 23, 0.2));
}
.foot-brand .script {
  font-size: 2.1rem;
  color: var(--maroon);
}
.foot-brand p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-top: 8px;
  max-width: 300px;
}
footer h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  margin-bottom: 14px;
}
footer ul {
  list-style: none;
  display: grid;
  gap: 9px;
}
footer a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.94rem;
}
footer a:hover {
  color: var(--maroon);
  text-decoration: underline;
}
.copyright {
  text-align: center;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px dashed rgba(74, 44, 23, 0.3);
  font-size: 0.85rem;
  color: var(--ink-soft);
}
@media (max-width: 760px) {
  .foot-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* floating WA bubble */
.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 200;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(30, 169, 82, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 10px 28px rgba(30, 169, 82, 0.45);
  transition: transform 0.25s;
}
.wa-float:hover {
  transform: scale(1.08);
}
.wa-float svg {
  width: 30px;
  height: 30px;
}
.book-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 150;
  display: none;
  background: rgba(142, 31, 65, 0.88);
  -webkit-backdrop-filter: var(--blur);
  backdrop-filter: var(--blur);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  text-align: center;
  padding: 14px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.04em;
}
@media (max-width: 680px) {
  .book-bar {
    display: block;
  }
  .wa-float {
    bottom: 74px;
  }
}

/* legacy helpers no longer used by the glass theme */
.corner {
  display: none;
}
.ruled {
  background-image: none;
}

:focus-visible {
  outline: 2.5px solid var(--maroon);
  outline-offset: 2px;
}

/* fallback when backdrop-filter unsupported */
@supports not (
  (backdrop-filter: blur(4px)) or (-webkit-backdrop-filter: blur(4px))
) {
  .glass,
  .svc,
  .review,
  .time-card,
  .about-card,
  .form-card,
  .vframe,
  .masonry figure,
  .gp,
  .c-panel,
  .page-hero .wrap,
  header,
  footer,
  .nav-links {
    background: rgba(255, 251, 243, 0.94);
  }
}

/* ============================================================
   Production additions (accessibility) — skip link
   Visually hidden until focused via keyboard; no UI change.
   ============================================================ */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 2000;
  background: var(--maroon);
  color: #fffbf3;
  padding: 10px 18px;
  border-radius: 0 0 12px 0;
  font-weight: 500;
  text-decoration: none;
}
.skip-link:focus {
  left: 0;
}

