/* ===== NEHTY FM — BRAND STYLESHEET ===== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,300;1,9..40,400&display=swap');

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blush: #FFF0F3;
  --pink: #C9184A;
  --pink-light: #E01E55;
  --berry: #9B1B4A;
  --footer-berry: #4B0E25;
  --black: #111111;
  --text: rgba(17, 17, 17, 0.60);
  --text-secondary: rgba(17, 17, 17, 0.58);
  --white: #FFFFFF;
  --border: rgba(17, 17, 17, 0.08);
  --border-pink: rgba(201, 24, 74, 0.15);
  --shadow-sm: 0 1px 3px rgba(17, 17, 17, 0.06), 0 1px 2px rgba(17, 17, 17, 0.04);
  --shadow-md: 0 4px 16px rgba(17, 17, 17, 0.07), 0 2px 6px rgba(17, 17, 17, 0.04);
  --shadow-lg: 0 12px 40px rgba(17, 17, 17, 0.10), 0 4px 12px rgba(17, 17, 17, 0.05);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --nav-h: 72px;
  --max-w: 1140px;
  --section-py: 104px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--white);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.gallery-strip--featured .gallery-thumb:nth-child(1) { transition-delay: 0s; }
.gallery-strip--featured .gallery-thumb:nth-child(2) { transition-delay: 0.09s; }
.gallery-strip--featured .gallery-thumb:nth-child(3) { transition-delay: 0.18s; }
.gallery-strip--featured .gallery-thumb:nth-child(4) { transition-delay: 0.27s; }
.gallery-strip--featured .gallery-thumb:nth-child(5) { transition-delay: 0.36s; }
.gallery-strip--featured .gallery-thumb:nth-child(6) { transition-delay: 0.45s; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  color: var(--black);
  line-height: 1.22;
  font-weight: 600;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); color: rgba(17, 17, 17, 0.95); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 600; color: rgba(17, 17, 17, 0.80); }
h4 { color: rgba(17, 17, 17, 0.80); }

.newsreader {
  font-family: inherit;
  font-weight: inherit;
  font-style: normal;
  color: var(--pink);
}

.lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text);
  max-width: 600px;
  text-wrap: pretty;
}

p,
li,
.btn,
.nav__link,
.mobile-menu__link,
.contact-item__value,
.footer__phone,
.footer__email {
  text-wrap: pretty;
}

/* ===== LAYOUT ===== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-py) 0;
}

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

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

.section-header {
  margin-bottom: 52px;
}

.section-header.centered {
  text-align: center;
}

.section-header.centered .lead {
  margin: 0 auto;
  margin-top: 16px;
}

.section-header .lead {
  margin-top: 16px;
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.25s ease;
}

.nav.scrolled {
  box-shadow: 0 2px 20px rgba(17, 17, 17, 0.08);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  gap: 32px;
}

.nav__logo {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__logo-img {
  height: 30px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.nav__logo span {
  color: var(--black);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.nav__link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  position: relative;
}

.nav__link:hover,
.nav__link.is-current {
  color: var(--pink);
  background: rgba(201, 24, 74, 0.06);
}

.nav__dropdown {
  position: relative;
}

.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 8px 8px;
  min-width: 180px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
}

.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown-link {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  padding: 9px 14px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}

.nav__dropdown-link:hover,
.nav__dropdown-link.is-current {
  background: var(--blush);
  color: var(--pink);
}

.nav__dropdown-link.is-current {
  font-weight: 700;
}

.nav__cta {
  flex-shrink: 0;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.25s ease;
}

.nav__toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.22s ease;
  text-decoration: none;
  border: 2px solid transparent;
  padding: 13px 24px;
  white-space: nowrap;
}

.btn--primary {
  background: var(--pink);
  color: var(--white);
  border-color: var(--pink);
}

.btn--primary:hover {
  background: var(--pink-light);
  border-color: var(--pink-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201, 24, 74, 0.28);
}

.btn--outline {
  background: transparent;
  color: rgba(17, 17, 17, 0.90);
  border-color: rgba(17, 17, 17, 0.90);
}

.btn--outline:hover {
  border-color: rgba(17, 17, 17, 0.90);
  color: rgba(17, 17, 17, 0.90);
  background: rgba(17, 17, 17, 0.06);
  transform: translateY(-1px);
}

.btn--sm {
  font-size: 0.875rem;
  padding: 10px 18px;
}

.btn-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-group--center {
  justify-content: center;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

.section-actions {
  margin-top: 8px;
}

#galerie-preview .gallery-strip--featured {
  margin-bottom: 0;
}
#galerie-preview .section-actions {
  margin-top: -6px;
}

.content-narrow {
  max-width: 680px;
}

.section-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-center--narrow {
  max-width: 700px;
}

.section-center--compact {
  max-width: 560px;
}

.copy-large {
  font-size: 1.0625rem;
  color: var(--text);
  line-height: 1.75;
  margin-top: 20px;
}

.copy-large--loose {
  line-height: 1.78;
}

.copy-spaced {
  margin-bottom: 20px;
}

.copy-cta {
  margin-top: 16px;
  margin-bottom: 32px;
}

.content-list {
  margin-top: 20px;
  display: grid;
  gap: 12px;
}

.content-list li {
  position: relative;
  padding-left: 20px;
  color: var(--text);
  line-height: 1.7;
}

.content-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pink);
}

.page-hero__list {
  max-width: 520px;
  margin: -12px auto 36px;
  text-align: left;
}

.section-header .content-list,
.about-main .content-list,
.section-center .content-list,
.gallery-intro .content-list {
  max-width: 760px;
}

.section-title-spaced {
  margin-bottom: 24px;
}

.section-title-xl-spaced {
  margin-bottom: 36px;
}

.services-cta--spaced {
  margin-top: 40px;
}

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

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

.gallery-strip.gallery-strip--featured.gallery-strip--two {
  grid-template-columns: repeat(2, 1fr);
}

.gallery-strip.gallery-strip--featured.gallery-strip--centered {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 68%;
  margin-left: auto;
  margin-right: auto;
}

.gallery-strip.gallery-strip--featured {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  gap: 12px;
  padding-bottom: 60px;
  -webkit-mask-image: linear-gradient(to bottom, black calc(100% - 60px), rgba(0,0,0,0.55) calc(100% - 20px), transparent 100%);
  mask-image: linear-gradient(to bottom, black calc(100% - 60px), rgba(0,0,0,0.55) calc(100% - 20px), transparent 100%);
}

.gallery-strip.gallery-strip--featured .gallery-thumb {
  border-radius: var(--radius-lg);
}

.notice-box {
  margin-top: 20px;
  padding: 20px;
  background: var(--blush);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-pink);
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.notice-box--fb {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.notice-box__text {
  margin: 0;
}

.notice-box__fb-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(17, 17, 17, 0.22);
  background: transparent;
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  text-decoration: none;
  transition: border-color 0.22s, background 0.22s, color 0.22s;
}

.notice-box__fb-btn:hover {
  border-color: rgba(17, 17, 17, 0.45);
  background: rgba(17, 17, 17, 0.05);
  color: var(--text);
}

/* ===== HERO ===== */
.hero-wrap {
  position: relative;
  background: var(--white);
}

.hero-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 82% 22%, rgba(201, 24, 74, 0.28) 0%, transparent 42%),
    radial-gradient(circle at 94% 10%, rgba(155, 27, 74, 0.15) 0%, transparent 38%);
  pointer-events: none;
}

.hero-wrap > .about-strip {
  background: transparent;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: transparent;
  padding-top: var(--nav-h);
}

@media (min-width: 1025px) {
  .hero {
    min-height: 80vh;
  }
}

.hero__bg {
  display: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  padding-top: 80px;
  padding-bottom: 100px;
  text-align: center;
}

.hero__kicker {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  line-height: 1.45;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pink);
  margin: 0 auto 24px;
  padding: 7px 16px;
  background: rgba(201, 24, 74, 0.07);
  border-radius: 100px;
  border: 1px solid rgba(201, 24, 74, 0.14);
}

.hero__kicker-main::after {
  content: '·';
  margin-left: 8px;
  opacity: 0.4;
}

.hero__kicker-location {
  color: var(--pink);
}

.hero__title {
  max-width: 720px;
  margin: 0 auto 28px;
}

.hero__subtitle {
  font-size: 1.125rem;
  color: var(--text);
  max-width: 540px;
  line-height: 1.7;
  margin: 0 auto 44px;
}

.hero__badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 56px;
  flex-wrap: wrap;
}

.hero__badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink);
  flex-shrink: 0;
}

/* ===== ABOUT STRIP ===== */
.about-strip {
  padding: 80px 0;
  background: var(--white);
}

.about-strip__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-strip__label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pink);
  margin-bottom: 16px;
}

.about-strip__title {
  margin-bottom: 20px;
}

.about-strip__text {
  color: var(--text);
  line-height: 1.75;
  font-size: 1.0625rem;
}

.about-strip__action {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.about-strip__portrait {
  justify-self: end;
  width: min(100%, 437px);
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-pink);
  background: var(--blush);
  box-shadow: 0 18px 46px rgba(17, 17, 17, 0.10);
}

.about-strip__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== SERVICE CARDS ===== */
.services-section {
  padding: var(--section-py) 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 52px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: 0 12px 40px rgba(17, 17, 17, 0), 0 4px 12px rgba(17, 17, 17, 0);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
  position: relative;
  overflow: hidden;
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(17, 17, 17, 0.10), 0 4px 12px rgba(17, 17, 17, 0.05);
  border-color: var(--border-pink);
  background: rgba(201, 24, 74, 0.015);
}

.service-card__arrow {
  position: absolute;
  bottom: 26px;
  right: 26px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.service-card:hover .service-card__arrow {
  opacity: 1;
  transform: translateX(0);
}

.service-card__icon {
  width: 28px;
  height: 28px;
  margin-bottom: 20px;
  color: var(--pink);
}

.service-card__name {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 12px;
}

.service-card__desc {
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-card__price {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.services-cta {
  text-align: center;
  padding: 40px;
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.services-cta__text {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 24px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== WHY US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.why-item {
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 12px 40px rgba(17, 17, 17, 0), 0 4px 12px rgba(17, 17, 17, 0);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.why-item:hover {
  border-color: var(--border-pink);
  box-shadow: 0 12px 40px rgba(17, 17, 17, 0.10), 0 4px 12px rgba(17, 17, 17, 0.05);
  transform: translateY(-5px);
  background: rgba(201, 24, 74, 0.015);
}

.why-item__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--pink);
  margin-bottom: 20px;
}

.why-item__title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 10px;
}

.why-item__text {
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.65;
}

/* ===== GALLERY PREVIEW ===== */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin: 40px 0;
  padding-bottom: 48px;
  -webkit-mask-image: linear-gradient(to bottom, black calc(100% - 48px), transparent 100%);
  mask-image: linear-gradient(to bottom, black calc(100% - 48px), transparent 100%);
}

.gallery-thumb {
  display: block;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--white);
  position: relative;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}

button.gallery-thumb {
  width: 100%;
  border: 0;
  padding: 0;
  font: inherit;
  appearance: none;
  -webkit-appearance: none;
}

.gallery-thumb:focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 4px;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-thumb:hover img {
  transform: scale(1.06);
}

.gallery-thumb__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blush) 0%, rgba(201, 24, 74, 0.08) 100%);
}

.gallery-thumb__placeholder svg {
  width: 28px;
  height: 28px;
  opacity: 0.3;
  color: var(--pink);
}

/* ===== WEDDING HIGHLIGHT ===== */
.wedding-section {
  background: var(--white);
  padding: var(--section-py) 0;
  color: var(--text);
  position: relative;
  overflow: hidden;
}

.wedding-section::before {
  content: '';
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 78% 38%, rgba(201, 24, 74, 0.18) 0%, transparent 48%),
    linear-gradient(135deg, rgba(155, 27, 74, 0.07), transparent 72%);
}

.wedding-section::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--border-pink);
}

.wedding-section__inner {
  position: relative;
  z-index: 1;
}

.wedding-section__content {
  max-width: 640px;
}

.wedding-section__kicker {
  margin-left: 0;
  margin-right: 0;
  flex-direction: row;
  align-items: center;
  gap: 7px;
  width: fit-content;
}

.wedding-section__kicker svg {
  flex: 0 0 14px;
}

.wedding-section__title {
  color: var(--black);
  margin-bottom: 20px;
}

.wedding-section__text {
  color: var(--text);
  margin-bottom: 36px;
}

.wedding-section h2 {
  color: var(--black);
}

.wedding-section .lead {
  color: var(--text);
}

/* ===== GIFT VOUCHER ===== */
.gift-section {
  padding: var(--section-py) 0;
  background: var(--white);
}

.gift-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 56px 60px;
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
  position: relative;
  overflow: hidden;
}

.gift-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 84% 52%, rgba(201, 24, 74, 0.055) 0%, rgba(201, 24, 74, 0.028) 34%, rgba(201, 24, 74, 0) 70%);
  pointer-events: none;
}

.gift-card > * {
  position: relative;
  z-index: 1;
}

.gift-card__label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pink);
  margin-bottom: 16px;
}

.gift-card__title {
  margin-bottom: 16px;
}

.gift-card__text {
  font-size: 1.0rem;
  color: var(--text);
  line-height: 1.7;
  max-width: 480px;
}

.gift-amounts {
  display: flex;
  gap: 8px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.gift-amount {
  padding: 7px 12px;
  border: 1px solid rgba(201, 24, 74, 0.18);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.8125rem;
  color: var(--pink);
  background: rgba(201, 24, 74, 0.07);
}

.gift-card__action {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.gift-card__visual {
  flex-shrink: 0;
}

.gift-card-visual {
  width: 280px;
  height: 168px;
  background:
    radial-gradient(ellipse at 20% 60%, rgba(255, 140, 165, 0.30) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 20%, rgba(120, 10, 55, 0.40) 0%, transparent 50%),
    linear-gradient(135deg, #c9184a 0%, #a8154a 45%, #7b1040 100%);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 22px 26px;
  box-shadow: 0 16px 48px rgba(201, 24, 74, 0.35), 0 4px 16px rgba(120, 10, 55, 0.20);
  position: relative;
  overflow: hidden;
}

.gift-card-visual::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}

.gift-card-visual::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: -20px;
  width: 130px;
  height: 130px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.gift-card-visual__brand {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.gift-card-visual__value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: var(--section-py) 0;
  background: var(--white);
}

.contact-section.pulse-active .contact-block {
  animation: contactPulse 2.5s ease;
}

@keyframes contactPulse {
  0% { box-shadow: 0 0 0 0 rgba(201, 24, 74, 0); }
  25% { box-shadow: 0 0 0 8px rgba(201, 24, 74, 0.12), 0 0 40px rgba(201, 24, 74, 0.08); }
  60% { box-shadow: 0 0 0 4px rgba(201, 24, 74, 0.06); }
  100% { box-shadow: 0 0 0 0 rgba(201, 24, 74, 0); }
}

.contact-block {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 56px 60px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease;
}

.contact-block__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 56px;
  row-gap: 0;
  margin-top: 40px;
}

.contact-info-col {
  grid-column: 1;
  grid-row: 1;
}

.contact-map-col {
  grid-column: 2;
  grid-row: 1;
}

.contact-maps-btn {
  grid-column: 2;
  grid-row: 2;
  margin-top: 32px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item__icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--pink);
  margin-top: 3px;
}

.contact-item__label {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.contact-item__value {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.45;
}

.contact-item__sub {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-top: 3px;
}

.contact-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.contact-buttons--inline {
  margin-top: 4px;
  padding-left: 40px;
  flex-wrap: nowrap;
}

.contact-buttons--inline .btn {
  white-space: nowrap;
}

.map-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 12px;
  position: relative;
  width: 100%;
  background:
    linear-gradient(135deg, rgba(255, 240, 243, 0.92), rgba(255, 255, 255, 0.7)),
    radial-gradient(circle at 25% 25%, rgba(201, 24, 74, 0.12), transparent 36%);
  border: 1px solid var(--border);
}

.contact-map-col .map-frame {
  height: 100%;
  margin-bottom: 0;
}

.map-frame--home {
  height: 240px;
}

.map-frame--contact {
  height: 260px;
}

.map-frame__iframe {
  border: none;
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.map-open-link {
  margin-bottom: 20px;
}

.map-open-link--large {
  margin-bottom: 24px;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-item__value--large {
  font-size: 1.25rem;
}

.contact-item__sub--spaced {
  margin-top: 6px;
}

.contact-buttons--compact {
  margin-top: 12px;
}

.how-to-find {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.how-to-find__title {
  margin-bottom: 24px;
  font-size: 1.05rem;
}

.how-step {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: center;
}

.how-step:last-child {
  margin-bottom: 0;
}

.how-step__num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.how-step__text {
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.65;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--footer-berry);
  color: rgba(255, 255, 255, 0.6);
  padding: 64px 0 36px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.1fr;
  gap: 56px;
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 24px;
}

.footer__brand {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.footer__brand span {
  color: var(--white);
}

.footer__tagline {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  max-width: 200px;
  line-height: 1.55;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: flex-start;
}

.footer__nav::before {
  content: 'Navigace';
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 18px;
  cursor: default;
  pointer-events: none;
}

.footer__social {
  display: flex;
  gap: 2px;
  margin-top: 18px;
  justify-content: flex-start;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: rgba(255, 255, 255, 0.42);
  transition: color 0.22s ease, transform 0.22s ease;
  transform: scale(1);
}

.footer__social-link:hover {
  color: rgba(255, 255, 255, 0.95);
  transform: scale(1.2);
}

.contact-unified-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.contact-unified-left {
  padding: 40px;
  border-right: 1px solid var(--border);
}

.contact-unified-right {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}


.contact-unified-col-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.contact-unified-left .contact-buttons--compact {
  margin-top: 20px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.contact-social {
  display: flex;
  gap: 2px;
  margin-top: 16px;
  margin-left: -11px;
  align-items: center;
}

.contact-social__link {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text-secondary);
  transition: color 0.2s ease, transform 0.22s ease;
  transform: scale(1);
}

.contact-social__link:hover {
  color: var(--pink);
  transform: scale(1.18);
}

.footer__nav-link {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
  padding: 4px 0;
}

.footer__nav-link:hover {
  color: var(--white);
}

.footer__contact {
  display: flex;
  flex-direction: column;
}

.footer__contact::before {
  content: 'Kontakt';
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 18px;
  cursor: default;
  pointer-events: none;
}

.footer__phone {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.footer__email {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.3);
  flex-wrap: wrap;
  gap: 8px;
}

/* ===== PAGE HERO (subpages) ===== */
.hero-about-wrap {
  position: relative;
  background: var(--white);
}

.hero-about-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 80% 18%, rgba(201, 24, 74, 0.14) 0%, transparent 55%),
    radial-gradient(circle at 95% 6%, rgba(155, 27, 74, 0.10) 0%, transparent 40%);
  pointer-events: none;
}

.hero-about-wrap > .section--white {
  background: transparent;
}

.page-hero {
  padding-top: calc(var(--nav-h) + 64px);
  padding-bottom: 64px;
  background: transparent;
  position: relative;
}

.page-hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: var(--text-secondary);
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--pink);
}

.breadcrumb__sep {
  opacity: 0.4;
}

.page-hero__kicker {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pink);
  margin-bottom: 16px;
  display: block;
}

.page-hero__title {
  margin-bottom: 20px;
  max-width: 640px;
}

.page-hero__subtitle {
  font-size: 1.0625rem;
  color: var(--text);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.page-divider {
  padding: 0 24px;
  max-width: calc(var(--max-w) + 48px);
  margin: 0 auto;
  transform: translateY(calc((var(--section-py) - 64px) / 2));
  position: relative;
  z-index: 1;
}
.page-divider::before {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(17, 17, 17, 0.10) 25%, rgba(17, 17, 17, 0.10) 75%, transparent);
}

.page-hero--gallery {
  padding-bottom: 46px;
}

.page-hero--gallery::after {
  content: '';
  position: absolute;
  left: max(24px, calc((100vw - var(--max-w)) / 2 + 24px));
  right: max(24px, calc((100vw - var(--max-w)) / 2 + 24px));
  bottom: 0;
  height: 1px;
  background: var(--border);
}

/* ===== SERVICE DETAIL CARDS ===== */
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-detail-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
  display: flex;
  flex-direction: column;
}

.service-detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(17, 17, 17, 0.10), 0 4px 12px rgba(17, 17, 17, 0.05);
  border-color: var(--border-pink);
  background: rgba(201, 24, 74, 0.015);
}

.service-detail-card__name {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 10px;
}

.service-detail-card__desc {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 24px;
}

.service-detail-card__benefit {
  font-size: 0.875rem;
  color: var(--text-secondary);
  padding-top: 20px;
  border-top: 1px solid var(--border);
  margin-bottom: 16px;
}

.service-detail-card__pricing {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-top: auto;
}

.sdc-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--pink);
  letter-spacing: 0;
}

.sdc-sep {
  font-size: 0.875rem;
  color: oklch(60% 0.01 340);
  font-weight: 400;
  margin: 0 1px;
}

.sdc-dur {
  font-size: 0.875rem;
  color: oklch(60% 0.01 340);
}

.service-detail-card__meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.service-detail-card__icon {
  margin-bottom: 16px;
}

.service-detail-card__icon svg {
  width: 36px;
  height: 36px;
  color: var(--pink);
  stroke: currentColor;
}

.service-tag {
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: 100px;
}

.service-tag--price {
  background: rgba(201, 24, 74, 0.08);
  color: var(--pink);
}

.service-tag--time {
  background: rgba(17, 17, 17, 0.05);
  color: var(--text-secondary);
}

/* ===== GALLERY PAGE ===== */
.gallery-filters {
  display: flex;
  gap: 8px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.gallery-section {
  padding-top: 46px;
}

.gallery-filter {
  padding: 9px 20px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid var(--border);
  background: transparent;
  color: var(--text-secondary);
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
}

.gallery-filter:hover,
.gallery-filter.active {
  border-color: var(--pink);
  color: var(--pink);
  background: rgba(201, 24, 74, 0.06);
}

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

.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--white);
  cursor: pointer;
  position: relative;
}

.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--blush) 0%, rgba(201, 24, 74, 0.07) 100%);
  color: rgba(201, 24, 74, 0.35);
  font-size: 0.8125rem;
  font-weight: 500;
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.22s;
}

.gallery-item__overlay svg {
  width: 32px;
  height: 32px;
  color: white;
}

/* ===== ABOUT PAGE ===== */
.about-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.about-main {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
  align-items: start;
}

.about-photo {
  background: var(--blush);
  border-radius: var(--radius-xl);
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-pink);
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.timeline {
  margin-top: 40px;
}

.timeline-track {
  position: relative;
  padding-left: 26px;
}

.timeline-track__bg-line,
.timeline-track__fill-line {
  position: absolute;
  left: 4px;
  top: 8px;
  width: 2px;
  border-radius: 1px;
}

.timeline-track__bg-line {
  bottom: 8px;
  background: var(--border-pink);
}

.timeline-track__fill-line {
  height: 0;
  bottom: auto;
  background: var(--pink);
  transition: height 1.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.timeline.animate-in .timeline-track__fill-line {
  height: calc(100% - 16px);
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
  position: relative;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item__dot {
  position: absolute;
  left: -26px;
  top: 3px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border-pink);
  z-index: 1;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.timeline.animate-in .timeline-track .timeline-item:nth-child(3) .timeline-item__dot {
  background: var(--pink);
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(201, 24, 74, 0.12);
  transition-delay: 0.1s;
}

.timeline.animate-in .timeline-track .timeline-item:nth-child(4) .timeline-item__dot {
  background: var(--pink);
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(201, 24, 74, 0.12);
  transition-delay: 0.85s;
}

.timeline.animate-in .timeline-track .timeline-item:nth-child(5) .timeline-item__dot {
  background: var(--pink);
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(201, 24, 74, 0.12);
  transition-delay: 1.5s;
}

.timeline-item__body {
  flex: 1;
}

.timeline-item__year {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--pink);
  margin-bottom: 4px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.timeline-item__text {
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.65;
  margin: 0;
}

.about-value {
  padding: 28px;
  background: var(--blush);
  border-radius: var(--radius-md);
  border: 1px solid rgba(201, 24, 74, 0.08);
}

.about-value__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-value__icon {
  width: 20px;
  height: 20px;
  color: var(--pink);
  flex-shrink: 0;
}

.about-value__text {
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.65;
}

/* ===== PROČ JÁ ===== */
.proc-ja-section {
  border-top: 1px solid var(--border);
}

.proc-ja-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.proc-ja-card {
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 12px 40px rgba(17, 17, 17, 0), 0 4px 12px rgba(17, 17, 17, 0);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.proc-ja-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(17, 17, 17, 0.10), 0 4px 12px rgba(17, 17, 17, 0.05);
  border-color: var(--border-pink);
  background: rgba(201, 24, 74, 0.015);
}

.proc-ja-card__icon {
  width: 28px;
  height: 28px;
  color: var(--pink);
  margin-bottom: 20px;
  flex-shrink: 0;
}

.proc-ja-card__icon svg {
  width: 100%;
  height: 100%;
}

.proc-ja-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 10px;
}

.proc-ja-card__text {
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.65;
  margin: 0;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, 0.9);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  backdrop-filter: blur(4px);
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: var(--radius-md);
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background 0.2s;
}

.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.22);
}

.lightbox__frame {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  z-index: 1;
}

.lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-50%) scale(1.04);
}

.lightbox__nav--prev {
  left: -68px;
}

.lightbox__nav--next {
  right: -68px;
}

/* ===== ERROR PAGE ===== */
.error-page {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
}

/* ===== DIVIDER ===== */
.divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* ===== MOBILE NAV ===== */
.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  right: 0;
  left: auto;
  bottom: 0;
  width: min(86vw, 360px);
  background: #FFFFFF;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: stretch;
  text-align: right;
  border-left: 1px solid var(--border);
  box-shadow: -18px 0 44px rgba(17, 17, 17, 0.08);
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu__link,
.mobile-menu__services-toggle,
.mobile-menu__sublink {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--black);
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  text-align: right;
}

.mobile-menu__services-toggle {
  width: 100%;
  border: none;
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
}

.mobile-menu__arrow {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 18px;
  order: -1;
  transform-origin: 50% 50%;
  transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

.mobile-menu__arrow svg {
  width: 18px;
  height: 18px;
  display: block;
}

.mobile-menu__services-toggle.open .mobile-menu__arrow {
  transform: rotate(180deg);
}

.mobile-menu__services {
  display: grid;
  gap: 4px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0;
  margin-bottom: 0;
  border-bottom: 1px solid transparent;
  transition:
    max-height 0.32s cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 0.22s ease,
    padding 0.22s ease,
    margin-bottom 0.22s ease,
    border-color 0.22s ease;
}

.mobile-menu__services[hidden] {
  display: none;
}

.mobile-menu__services.open {
  border-bottom-color: var(--border);
  margin-bottom: 8px;
  padding: 0 0 10px;
  opacity: 1;
}

.mobile-menu__sublink {
  font-size: 1.1rem;
  color: var(--text);
  padding: 14px 16px;
}

.mobile-menu__link:hover,
.mobile-menu__services-toggle:hover,
.mobile-menu__sublink:hover,
.mobile-menu__link.is-current,
.mobile-menu__sublink.is-current {
  background: rgba(201, 24, 74, 0.07);
  color: var(--pink);
}

.mobile-menu__link,
.mobile-menu__sublink,
.mobile-menu__services-toggle {
  position: relative;
}

.mobile-menu__reserve {
  margin-top: 0;
  background: transparent;
  color: var(--black);
  justify-content: flex-end;
}

.mobile-menu__reserve:hover {
  background: rgba(201, 24, 74, 0.07);
  color: var(--pink);
}

.mobile-menu .btn--primary {
  align-self: flex-end;
}


/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  :root {
    --section-py: 72px;
  }

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

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

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

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

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

  .about-strip__inner {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
    gap: 36px;
  }

  .about-strip__portrait {
    justify-self: end;
    width: min(100%, 300px);
  }

  .gift-card {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px;
  }

  .contact-block {
    padding: 40px 20px;
  }

  .contact-unified-left,
  .contact-unified-right {
    padding-left: 20px;
    padding-right: 20px;
  }

  .gift-card__visual {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --section-py: 56px;
    --nav-h: 64px;
  }

  .service-card__arrow {
    opacity: 1;
    transform: translateX(0);
  }

  .gallery-strip.gallery-strip--featured {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .gallery-strip.gallery-strip--featured.gallery-strip--centered {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .nav__links, .nav__cta {
    display: none;
  }

  .nav__toggle {
    display: flex;
  }

  .hero-wrap::before {
    width: 100%;
    background-image:
      radial-gradient(circle at 90% 12%, rgba(201, 24, 74, 0.22) 0%, transparent 50%),
      radial-gradient(circle at 60% 40%, rgba(155, 27, 74, 0.10) 0%, transparent 45%);
  }

  .hero__inner {
    padding-top: 48px;
    padding-bottom: 64px;
  }

  .hero__kicker {
    margin-bottom: 18px;
  }

  .hero__kicker-main::after {
    display: none;
  }

  .hero__actions {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 10px;
  }

  .hero__actions .btn {
    padding: 12px 14px;
    font-size: 0.875rem;
  }

  .section-header {
    margin-bottom: 30px;
  }

  .section-header.centered .lead,
  .section-header .lead {
    margin-top: 16px;
  }

  .page-hero__kicker {
    margin-bottom: 8px;
  }

  .page-hero__title,
  .about-strip__title,
  .wedding-section__title,
  .gift-card__title {
    margin-bottom: 10px;
  }

  .page-hero__subtitle {
    margin-bottom: 22px;
  }

  .page-hero__list {
    margin-bottom: 32px;
  }

  .about-strip__text,
  .wedding-section__text,
  .gift-card__text,
  .copy-large {
    margin-top: 0;
  }

  .section-center h2 + .copy-cta {
    margin-top: 18px;
  }

  .services-cta__text {
    margin-bottom: 12px;
  }

  .gallery-section {
    padding-top: 34px;
  }

  .page-hero--gallery {
    padding-bottom: 34px;
  }

  .gallery-filters {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 28px;
  }

  .gallery-filter {
    grid-column: span 2;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    text-align: center;
  }

  .gallery-filter:nth-child(4),
  .gallery-filter:nth-child(5) {
    grid-column: span 3;
  }

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

  .service-detail-grid {
    grid-template-columns: 1fr;
  }

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

  .proc-ja-grid {
    grid-template-columns: 1fr;
  }

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

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

  .contact-block {
    padding: 32px 12px;
  }

  .contact-block__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-info-col {
    grid-column: 1;
    grid-row: 1;
  }

  .contact-map-col {
    grid-column: 1;
    grid-row: 2;
    margin-top: 28px;
  }

  .contact-map-col .map-frame {
    height: 220px;
  }

  .contact-buttons--inline {
    padding-left: 0;
    margin-top: 0;
  }

  .contact-maps-btn {
    grid-column: 1;
    grid-row: 3;
    margin-top: 12px;
  }

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

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

  .contact-unified-left {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 36px 20px;
  }

  .contact-unified-right {
    padding: 36px 20px;
  }

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

  .about-strip__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-strip__portrait {
    justify-self: stretch;
    width: 100%;
  }

  .about-photo {
    aspect-ratio: 3 / 4;
    max-height: none;
    width: 100%;
    max-width: none;
  }

  .about-photo img {
    object-position: center 38%;
  }


  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__nav {
    align-items: flex-start;
    gap: 4px;
  }

  .footer__social {
    justify-content: flex-start;
    margin-top: 12px;
  }

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

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

  .hero__badges {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .hero__kicker {
    flex-direction: column;
    gap: 0;
    white-space: normal;
    text-align: center;
    justify-content: center;
  }

  .wedding-section__kicker {
    flex-direction: row;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
    text-align: left;
  }

  .about-strip__portrait {
    justify-self: stretch;
    width: 100%;
    max-width: none;
  }

  .content-list li {
    padding-left: 18px;
  }

  .gift-card {
    padding: 28px 20px;
  }

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

  .gallery-strip.gallery-strip--featured {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

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

  .contact-block {
    padding: 24px 10px;
  }

  .btn-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-hero .btn-group {
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
  }

  .page-hero .btn-group .btn {
    padding: 12px 14px;
    font-size: 0.875rem;
  }

  .wedding-section .btn-group {
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
  }

  .hero__actions {
    flex-direction: row;
    align-items: center;
  }

  .btn-group--center {
    align-items: center;
  }

  .lightbox__nav {
    width: 42px;
    height: 42px;
  }

  .lightbox__nav--prev {
    left: 12px;
  }

  .lightbox__nav--next {
    right: 12px;
  }

}
