    :root {
      --cream: #F9F8F4;
      --sand: #F2EBE0;
      --peach: #E8DECE;
      --pink: #E07BB2;
      --pink-dark: #C85E9A;
      --blue: #3D6D78;
      --blue-dark: #1C3840;
      --mid: #4A6E7A;
      --rule: #D5E0E3;
      --white: #FFFFFF;
      --footer: #3F3F3F;
      --gold: #C9A86C;
      --max: 1360px;
      --nav-h: 136px;
      --serif: 'Cormorant Garamond', Georgia, serif;
      --sans: 'Jost', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      --script: cursive;
      --text-sm: 0.875rem;
      --text-base: 1rem;
      --text-md: 1.1rem;
      --text-lg: 1.2rem;
      --blue-light: #E8F0F2;
      --off-white: #FAF8F3;
      --error: #C0392B;
      --footer-bg: #0A1F24;
      --icon: #123C46;
      --icon-hover: #D97AB0;
    }

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

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

    html {
      scroll-behavior: smooth;
      overflow-x: hidden;
    }

    body {
      font-family: var(--sans);
      background: var(--white);
      color: var(--blue-dark);
      font-size: 18px;
      font-weight: 400;
      line-height: 1.8;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
      width: 100%;
    }

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

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

    ul {
      list-style: none;
    }

    /* ===================== CBM SVG ICON SYSTEM ===================== */
    .cbm-icon {
      width: 42px;
      height: 42px;
      color: var(--icon);
      stroke: currentColor;
      fill: none;
      stroke-width: 1.6;
      stroke-linecap: round;
      stroke-linejoin: round;
      transition: color 0.25s ease, transform 0.25s ease;
    }

    .cbm-icon-wrap:hover .cbm-icon,
    .cbm-icon-wrap:focus-within .cbm-icon {
      color: var(--icon-hover);
      transform: translateY(-2px);
    }

    .wrap {
      width: 100%;
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 64px;
    }

    .section {
      padding: 112px 0;
    }

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

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

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 50px;
      padding: 14px 36px;
      border: 1.5px solid transparent;
      border-radius: 3px;
      font-family: var(--sans);
      font-size: var(--text-sm);
      font-weight: 500;
      letter-spacing: .06em;
      text-transform: uppercase;
      cursor: pointer;
      transition: background .22s ease, color .22s ease, border-color .22s ease, transform .18s ease, box-shadow .22s ease;
      white-space: nowrap;
    }

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

    .btn--pink:hover {
      background: var(--pink-dark);
      border-color: var(--pink-dark);
      transform: translateY(-2px);
      box-shadow: 0 10px 28px rgba(224, 123, 178, .32);
    }

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

    .btn--blue:hover {
      background: var(--blue-dark);
      border-color: var(--blue-dark);
      transform: translateY(-2px);
      box-shadow: 0 10px 28px rgba(61, 109, 120, .28);
    }

    .btn--line {
      background: transparent;
      color: var(--blue-dark);
      border-color: var(--blue-dark);
    }

    .btn--line:hover {
      background: var(--blue-dark);
      color: var(--white);
      transform: translateY(-2px);
      box-shadow: 0 10px 28px rgba(28, 56, 64, .18);
    }

    .btn--pink-line {
      background: transparent;
      color: var(--pink);
      border-color: var(--pink);
    }

    .btn--pink-line:hover {
      background: var(--pink);
      color: var(--white);
      transform: translateY(-2px);
      box-shadow: 0 10px 28px rgba(224, 123, 178, .28);
    }

    .btn--light {
      background: transparent;
      color: var(--white);
      border-color: rgba(255, 255, 255, .68);
    }

    .btn--light:hover {
      background: rgba(255, 255, 255, .14);
      border-color: var(--white);
      transform: translateY(-2px);
    }

    .btn--text {
      background: transparent;
      border-color: transparent;
      color: var(--blue-dark);
      padding-left: 0;
      padding-right: 0;
      border-bottom: 1px solid var(--blue-dark);
      border-radius: 0;
      letter-spacing: .06em;
    }

    .btn--text:hover {
      color: var(--pink);
      border-bottom-color: var(--pink);
      transform: none;
      box-shadow: none;
    }

    .contact-row {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 20px;
      margin-top: 32px;
    }

    .contact-row__item {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: var(--text-sm);
      font-weight: 400;
      letter-spacing: .03em;
      color: var(--mid);
      transition: color .2s;
    }

    .contact-row__item:hover {
      color: var(--blue-dark);
    }

    .contact-row__item svg {
      flex-shrink: 0;
      opacity: .7;
    }

    .ig-nudge {
      font-size: var(--text-base);
      color: var(--mid);
      letter-spacing: .03em;
    }

    .ig-nudge a {
      color: var(--dark);
      font-weight: 500;
      text-decoration: none;
      transition: color .2s;
    }

    .ig-nudge__link {
      display: inline-flex;
      align-items: center;
      gap: 5px;
    }

    .ig-nudge a:hover {
      color: var(--blue-dark);
    }

    .contact-row__sep {
      width: 1px;
      height: 16px;
      background: var(--rule);
      display: inline-block;
    }

    .contact-row--center {
      justify-content: center;
    }

    /* ===================== NAV ===================== */
    .nav {
      position: fixed;
      inset: 0 0 auto;
      z-index: 50;
      height: var(--nav-h);
      background: transparent;
      border-bottom: 1px solid transparent;
      box-shadow: none;
      transition: height .35s ease, background .4s ease, border-color .4s ease, box-shadow .4s ease;
    }

    .nav.is-scrolled {
      height: 64px;
      background: var(--white);
      border-bottom: 1px solid var(--rule);
      box-shadow: 0 2px 24px rgba(28, 56, 64, .08);
    }

    .nav__inner {
      height: 100%;
      max-width: calc(var(--max) + 200px);
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 36px;
      padding: 0 64px;
    }

    .nav__logo img {
      height: 112px;
      width: auto;
      transition: height .35s ease, filter .4s ease;
    }

    .nav--home .nav__logo img {
      filter: brightness(0) invert(1) drop-shadow(0 2px 18px rgba(0, 0, 0, .6));
    }

    .nav.is-scrolled .nav__logo img {
      height: 60px;
      filter: none;
    }

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

    .nav__links a {
      position: relative;
      display: inline-flex;
      padding: 8px 14px;
      color: var(--white);
      font-size: var(--text-sm);
      font-weight: 400;
      text-transform: uppercase;
      letter-spacing: 0;
      transition: color .2s ease;
    }

    .nav.is-scrolled .nav__links a {
      color: var(--blue-dark);
    }

    .nav__links a::after {
      content: '';
      position: absolute;
      left: 14px;
      right: 14px;
      bottom: 4px;
      height: 1px;
      background: var(--pink);
      transform: scaleX(0);
      transform-origin: center;
      transition: transform .25s ease;
    }

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

    .nav__links a:hover::after {
      transform: scaleX(1);
    }

    .nav__cta {
      margin-left: 6px;
      padding: 10px 22px;
      min-height: 40px;
      font-size: var(--text-sm);
    }

    .nav__links-cta {
      display: none;
    }

    .nav__burger {
      display: none;
      width: 42px;
      height: 42px;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      background: transparent;
      border: 0;
      cursor: pointer;
      margin-left: auto;
    }

    .nav__burger span {
      width: 22px;
      height: 1.5px;
      background: var(--white);
      overflow: hidden;
      font-size: 0;
      transition: transform .25s ease, background .35s ease;
    }

    .nav.is-scrolled .nav__burger span {
      background: var(--blue-dark);
    }

    /* ===================== HERO ===================== */
    .hero {
      position: relative;
      min-height: 82vh;
      display: flex;
      align-items: stretch;
      justify-content: center;
      overflow: hidden;
    }

    .hero__bg {
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    .hero__bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 0% 55%;
      display: block;
    }

    @media (prefers-reduced-motion: reduce) {
      .hero__bg img { animation: none; }
    }

    .hero__overlay {
      position: absolute;
      inset: 0;
      z-index: 1;
      background: linear-gradient(108deg, rgba(0, 0, 0, .9) 0%, rgba(0, 0, 0, .74) 45%, rgba(0, 0, 0, .25) 100%);
    }

    .hero__wrap {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: clamp(520px, 56%, 700px) 1fr;
      align-items: stretch;
      width: 100%;
      max-width: var(--max);
      padding: 0;
    }

    .hero__glass {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: calc(var(--nav-h) + 72px) 48px 140px;
      color: var(--white);
    }

    .hero__eyebrow {
      display: flex;
      align-items: center;
      gap: 14px;
      font-family: var(--sans);
      font-size: var(--text-base);
      font-weight: 500;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .5);
      margin-bottom: 16px;
    }

    .hero__eyebrow::before {
      display: none;
    }

    .hero__headline {
      font-family: var(--serif);
      font-size: clamp(3.2rem, 5.4vw, 5.6rem);
      font-weight: 400;
      line-height: 1.14;
      color: var(--white);
      letter-spacing: .02em;
      margin-bottom: 24px;
      text-shadow: 0 2px 32px rgba(0, 0, 0, .22);
      font-weight: 700;
    }

    .hero__headline-accent {
      color: var(--pink);
      font-style: italic;
      font-weight: 400;
      letter-spacing: .02em;
    }

    .hero__perex {
      font-family: var(--sans);
      font-size: var(--text-lg);
      font-weight: 400;
      line-height: 1.65;
      color: rgba(255, 255, 255, .78);
      margin-bottom: 36px;
      max-width: 28em;
    }

    .hero__br--mob { display: none; }
    @media (max-width: 820px) {
      .hero__br--mob { display: block; }
    }

    .hero__sub {
      font-family: var(--sans);
      font-size: var(--text-sm);
      font-weight: 400;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .52);
      margin-bottom: 0;
    }

    .hero__rule {
      width: 36px;
      height: 1px;
      background: rgba(255, 255, 255, .25);
      margin: 36px 0;
    }

    .hero__author {
      margin-top: 28px;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, .15);
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .hero__author-avatar {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      object-fit: cover;
      object-position: center top;
      flex-shrink: 0;
      border: 2px solid rgba(255, 255, 255, .25);
      transform: scaleX(-1);
    }

    .hero__author-cred {
      display: block;
      font-size: var(--text-sm);
      font-weight: 500;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .45);
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-size: var(--text-sm);
      font-weight: 500;
      color: var(--mid);
      text-transform: uppercase;
      letter-spacing: .1em;
      margin-bottom: 0;
    }

    .eyebrow::before {
      display: none;
    }

    .hero__h1 {
      font-weight: 400;
      margin-bottom: 28px;
      line-height: 0.7;
      margin-top: -8px;
    }

    .hero__serif-word {
      font-family: var(--serif);
      font-weight: 400;
      font-size: 0.72em;
      text-transform: uppercase;
      letter-spacing: 0.22em;
    }

    .hero__h1 em {
      display: block;
      font-family: var(--serif);
      font-size: clamp(1.5rem, 2.4vw, 2.2rem);
      font-style: italic;
      color: var(--pink);
      line-height: 1.3;
      font-weight: 400;
    }

    .hero__lead {
      max-width: 520px;
      color: var(--mid);
      font-size: var(--text-base);
      line-height: 1.85;
      margin-bottom: 38px;
    }

    .hero__tagline {
      font-family: var(--sans);
      font-style: normal;
      font-weight: 400;
      font-size: var(--text-lg);
      color: var(--white);
      letter-spacing: .01em;
      margin-top: 0;
      margin-bottom: 22px;
      text-shadow: 0 1px 8px rgba(0, 0, 0, .4);
    }

    .hero__actions {
      display: flex;
      gap: 12px;
      flex-wrap: nowrap;
      margin-bottom: 28px;
    }

    .hero__meta {
      display: flex;
      flex-wrap: wrap;
      gap: 10px 24px;
      font-size: var(--text-sm);
      margin-top: 0;
    }

    .hero__meta span {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      color: var(--white);
      text-shadow: 0 1px 6px rgba(0, 0, 0, .45);
    }

    .hero__meta svg {
      flex-shrink: 0;
      color: var(--white);
    }

    /* ===================== VALUES (integrated in kavárna) ===================== */
    .values__grid {
      grid-column: 1 / -1;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      margin-top: 56px;
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 64px;
    }

    .value {
      text-align: center;
      padding: 52px 56px 56px;
      position: relative;
      min-width: 0;
    }

    .value img {
      width: 80px;
      height: 80px;
      object-fit: contain;
      margin: 0 auto 20px;
      opacity: .85;
    }

    .value h3 {
      font-family: var(--serif);
      font-weight: 500;
      font-size: var(--text-base);
      color: var(--blue-dark);
      margin-bottom: 8px;
    }

    .value p {
      color: var(--mid);
      font-size: var(--text-base);
      line-height: 1.7;
    }

    /* ===================== INTRO / KAVÁRNA ===================== */
    .intro {
      background: var(--white);
      padding: 112px 0 172px;
    }

    .intro__wrap {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      gap: 72px;
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 64px;
    }

    .intro__media {
      position: relative;
      display: flex;
      flex-direction: column;
    }

    .intro__media__main {
      width: 100%;
      aspect-ratio: 1 / 1;
      overflow: hidden;
      position: relative;
      border-radius: 16px;
      box-shadow: 0 20px 64px rgba(28, 56, 64, .22);
    }

    .intro__media__main img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .9s ease;
    }

    .intro__media:hover .intro__media__main img {
      transform: scale(1.035);
    }

    .intro__media__accent {
      position: absolute;
      bottom: -72px;
      left: -72px;
      width: 68%;
      aspect-ratio: 4/3;
      overflow: hidden;
      border-radius: 16px;
      box-shadow: 0 16px 52px rgba(28, 56, 64, .22);
      transition: transform .4s ease, box-shadow .4s ease;
      z-index: 2;
    }

    .intro__media__accent:hover {
      transform: scale(1.02);
      box-shadow: 0 24px 64px rgba(28, 56, 64, .26);
    }

    .intro__media__accent img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .kavarna-mosaic {
      flex: 1;
      min-height: 0;
    }

    .kavarna-mosaic__top {
      position: relative;
      width: 100%;
      height: 100%;
      overflow: hidden;
      border-radius: 16px;
      box-shadow: 0 8px 32px rgba(28, 56, 64, .18);
    }

    .kavarna-mosaic__top img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .6s ease;
    }

    .kavarna-mosaic__top:hover img {
      transform: scale(1.04);
    }

    .intro__body {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 0;
    }

    .intro__body .section-title {
      margin-bottom: 16px;
    }

    .intro__body .link-row {
      margin-top: 40px;
    }

    .intro__body .ig-nudge {
      margin-top: 12px;
    }

    .script {
      display: flex;
      align-items: center;
      gap: 12px;
      font-family: var(--sans);
      font-size: var(--text-sm);
      font-weight: 500;
      letter-spacing: .14em;
      text-transform: uppercase;
      line-height: 1.4;
      color: var(--pink);
      margin-bottom: 18px;
    }

    .script::before,
    .script::after {
      content: '';
      width: 34px;
      height: 1px;
      background: currentColor;
    }

    .script::before,
    .script::after {
      display: none;
    }

    .section-title {
      font-family: var(--serif);
      font-size: clamp(2.1rem, 3.2vw, 2.9rem);
      line-height: 1.16;
      font-weight: 400;
      color: var(--blue-dark);
      margin-bottom: 24px;
    }

    .section-title em {
      color: var(--mid);
      font-style: italic;
    }

    .section-title--bold {
      font-weight: 400;
      letter-spacing: .02em;
    }

    .section-title--bold em {
      font-weight: 400;
      font-style: italic;
    }

    .text {
      max-width: 560px;
      color: var(--mid);
      font-size: var(--text-lg);
      line-height: 1.65;
    }

    .text+.text {
      margin-top: 14px;
    }

    .link-row {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 34px;
    }

    .mini-list {
      margin-top: 28px;
      max-width: 520px;
    }

    .cakes__tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      justify-content: center;
      margin-top: 28px;
      margin-bottom: 4px;
    }

    .cakes__tag {
      padding: 8px 18px;
      border: 1px solid var(--rule);
      border-radius: 2px;
      font-family: var(--sans);
      font-size: var(--text-sm);
      font-weight: 400;
      letter-spacing: .03em;
      color: var(--mid);
    }

    .mini-list li {
      display: flex;
      gap: 14px;
      padding: 7px 0;
      color: var(--mid);
      font-size: var(--text-base);
    }

    .mini-list li::before {
      content: '';
      width: 6px;
      height: 6px;
      margin-top: 10px;
      background: var(--blue);
      transform: rotate(45deg);
      flex: 0 0 auto;
    }

    .intro-features {
      display: flex;
      justify-content: flex-start;
      align-items: flex-start;
      gap: 28px;
      margin-top: 28px;
      padding: 0;
    }

    .intro-bullets {
      list-style: none;
      padding: 0;
      margin: 24px 0 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .wedding__tasting-label + .intro-bullets {
      margin-top: 6px;
    }

    .intro-bullets li {
      font-size: var(--text-md);
      line-height: 1.6;
      color: var(--mid);
      padding-left: 16px;
      position: relative;
    }

    .intro-bullets li::before {
      content: '◆';
      position: absolute;
      left: 0;
      top: 0;
      color: var(--pink);
      font-size: .65em;
      line-height: 2.5;
    }

    .intro-feature {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 10px;
      min-width: 0;
      flex: 1;
    }

    .intro-feature__icon {
      width: 64px;
      height: 64px;
      object-fit: contain;
      flex-shrink: 0;
    }

    .intro-feature__title {
      font-family: var(--sans);
      font-size: var(--text-sm);
      font-weight: 500;
      letter-spacing: .04em;
      line-height: 1.45;
      text-transform: none;
      color: var(--blue-dark);
      margin: 0;
    }

    .mini-list--light li {
      color: rgba(255, 255, 255, .82);
      border-bottom-color: rgba(255, 255, 255, .16);
    }

    .mini-list--light li::before {
      background: rgba(255, 255, 255, .78);
    }

    /* ===================== PHOTO STRIP ===================== */
    .photo-strip {
      display: grid;
      grid-template-columns: .9fr 1.2fr .9fr;
      gap: 20px;
      max-width: var(--max);
      margin: 0 auto;
      padding: 42px 56px 100px;
      background: var(--white);
    }

    .photo-strip a {
      position: relative;
      overflow: hidden;
      min-width: 0;
      background: var(--white);
    }

    .photo-strip a:nth-child(1),
    .photo-strip a:nth-child(3) {
      height: 300px;
      margin-top: 56px;
    }

    .photo-strip a:nth-child(2) {
      height: 440px;
    }

    .photo-strip img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .85s ease, filter .85s ease;
    }

    .photo-strip a:hover img {
      transform: scale(1.04);
      filter: saturate(1.04);
    }

    .photo-strip__label {
      position: absolute;
      inset: auto 0 0;
      padding: 28px 18px 14px;
      background: linear-gradient(to top, rgba(28, 24, 21, .62) 0%, transparent 100%);
      color: rgba(255, 255, 255, .9);
      font-size: var(--text-sm);
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: .1em;
      opacity: 0;
      transition: opacity .35s ease;
    }

    .photo-strip a:hover .photo-strip__label {
      opacity: 1;
    }

    /* ===================== CAKES / DORTY ===================== */
    .cakes {
      background: var(--off-white);
      padding: 120px 0;
    }

    .cakes__wrap {
      max-width: 780px;
      margin: 0 auto;
      padding: 0 64px;
      text-align: center;
    }

    .cakes__body .script {
      justify-content: center;
    }

    .cakes__body .text {
      margin-left: auto;
      margin-right: auto;
    }

    .cakes__body .mini-list {
      margin-left: auto;
      margin-right: auto;
      text-align: left;
    }

    .cakes__body .link-row {
      justify-content: center;
    }

    /* ===================== PROCESS ===================== */
    .process {
      background: var(--off-white);
      padding: 112px 0;
    }

    .process__wrap {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 64px;
    }

    .process__head {
      text-align: center;
      margin-bottom: 64px;
    }

    .process__head .script {
      justify-content: center;
    }

    .process__head .script::before,
    .process__head .script::after {
      display: none;
    }

    .process__steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      position: relative;
    }

    .process__steps::before {
      content: '';
      position: absolute;
      top: 27px;
      left: 12.5%;
      right: 12.5%;
      height: 2px;
      background: var(--blue);
      opacity: .35;
    }

    .process__step {
      text-align: center;
      padding: 0 28px;
    }

    .process__num {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: var(--blue-light);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 22px;
      font-family: var(--sans);
      font-size: var(--text-base);
      font-weight: 600;
      font-style: normal;
      color: var(--blue-dark);
      position: relative;
      z-index: 1;
    }

    .process__step h3 {
      font-family: var(--sans);
      font-weight: 500;
      font-size: var(--text-lg);
      color: var(--blue-dark);
      margin-bottom: 10px;
    }

    .process__step p {
      color: var(--mid);
      font-size: var(--text-base);
      line-height: 1.75;
    }

    .process__step p a {
      color: inherit;
      text-decoration: underline;
    }

    .process__cta {
      text-align: center;
      margin-top: 56px;
    }

    /* ===================== WEDDING / SVATBY ===================== */
    .wedding {
      background: var(--white);
      padding: 120px 0 80px;
      overflow: hidden;
    }

    .wedding__wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto;
      gap: 80px;
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 64px;
      align-items: center;
    }

    .wedding__cake {
      grid-column: 1;
      grid-row: 1;
    }

    .wedding__right {
      grid-column: 2;
      grid-row: 1;
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

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


    .wedding__cake {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .wedding__cake img {
      width: 100%;
      max-width: 480px;
      height: auto;
      display: block;
      margin: 0 auto;
      transform: translateY(0);
    }

    .wedding__cake-wrap {
      position: relative;
      display: block;
      max-width: 480px;
      width: 100%;
      margin: 0 auto;
    }

    .wedding__mini-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: none;
      border: none;
      padding: 0;
      margin-top: -8px;
      font-family: var(--sans);
      font-size: var(--text-base);
      font-weight: 500;
      color: var(--blue-dark);
      cursor: pointer;
      text-decoration: underline;
      text-underline-offset: 3px;
      transition: color .2s;
    }

    .wedding__mini-link:hover {
      color: var(--pink);
    }

    .wedding__mini-link svg {
      transition: transform .2s;
      flex-shrink: 0;
    }

    .wedding__mini-link:hover svg {
      transform: translateX(3px);
    }

    .wedding__gallery-btn {
      position: absolute;
      bottom: 20px;
      right: 20px;
      background: rgba(255, 255, 255, 0.90);
      backdrop-filter: blur(4px);
      border: none;
      border-radius: 40px;
      padding: 9px 16px 9px 13px;
      display: flex;
      align-items: center;
      gap: 7px;
      font-family: var(--sans);
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: .07em;
      text-transform: uppercase;
      color: var(--blue-dark);
      cursor: pointer;
      box-shadow: 0 2px 14px rgba(0, 0, 0, .14);
      transition: background .2s, box-shadow .2s, transform .15s;
    }

    .wedding__gallery-btn:hover {
      background: var(--white);
      box-shadow: 0 4px 20px rgba(0, 0, 0, .18);
      transform: translateY(-1px);
    }

    .wedding__gallery-btn svg {
      flex-shrink: 0;
      color: var(--pink);
    }

    .wedding__tasting {
      padding-top: 0;
    }

    .wedding__tasting-label {
      font-family: var(--sans);
      font-size: var(--text-lg);
      font-weight: 500;
      color: var(--blue-dark);
      margin-bottom: 14px;
    }

    .wedding__tasting-list {
      list-style: none;
      padding: 0;
      margin: 0 0 24px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .wedding__tasting-list li {
      font-size: var(--text-md);
      line-height: 1.6;
      color: var(--mid);
      padding-left: 16px;
      position: relative;
    }

    .wedding__tasting-list li::before {
      content: '◆';
      position: absolute;
      left: 0;
      top: 0;
      color: var(--pink);
      font-size: .65em;
      line-height: 2.5;
    }

    .wedding-slider-container {
      position: relative;
    }

    .wedding-slider {
      overflow: hidden;
    }

    .wedding-slider__track {
      display: flex;
      transition: transform .5s cubic-bezier(.4, 0, .2, 1);
    }

    .wedding-slider__slide {
      flex: 0 0 33.333%;
      aspect-ratio: 1 / 1;
      height: auto;
      overflow: hidden;
      padding-right: 10px;
      box-sizing: border-box;
    }

    .wedding-slider__slide:last-child {
      padding-right: 0;
    }

    .wedding-slider__slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      pointer-events: none;
    }

    .wedding-slider__btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 2;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: var(--white);
      border: 1.5px solid rgba(28, 56, 64, .18);
      box-shadow: 0 4px 20px rgba(28, 56, 64, .15);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--blue-dark);
      transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
    }

    .wedding-slider__btn:hover {
      background: var(--cream);
      transform: translateY(-50%) scale(1.08);
      box-shadow: 0 6px 24px rgba(28, 56, 64, .2);
    }

    .wedding-slider__btn--prev {
      right: calc(100% + 16px);
    }

    .wedding-slider__btn--next {
      left: calc(100% + 16px);
    }

    .wedding-slider__btn svg {
      pointer-events: none;
    }

    /* ===================== ABOUT / O NÁS ===================== */
    .about {
      background: var(--white);
      padding: 120px 0;
    }

    .about__wrap {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
      align-items: stretch;
      gap: 72px;
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 64px;
    }

    .about__copy {
      display: flex;
      flex-direction: column;
      order: 2;
    }

    .about__photo {
      align-self: stretch;
      order: 1;
    }

    .about__photo.is-locked {
      align-self: start;
    }

    .about__photo--mobile {
      display: none;
    }

    .about__photo__frame {
      width: 100%;
      height: 100%;
      overflow: hidden;
      border-radius: 16px;
      box-shadow: 0 20px 64px rgba(28, 56, 64, .22);
    }

    .about__photo__frame img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
      transition: transform .9s ease;
    }

    .about__photo:hover .about__photo__frame img {
      transform: scale(1.035);
    }

    /* ===================== REVIEWS ===================== */
    .reviews {
      background: var(--off-white);
      padding: 112px 0;
    }

    .reviews__head {
      max-width: 620px;
      margin: 0 auto 64px;
      padding: 0 24px;
      text-align: center;
    }

    .reviews__head .script {
      justify-content: center;
    }

    .reviews__head .script::before,
    .reviews__head .script::after {
      display: none;
    }

    .reviews__rating {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 16px;
      font-size: var(--text-sm);
      font-weight: 500;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--mid);
    }

    .reviews__rating-stars {
      color: var(--gold);
      font-size: var(--text-sm);
    }

    .reviews__link {
      font-size: var(--text-sm);
      font-weight: 500;
      letter-spacing: .06em;
      text-transform: uppercase;
    }

    .reviews__link svg {
      width: 14px;
      height: 14px;
      opacity: .72;
    }

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

    .quote {
      padding: 24px;
      background: var(--white);
      border-radius: 12px;
      border: 1px solid var(--rule);
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .quote__head {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .quote__avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: var(--text-sm);
      font-weight: 600;
      color: var(--white);
      flex-shrink: 0;
    }

    .quote__info {
      display: flex;
      flex-direction: column;
      gap: 3px;
    }

    .quote__author {
      font-size: var(--text-base);
      font-weight: 500;
      color: var(--blue-dark);
      letter-spacing: 0;
      text-transform: none;
    }

    .quote__stars {
      color: var(--gold);
      font-size: var(--text-sm);
      letter-spacing: .04em;
      display: block;
    }

    .quote p {
      font-size: var(--text-base);
      line-height: 1.7;
      color: var(--mid);
      font-style: normal;
      flex: 1;
      margin: 0;
    }

    /* ===================== KONTAKT ===================== */
    .info {
      background: var(--off-white);
      padding: 120px 0;
      position: relative;
      overflow: hidden;
    }

    .info__wrap {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
      align-items: stretch;
      gap: 72px;
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 64px;
      text-align: left;
    }

    .info__head {
      margin-bottom: 48px;
    }

    .info__head .text {
      max-width: none;
      margin-top: 14px;
    }

    .info__col--form .form-wrap {
      background: var(--white);
      border: 1px solid var(--rule);
      border-radius: 16px;
      padding: 40px;
    }

    .contact-cta {
      height: 100%;
      min-height: 360px;
      box-sizing: border-box;
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(28, 56, 64, .18);
      border-radius: 20px;
      padding: 64px 48px;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      background: var(--cream);
      box-shadow: 0 30px 60px -25px rgba(28, 56, 64, .22);
    }

    .contact-cta__content {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .contact-cta__rule {
      width: 38px;
      height: 1px;
      background: var(--pink);
      margin-bottom: 26px;
    }

    .contact-cta .section-title {
      margin-bottom: 16px;
    }

    .contact-cta .text {
      color: var(--mid);
      text-align: center;
      max-width: 300px;
      margin: 0 auto 38px;
    }

    .info__icons {
      display: flex;
      flex-direction: column;
      gap: 32px;
    }

    .info__icon-item {
      display: flex;
      flex-direction: row;
      align-items: flex-start;
      text-align: left;
      gap: 20px;
      position: relative;
      text-decoration: none;
      color: inherit;
    }

    a.info__icon-item {
      cursor: pointer;
    }

    .info__icon-badge {
      flex-shrink: 0;
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: var(--blue-light);
      color: var(--blue-dark);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .info__icon-title {
      font-family: var(--sans);
      font-weight: 500;
      font-size: var(--text-lg);
      letter-spacing: 0;
      text-transform: none;
      color: var(--blue-dark);
      margin: 0 0 4px;
      transition: color .2s;
    }

    .info__icon-text {
      font-size: var(--text-base);
      color: var(--mid);
      margin: 0;
      line-height: 1.6;
    }

    .info__email {
      margin-top: 40px;
      font-size: var(--text-base);
      color: var(--mid);
      text-align: center;
    }

    .info__email a {
      color: var(--mid);
    }

    .info__content {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .info__items {
      margin-top: 36px;
    }

    .info__item {
      padding: 14px 0;
    }

    .info__item h3 {
      font-family: var(--sans);
      font-size: var(--text-sm);
      font-weight: 500;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--mid);
      margin-bottom: 4px;
    }

    .info__item p,
    .info__item a {
      color: var(--blue-dark);
      font-size: var(--text-base);
      line-height: 1.6;
    }

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

    /* ===================== CONTACT FORM ===================== */
    .form-wrap {
      max-width: 620px;
      margin: 0 auto;
    }

    .form-group {
      margin-bottom: 32px;
      position: relative;
    }

    .form-group label {
      display: block;
      font-family: var(--sans);
      font-size: .75rem;
      font-weight: 500;
      letter-spacing: .13em;
      text-transform: uppercase;
      color: var(--mid);
      margin-bottom: 10px;
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 12px 0;
      border: none;
      border-bottom: 1.5px solid var(--rule);
      border-radius: 0;
      font-family: var(--sans);
      font-size: 1rem;
      font-weight: 400;
      color: var(--blue-dark);
      background: transparent;
      transition: border-color .2s;
      outline: none;
      -webkit-appearance: none;
      appearance: none;
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
      color: rgba(74, 110, 122, .75);
      font-weight: 400;
    }

    .form-group input:focus,
    .form-group textarea:focus {
      border-bottom-color: var(--blue);
    }

    .form-group textarea {
      min-height: 110px;
      resize: vertical;
      line-height: 1.75;
    }

    .form-error {
      display: block;
      min-height: 18px;
      font-family: var(--sans);
      font-size: .76rem;
      color: var(--error);
      margin-top: 6px;
      letter-spacing: .01em;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
    }

    .form-submit-wrap {
      margin-top: 44px;
    }

    .form-submit-wrap .btn {
      width: 100%;
      padding: 18px;
      font-size: .875rem;
    }

    .form-submit-wrap .btn:disabled {
      opacity: .6;
      cursor: not-allowed;
    }

    .form-note {
      font-size: .82rem;
      color: var(--mid);
      text-align: center;
      margin-top: 16px;
      opacity: .75;
      letter-spacing: .03em;
    }

    .form-status {
      font-size: .82rem;
      color: var(--error);
      text-align: center;
      margin-top: 12px;
    }

    .form-success {
      display: none;
      text-align: center;
      padding: 56px 40px;
      background: var(--white);
      border: 1px solid var(--rule);
      border-radius: 16px;
    }

    .form-success__script {
      font-family: var(--serif);
      font-style: italic;
      font-size: 3rem;
      font-weight: 300;
      color: var(--pink);
      display: block;
      margin-bottom: 10px;
      line-height: 1.1;
    }

    .form-success h3 {
      font-family: var(--serif);
      font-size: 1.5rem;
      font-weight: 400;
      color: var(--blue-dark);
      margin-bottom: 12px;
    }

    .form-success p {
      font-size: .95rem;
      color: var(--mid);
      max-width: 380px;
      margin: 0 auto;
      line-height: 1.85;
    }

    @media (max-width: 640px) {
      .form-row { grid-template-columns: 1fr; gap: 0; }
    }

    /* ===================== GALLERY DETAILS ===================== */
    .gallery-details {
      margin-top: 28px;
    }

    .gallery-details summary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      cursor: pointer;
      list-style: none;
      font-size: var(--text-sm);
      font-weight: 500;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: var(--pink);
      user-select: none;
      border-bottom: 1px solid currentColor;
      padding-bottom: 2px;
    }

    .gallery-details summary::-webkit-details-marker {
      display: none;
    }

    .gallery-details summary svg {
      transition: transform .22s ease;
      flex-shrink: 0;
    }

    .gallery-details[open] summary svg {
      transform: rotate(180deg);
    }

    .gallery-details__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-top: 20px;
    }

    .gallery-details__grid a {
      display: block;
      overflow: hidden;
      aspect-ratio: 1;
      background: var(--sand);
    }

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

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

    .about__quote {
      font-family: var(--sans);
      font-style: italic;
      font-size: var(--text-lg);
      line-height: 1.85;
      color: var(--mid);
      border-left: 2px solid var(--pink);
      padding-left: 18px;
      margin: 20px 0 24px;
    }

    /* ===================== ABOUT ACCORDION ===================== */
    .details-block {
      margin-top: 28px;
      border-top: 1px solid var(--rule);
    }

    .details-block details {
      border-bottom: 1px solid var(--rule);
    }

    .details-block summary {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 15px 0;
      cursor: pointer;
      list-style: none;
      font-family: var(--sans);
      font-size: var(--text-lg);
      font-weight: 500;
      color: var(--blue-dark);
      text-transform: none;
      letter-spacing: 0;
      user-select: none;
    }

    .details-block summary::-webkit-details-marker {
      display: none;
    }

    .details-block summary::after {
      content: '';
      width: 9px;
      height: 9px;
      border-right: 1.5px solid var(--mid);
      border-bottom: 1.5px solid var(--mid);
      transform: rotate(45deg);
      flex-shrink: 0;
      transition: transform .22s ease;
      margin-top: -3px;
    }

    .details-block details[open]>summary::after {
      transform: rotate(-135deg);
      margin-top: 3px;
    }

    .details-block__body {
      padding: 2px 0 20px;
      color: var(--mid);
      font-size: var(--text-base);
      line-height: 1.78;
    }

    .details-block__body p+p {
      margin-top: 10px;
    }

    .awards-list {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-top: 4px;
    }

    .awards-item {
      display: flex;
      gap: 14px;
      align-items: flex-start;
    }

    .awards-item__year {
      font-family: var(--serif);
      font-style: italic;
      font-size: var(--text-sm);
      color: var(--blue);
      flex-shrink: 0;
      width: 36px;
      padding-top: 2px;
    }

    .awards-item__text {
      font-size: var(--text-sm);
      color: var(--blue-dark);
      line-height: 1.5;
    }

    .awards-item__text small {
      display: block;
      font-size: var(--text-sm);
      color: var(--mid);
      margin-top: 2px;
    }

    .cert-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 8px;
      margin-top: 16px;
    }

    .cert-grid a {
      display: block;
      overflow: hidden;
    }

    .cert-grid img {
      width: 100%;
      aspect-ratio: 3/4;
      object-fit: cover;
      border: 1px solid var(--rule);
      transition: transform .6s ease;
    }

    .cert-grid a:hover img {
      transform: scale(1.04);
    }


    /* ===================== LIGHTBOX ===================== */
    .lightbox {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 200;
      background: rgba(10, 10, 10, .94);
      align-items: center;
      justify-content: center;
      padding: 20px;
    }

    .lightbox.is-open {
      display: flex;
    }

    .lightbox__img {
      max-width: min(90vw, 900px);
      max-height: 76vh;
      object-fit: contain;
      user-select: none;
      display: block;
    }

    .lightbox__close {
      position: absolute;
      top: 18px;
      right: 22px;
      background: transparent;
      border: 0;
      color: rgba(255, 255, 255, .55);
      font-size: 2.2rem;
      line-height: 1;
      cursor: pointer;
      padding: 4px 8px;
      transition: color .2s;
    }

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

    .lightbox__btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255, 255, 255, .08);
      border: 1px solid rgba(255, 255, 255, .14);
      color: rgba(255, 255, 255, .75);
      width: 46px;
      height: 46px;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .2s, color .2s;
    }

    .lightbox__btn:hover {
      background: rgba(255, 255, 255, .18);
      color: var(--white);
    }

    .lightbox__prev {
      left: 16px;
    }

    .lightbox__next {
      right: 16px;
    }

    .lightbox__counter {
      position: absolute;
      bottom: 82px;
      left: 50%;
      transform: translateX(-50%);
      color: rgba(255, 255, 255, .35);
      font-size: var(--text-sm);
      letter-spacing: .1em;
      font-family: var(--sans);
      white-space: nowrap;
    }

    /* ===================== SCROLL REVEAL ===================== */
    .rv {
      opacity: 0;
      transform: translateY(26px);
      transition: opacity .7s ease, transform .7s ease;
    }

    .rv.is-visible {
      opacity: 1;
      transform: none;
    }

    /* Stagger pro values */
    .values__grid .value:nth-child(2).rv {
      transition-delay: .12s;
    }

    .values__grid .value:nth-child(3).rv {
      transition-delay: .24s;
    }

    /* ===================== HERO TICKER STRIP ===================== */
    .hero-strip {
      background: var(--blue-dark);
      padding: 0;
      overflow: hidden;
    }

    .hero-strip__track {
      display: flex;
      align-items: center;
      gap: 0;
      width: max-content;
      animation: stripScroll 28s linear infinite;
    }

    .hero-strip:hover .hero-strip__track {
      animation-play-state: paused;
    }

    .hero-strip__item {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      padding: 14px 40px;
      font-family: var(--sans);
      font-size: var(--text-sm);
      font-weight: 400;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: rgba(242, 235, 224, .65);
      white-space: nowrap;
      flex-shrink: 0;
    }

    .hero-strip__item::after {
      content: '✦';
      color: var(--pink);
      font-size: var(--text-sm);
      opacity: .7;
    }

    @keyframes stripScroll {
      from {
        transform: translateX(0);
      }

      to {
        transform: translateX(-50%);
      }
    }

    /* ===================== HERO FEATURES ===================== */
    .hero-features {
      background: var(--cream);
      padding: 12px 0;
    }

    .hero-features__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 64px;
    }

    .hero-feature {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 0 32px;
      justify-content: center;
    }

    .hero-feature:first-child {
      border-left: none;
      padding-left: 0;
      justify-content: flex-start;
    }

    .hero-feature:last-child {
      padding-right: 0;
      justify-content: flex-end;
    }

    .hero-feature__icon {
      display: block;
      width: 72px;
      height: 72px;
      object-fit: contain;
      flex-shrink: 0;
    }

    .hero-feature:last-child .hero-feature__icon {
      width: 72px;
      height: 72px;
    }

    .hero-feature__title {
      font-family: var(--sans);
      font-size: var(--text-sm);
      font-weight: 400;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: var(--blue-dark);
      margin-bottom: 0;
    }

    .hero-feature__text {
      display: none;
      font-size: var(--text-sm);
      color: rgba(255, 255, 255, .65);
      line-height: 1.6;
      margin: 0;
    }

    /* ===================== ANIMACE HERO ===================== */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }

      to {
        opacity: 1;
        transform: none;
      }
    }

    .hero .eyebrow {
      animation: fadeUp .65s ease both .05s;
    }

    .hero h1 {
      animation: fadeUp .65s ease both .28s;
    }

    .hero__lead {
      animation: fadeUp .65s ease both .4s;
    }

    .hero__tagline {
      animation: fadeUp .65s ease both .34s;
    }

    .hero__actions {
      animation: fadeUp .65s ease both .52s;
    }

    .hero__meta {
      animation: fadeUp .65s ease both .64s;
    }

    /* ===================== CAKES SLIDER ===================== */
    .cakes-slider-container {
      position: relative;
      margin-top: 40px;
    }

    .cakes-slider {
      overflow: hidden;
    }

    .cakes-slider__track {
      display: flex;
      transition: transform .5s cubic-bezier(.4, 0, .2, 1);
    }

    .cakes-slider__slide {
      flex: 0 0 33.333%;
      aspect-ratio: 1 / 1;
      height: auto;
      overflow: hidden;
      padding-right: 10px;
      box-sizing: border-box;
    }

    .cakes-slider__slide:last-child {
      padding-right: 0;
    }

    .cakes-slider__slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      pointer-events: none;
    }

    .cakes-slider__btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 2;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: var(--white);
      border: 1.5px solid rgba(28, 56, 64, .18);
      box-shadow: 0 4px 20px rgba(28, 56, 64, .15);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--blue-dark);
      transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
    }

    .cakes-slider__btn:hover {
      background: var(--cream);
      transform: translateY(-50%) scale(1.08);
      box-shadow: 0 6px 24px rgba(28, 56, 64, .2);
    }

    .cakes-slider__btn--prev {
      right: calc(100% + 16px);
    }

    .cakes-slider__btn--next {
      left: calc(100% + 16px);
    }

    .cakes-slider__btn svg {
      pointer-events: none;
    }

    @media (prefers-reduced-motion: reduce) {

      *,
      *::before,
      *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
      }

      .rv {
        opacity: 1;
        transform: none;
      }
    }

    /* ===================== RESPONSIVE ===================== */
    @media (min-width: 1920px) {
      :root {
        --nav-h: 100px;
        --max: 1480px;
      }

      .nav__inner {
        padding: 0 80px;
        gap: 56px;
      }

      .nav__links {
        gap: 8px;
      }

      .nav__links a {
        padding: 8px 18px;
      }

      .nav__logo img {
        height: 92px;
      }

      .hero__glass {
        padding: calc(var(--nav-h) + 80px) 56px 88px;
      }
    }

    @media (min-width: 2400px) {
      :root {
        --max: 1680px;
        --nav-h: 110px;
      }

      .nav__logo img {
        height: 100px;
      }
    }

    @media (min-width: 3200px) {
      :root {
        --max: 1960px;
        --nav-h: 120px;
      }

      .nav__logo img {
        height: 110px;
      }
    }

    @media (max-width: 1024px) {
      .hero__glass {
        padding: calc(var(--nav-h) + 32px) 44px 72px;
      }

      .hero-features {
        padding: 44px 40px;
      }

      .intro-features {
        justify-content: center;
        gap: 28px;
      }

      .intro-feature {
        flex-direction: column;
        text-align: center;
        gap: 10px;
      }

      .hero-feature {
        padding: 0 32px;
      }

      .wrap {
        padding: 0 40px;
      }

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

      .intro {
        padding: 92px 0;
      }

      .intro__wrap {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 0 40px;
      }

      .intro__media {
        min-height: 420px;
      }

      .intro__media__main {
        min-height: 420px;
      }

      .intro__media__accent {
        bottom: -20px;
        left: -16px;
        width: 48%;
      }

      .cakes {
        padding: 92px 0;
      }

      .cakes__wrap {
        padding: 0 40px;
      }

      .about {
        padding: 92px 0;
      }

      .about__wrap {
        grid-template-columns: 1fr;
        gap: 44px;
        padding: 0 40px;
      }

      .about__photo {
        display: none;
      }

      .about__photo--mobile {
        display: block;
        width: 100%;
        aspect-ratio: 1 / 1;
        overflow: hidden;
        border-radius: 16px;
        margin: 24px 0;
      }

      .about__photo--mobile img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
      }

      .about__copy {
        text-align: left;
        align-items: flex-start;
      }

      .about__copy .details-block {
        width: 100%;
        text-align: left;
      }

      .info__wrap {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 40px;
      }

      .info__photo {
        min-height: 300px;
      }

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

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

      .process__steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px 0;
      }

      .process__steps::before {
        display: none;
      }

      .cakes-gallery {
        padding: 0 40px;
      }

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

      .about__photo {
        height: 520px;
      }

      .hero__wrap {
        grid-template-columns: clamp(460px, 52%, 620px) 1fr;
      }

      .hero__headline {
        font-size: clamp(2.6rem, 4vw, 3.8rem);
        margin-bottom: 20px;
      }

      .hero__perex {
        font-size: var(--text-base);
        margin-bottom: 28px;
      }

      .hero__actions {
        flex-wrap: wrap;
      }
    }

    @media (max-width: 820px) {
      .hero-features {
        padding: 36px 24px;
      }

      .hero-features__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
      }

      .hero-feature {
        display: grid;
        grid-template-rows: 60px auto;
        justify-items: center;
        text-align: center;
        padding: 20px 8px;
        border-top: none;
        gap: 0;
      }

      .hero-feature:first-child {
        border-left: none;
        padding-left: 8px;
      }

      .hero-feature:last-child {
        padding-right: 8px;
      }

      .hero-feature__icon {
        width: auto;
        height: auto;
        max-width: 52px;
        max-height: 52px;
        align-self: end;
      }

      .hero-feature__title {
        align-self: start;
        margin-top: 8px;
      }

      .wedding__feature {
        display: grid;
        grid-template-rows: 64px auto;
        justify-items: center;
        gap: 0;
        padding: 0 12px;
      }

      .wedding__feature img {
        width: 56px !important;
        height: 56px !important;
        max-width: 56px;
        max-height: 56px;
        object-fit: contain !important;
        align-self: end;
      }

      .wedding__feature span {
        align-self: start;
        margin-top: 8px;
        text-align: center;
      }

      :root {
        --nav-h: 80px;
      }

      body {
        font-size: 18px;
      }

      .section-title {
        font-size: clamp(1.9rem, 5.5vw, 2.5rem);
      }

      .text {
        font-size: var(--text-base);
        line-height: 1.8;
      }

      .value p,
      .quote__text {
        font-size: var(--text-base);
      }

      .eyebrow,
      .script {
        font-size: var(--text-sm);
      }

      .nav__inner {
        padding: 0 20px;
        box-sizing: border-box;
        width: 100%;
      }

      .nav__logo img {
        height: 72px;
      }

      .hero-features__grid {
        padding: 0 20px;
      }

      .nav__links {
        display: none;
        position: absolute;
        top: var(--nav-h);
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 14px 24px 24px;
        background: var(--white);
        border-bottom: 1px solid var(--rule);
        box-shadow: 0 8px 24px rgba(28, 56, 64, .08);
      }

      .nav__links.is-open {
        display: flex;
      }

      .nav__links a {
        width: 100%;
        padding: 13px 0;
        border-bottom: 1px solid var(--rule);
        color: var(--blue-dark);
      }

      .nav__links a::after {
        display: none;
      }

      .nav.is-scrolled .nav__links {
        top: 68px;
      }

      .nav__cta {
        display: none;
      }

      .nav__links-cta {
        display: block;
        border-bottom: none !important;
        padding: 16px 0 4px;
      }

      .nav__links-cta .btn {
        display: block;
        width: 100%;
        text-align: center;
        color: var(--white);
      }

      .nav__burger {
        display: flex;
      }

      .nav__burger span {
        width: 26px;
        height: 2px;
      }

      .hero {
        min-height: auto;
      }

      .hero__wrap {
        grid-template-columns: 1fr;
        padding: 0;
        max-width: 100%;
      }

      .hero__glass {
        justify-content: center;
        padding: calc(var(--nav-h) + 40px) 36px 64px;
      }

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

      .hero__actions .btn {
        width: auto;
        min-width: 220px;
      }

      .hero__meta {
        gap: 8px 20px;
        font-size: var(--text-sm);
      }

      .values__grid {
        grid-template-columns: 1fr;
        padding: 0 24px;
      }

      .value {
        border-right: none;
        border-bottom: 1px solid var(--rule);
        padding: 32px 0;
      }

      .value:last-child {
        border-bottom: none;
      }

      .value:not(:last-child)::after {
        display: none;
      }

      .about__photo {
        height: 380px;
      }

      .info__wrap {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 0 40px;
      }

      .info__head {
        text-align: center;
      }

      .info__head .script {
        justify-content: center;
      }

      .wedding__features {
        margin-top: 16px !important;
        padding-top: 16px;
      }

      .wedding-slider__btn--prev {
        right: auto;
        left: 12px;
      }

      .wedding-slider__btn--next {
        left: auto;
        right: 12px;
      }

      .cakes-slider__slide {
        flex: 0 0 100%;
        aspect-ratio: 4 / 3;
        padding-right: 0;
      }

      .cakes-slider__btn--prev {
        right: auto;
        left: 12px;
      }

      .cakes-slider__btn--next {
        left: auto;
        right: 12px;
      }

      .intro__body {
        text-align: center;
        align-items: center;
      }

      .intro__body .mini-list {
        text-align: left;
        align-self: stretch;
      }

      .intro-bullets {
        text-align: left;
        align-self: center;
        width: 100%;
        max-width: 420px;
      }

      .intro__body .link-row {
        justify-content: center;
      }

      .intro__body .ig-nudge {
        text-align: center;
      }

      .info__icons {
        grid-template-columns: 1fr;
        gap: 28px;
      }

      .info__icon-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
      }

      .info__icon-item:not(:last-child)::after {
        display: none;
      }

      .photo-strip {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 18px 24px 78px;
      }

      .photo-strip a:nth-child(1),
      .photo-strip a:nth-child(2),
      .photo-strip a:nth-child(3) {
        height: 240px;
        margin-top: 0;
      }

      .photo-strip__label {
        opacity: 1;
      }

      .wedding {
        padding: 92px 0 64px;
      }

      .wedding__wrap {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 32px;
        padding: 0 32px;
      }

      .wedding__right {
        grid-column: 1;
        grid-row: 1;
      }

      .wedding__body {
        text-align: center;
        align-items: center;
      }

      .wedding__cake {
        grid-column: 1;
        grid-row: 2;
      }

      .wedding__tasting {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .wedding__tasting-list {
        text-align: left;
        width: fit-content;
      }

      .wedding__cake img {
        max-width: 420px;
      }

      .wedding-slider__slide {
        flex: 0 0 50%;
        height: 460px;
      }

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

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

      .cakes-cards {
        grid-template-columns: 1fr;
      }

      .cakes-card {
        height: 520px;
      }

      .wedding-slider__slide {
        flex: 0 0 100%;
        height: 340px;
      }

      .about__photo {
        height: 480px;
      }

      .hero__bg img {
        object-position: 80% 30%;
      }

      .hero__overlay {
        background: linear-gradient(to bottom, rgba(0, 0, 0, .9) 0%, rgba(0, 0, 0, .82) 60%, rgba(0, 0, 0, .62) 100%);
      }

      .hero__glass {
        align-items: center;
        text-align: center;
      }

      .hero__headline {
        font-size: clamp(2.8rem, 7.5vw, 3.6rem);
        line-height: 1.16;
        margin-bottom: 16px;
      }

      .hero__perex {
        font-size: var(--text-lg);
        margin-bottom: 24px;
        max-width: 100%;
      }

      .hero__eyebrow {
        font-size: var(--text-sm);
        letter-spacing: .18em;
        margin-bottom: 12px;
        justify-content: center;
      }

      .hero__actions {
        justify-content: center;
      }

      .hero__meta {
        gap: 8px 16px;
        font-size: var(--text-sm);
        justify-content: center;
      }

      .info__wrap {
        padding: 0 24px;
      }

      .wedding__head {
        padding: 0 24px 44px;
      }
    }

    @media (min-width: 561px) and (max-width: 820px) {
      .hero__actions {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        align-items: center;
      }

      .hero__actions .btn {
        width: auto;
        min-width: 0;
        padding: 11px 20px;
        font-size: var(--text-sm);
      }

      .hero-features {
        padding: 24px 0;
      }

      .hero-feature {
        padding: 16px 8px;
        grid-template-rows: 52px auto;
      }
    }

    @media (max-width: 560px) {
      body {
        font-size: 18px;
      }

      .wedding {
        padding: 64px 0 48px;
      }

      .wedding__wrap {
        padding: 0 20px;
        gap: 24px;
      }

      .wedding__cake img {
        max-width: 340px;
      }

      .process__num {
        width: 44px;
        height: 44px;
      }

      .section-title {
        font-size: clamp(1.65rem, 6.5vw, 2.2rem);
      }

      .text {
        font-size: var(--text-base);
        line-height: 1.8;
      }

      .value p,
      .quote__text {
        font-size: var(--text-base);
      }

      .section {
        padding: 80px 0;
      }

      .wrap {
        padding: 0 24px;
      }

      .process {
        padding: 72px 0;
      }

      .process__wrap {
        padding: 0 24px;
      }

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

      .process__cta {
        margin-top: 40px;
      }

      .hero {
        min-height: auto;
      }

      .hero__glass {
        padding: calc(var(--nav-h) + 40px) 24px 80px;
      }

      .intro-features {
        flex-direction: column;
        gap: 22px;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
      }

      .hero__author-avatar {
        width: 42px;
        height: 42px;
      }

      .hero__actions,
      .link-row {
        flex-direction: column;
        align-items: center;
        padding-left: 24px;
        padding-right: 24px;
      }

      .hero__actions {
        padding-left: 0;
        padding-right: 0;
      }

      .ig-nudge {
        padding: 0 24px;
        text-align: center;
      }

      .btn {
        width: auto;
        min-width: 220px;
      }

      .intro {
        padding: 78px 0 40px;
      }

      .about {
        padding: 78px 0;
      }

      .intro__wrap,
      .about__wrap {
        padding: 0 24px;
      }

      .cakes__wrap {
        padding: 0 24px;
      }

      .values__grid {
        padding: 0 24px;
      }

      .info__wrap {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0 24px;
      }

      .info__photo {
        min-height: 240px;
      }

      .about__photo {
        height: 300px;
      }

      .wedding {
        padding: 72px 0 56px;
      }

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

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

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

      .about__photo {
        height: 320px;
      }

      .quote {
        min-height: 0;
      }

      .section-title {
        font-size: clamp(1.65rem, 7vw, 2.2rem);
        line-height: 1.25;
      }

      .text {
        font-size: var(--text-base);
        line-height: 1.85;
      }

      .mini-list li {
        font-size: var(--text-base);
      }

      .tasting-note {
        font-size: var(--text-sm);
        padding: 12px 14px;
      }

      .details-block summary {
        font-size: var(--text-lg);
      }

      .details-block__body {
        font-size: var(--text-base);
        line-height: 1.82;
      }

      .awards-item__text {
        font-size: var(--text-sm);
      }

      .process__step p {
        font-size: var(--text-base);
      }

      .script {
        font-size: var(--text-sm);
      }

      .eyebrow {
        font-size: var(--text-sm);
      }

      .hero__lead {
        font-size: var(--text-base);
      }

      .hero__meta {
        font-size: var(--text-sm);
      }

      .value h3 {
        font-size: var(--text-base);
      }

      .value p {
        font-size: var(--text-base);
      }

      .info__item p,
      .info__item a {
        font-size: var(--text-base);
      }

      .quote p {
        font-size: var(--text-base);
      }

      .hero__headline {
        font-size: clamp(2.4rem, 10.5vw, 3.2rem);
        line-height: 1.15;
        margin-bottom: 14px;
      }

      .hero__perex {
        font-size: var(--text-lg);
        line-height: 1.65;
        margin-bottom: 20px;
      }

      .hero__eyebrow {
        font-size: var(--text-sm);
        margin-bottom: 10px;
      }

      .hero__actions {
        gap: 10px;
      }

      .nav__inner {
        padding: 0 16px;
      }

      .hero-features {
        padding: 28px 0;
      }

      .hero-features__grid {
        padding: 0 16px;
      }

      .hero-feature img {
        width: 52px;
        height: 52px;
      }

      .gallery-details__grid {
        grid-template-columns: 1fr;
      }

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

      .wedding-slider__slide {
        height: 280px;
      }

      .process__steps {
        gap: 32px;
      }
    }

    @media (max-width: 390px) {
      .hero__headline {
        font-size: clamp(2.1rem, 11.5vw, 2.7rem);
      }

      .hero__perex {
        font-size: var(--text-base);
      }

      .section-title {
        font-size: clamp(1.5rem, 8vw, 2rem);
      }

      .wrap {
        padding: 0 18px;
      }
    }

    /* ===================== CAKE CARDS ===================== */
    .cake-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 48px;
    }

    .cake-card {
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 24px rgba(28, 56, 64, .10);
      cursor: pointer;
      border: none;
      padding: 0;
      background: var(--white);
      display: flex;
      flex-direction: column;
      width: 100%;
      transition: box-shadow .3s ease, transform .3s ease;
    }

    .cake-card:hover,
    .cake-card:focus-visible {
      box-shadow: 0 12px 40px rgba(28, 56, 64, .18);
      transform: translateY(-3px);
    }

    .cake-card__img-wrap {
      aspect-ratio: 1 / 1;
      overflow: hidden;
      display: block;
      flex-shrink: 0;
      position: relative;
    }

    .cake-card__img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .5s cubic-bezier(.25, .46, .45, .94);
    }

    .cake-card:hover .cake-card__img,
    .cake-card:focus-visible .cake-card__img {
      transform: scale(1.04);
    }

    .cake-card__overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 48px 16px 16px;
      background: linear-gradient(to top, rgba(0, 0, 0, .52) 0%, transparent 100%);
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 10px;
    }

    .cake-card__title {
      font-family: var(--sans);
      font-size: var(--text-lg);
      font-weight: 500;
      color: var(--white);
      line-height: 1.2;
      text-align: left;
      text-shadow: 0 1px 4px rgba(0, 0, 0, .25);
    }

    .cake-card__gallery-badge {
      background: rgba(255, 255, 255, 0.90);
      backdrop-filter: blur(4px);
      border-radius: 40px;
      padding: 7px 13px 7px 10px;
      display: flex;
      align-items: center;
      gap: 6px;
      font-family: var(--sans);
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: .07em;
      text-transform: uppercase;
      color: var(--blue-dark);
      white-space: nowrap;
      flex-shrink: 0;
      box-shadow: 0 2px 10px rgba(0, 0, 0, .14);
    }

    .cake-card__gallery-badge svg {
      color: var(--pink);
      flex-shrink: 0;
    }

    /* ===================== LIGHTBOX ===================== */
    .cake-lightbox {
      position: fixed;
      inset: 0;
      z-index: 9000;
      display: flex;
      align-items: center;
      justify-content: center;
      animation: lbFadeIn .22s ease both;
    }

    .cake-lightbox[hidden] {
      display: none;
    }

    @keyframes lbFadeIn {
      from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }
    }

    .cake-lightbox__backdrop {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, .88);
      cursor: zoom-out;
    }

    .cake-lightbox__img {
      position: relative;
      z-index: 1;
      max-width: 90vw;
      max-height: 78vh;
      object-fit: contain;
      border-radius: 12px;
      box-shadow: 0 8px 60px rgba(0, 0, 0, .6);
      display: block;
    }

    .cake-lightbox__close {
      position: absolute;
      top: 18px;
      right: 22px;
      z-index: 2;
      background: none;
      border: none;
      color: var(--white);
      font-size: 1.8rem;
      line-height: 1;
      cursor: pointer;
      padding: 6px 10px;
      opacity: .8;
      transition: opacity .15s;
    }

    .cake-lightbox__close:hover {
      opacity: 1;
    }

    .cake-lightbox__nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 2;
      background: rgba(255, 255, 255, .12);
      border: 1.5px solid rgba(255, 255, 255, .25);
      color: var(--white);
      width: 52px;
      height: 52px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background .18s, transform .18s;
    }

    .cake-lightbox__nav:hover {
      background: rgba(255, 255, 255, .22);
      transform: translateY(-50%) scale(1.06);
    }

    .cake-lightbox__nav--prev {
      left: 24px;
    }

    .cake-lightbox__nav--next {
      right: 24px;
    }

    .cake-lightbox__nav:disabled {
      opacity: .3;
      cursor: default;
    }

    .cake-lightbox__thumbs,
    .lightbox__thumbs {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      display: flex;
      gap: 6px;
      padding: 10px 16px 14px;
      overflow-x: auto;
      justify-content: center;
      scrollbar-width: none;
      z-index: 3;
    }

    .cake-lightbox__thumbs::-webkit-scrollbar,
    .lightbox__thumbs::-webkit-scrollbar {
      display: none;
    }

    .cake-lightbox__thumb,
    .lightbox__thumb {
      flex-shrink: 0;
      width: 52px;
      height: 52px;
      border-radius: 8px;
      overflow: hidden;
      cursor: pointer;
      opacity: 0.4;
      border: 2px solid transparent;
      background: none;
      padding: 0;
      transition: opacity .2s, border-color .2s;
    }

    .cake-lightbox__thumb.is-active,
    .lightbox__thumb.is-active {
      opacity: 1;
      border-color: var(--white);
    }

    .cake-lightbox__thumb img,
    .lightbox__thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .cake-lightbox__bar {
      position: absolute;
      top: 18px;
      left: 0;
      right: 0;
      z-index: 2;
      display: flex;
      align-items: baseline;
      justify-content: center;
      gap: 12px;
    }

    .cake-lightbox__category {
      font-family: var(--serif);
      font-size: 1.1rem;
      color: var(--white);
    }

    .cake-lightbox__counter {
      font-family: var(--sans);
      font-size: var(--text-sm);
      color: rgba(255, 255, 255, .6);
      letter-spacing: .06em;
      flex-shrink: 0;
    }

    .cake-lightbox__tabs {
      position: absolute;
      top: 52px;
      left: 0;
      right: 0;
      z-index: 2;
      display: flex;
      justify-content: center;
      gap: 8px;
    }

    .cake-lightbox__tab {
      background: rgba(255, 255, 255, .1);
      border: 1px solid rgba(255, 255, 255, .35);
      color: rgba(255, 255, 255, .8);
      border-radius: 40px;
      padding: 6px 16px;
      font-family: var(--sans);
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: .07em;
      text-transform: uppercase;
      cursor: pointer;
      transition: background .2s, color .2s, border-color .2s;
    }

    .cake-lightbox__tab:hover {
      border-color: rgba(255, 255, 255, .6);
      color: var(--white);
    }

    .cake-lightbox__tab.is-active {
      background: var(--white);
      color: var(--blue-dark);
      border-color: var(--white);
    }

    @media (max-width: 767px) {

      .cake-cards,
      .wedding__photos {
        grid-template-columns: 1fr;
        gap: 16px;
      }

      .cake-lightbox__nav--prev {
        left: 10px;
      }

      .cake-lightbox__nav--next {
        right: 10px;
      }
    }

    @media (min-width: 480px) and (max-width: 767px) {

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


    /* ===================== MOBILE FINE-TUNING ===================== */


    /* Intro media height — don't force 420px on narrow screens */
    @media (max-width: 820px) {

      .intro__media,
      .intro__media__main {
        min-height: 0;
        aspect-ratio: 4 / 3;
      }

      .kavarna-mosaic {
        width: 100%;
      }

      .kavarna-mosaic__top {
        height: auto;
        aspect-ratio: 3 / 2;
      }

      .kavarna-mosaic__top img {
        height: auto;
      }

      .intro__media__accent {
        display: none;
      }

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

      /* Cakes section: less top padding on single-column */
      .cakes {
        padding: 80px 0;
      }

      .about__copy {
        text-align: center;
        align-items: center;
      }

      .about__copy .section-title {
        margin-bottom: 10px;
      }

      .about__quote {
        border-left: none;
        padding-left: 0;
        margin-top: 10px;
        padding-top: 14px;
      }

      .about__quote::before {
        content: '';
        display: block;
        width: 40px;
        height: 1px;
        background: var(--pink);
        margin: 0 auto 14px;
      }

      .about__photo--mobile {
        height: 300px;
        margin-bottom: 8px;
      }

      /* Process: tighter heading */
      .process__head {
        margin-bottom: 48px;
      }

      .intro-features {
        width: calc(100% - 80px);
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
      }

      .intro-feature {
        align-items: flex-start;
        text-align: left;
      }

      .wedding__tasting>div {
        justify-content: center;
      }
    }

    @media (max-width: 560px) {

      /* Wedding photos: switch to landscape so two stacked photos aren't huge */
      .wedding__photo img {
        aspect-ratio: 3 / 2;
      }

      .cake-card__img-wrap {
        aspect-ratio: 3 / 4;
      }

      /* About mobile photo: shorter */
      .about__photo--mobile {
        height: 240px;
      }

      /* Quote: slightly smaller */
      .about__quote {
        font-size: var(--text-base);
      }

      /* Intro features: tighter on small screens */
      .intro-features {
        gap: 14px;
        max-width: 240px;
      }

      .intro-feature__icon {
        width: 52px;
        height: 52px;
      }

      /* Cakes section: less padding */
      .cakes {
        padding: 64px 0;
      }

      .cake-cards {
        margin-top: 32px;
        gap: 12px;
      }

      .cake-card__overlay {
        padding: 28px 14px 14px;
      }

      /* Wedding section: tighter */
      .wedding {
        padding: 64px 0 48px;
      }

      .wedding__photos {
        gap: 12px;
      }

      /* About section: tighter */
      .about {
        padding: 64px 0;
      }

      /* Process: tighter */
      .process {
        padding: 64px 0;
      }

      /* Section script labels */
      .script {
        margin-bottom: 4px;
      }

      /* Kontakt / info section */
      .info__wrap {
        padding: 0 20px;
      }
    }

    @media (max-width: 400px) {
      .section-title {
        font-size: clamp(1.5rem, 8vw, 1.9rem);
      }

      .wrap {
        padding: 0 16px;
      }

      .wedding__head,
      .process__wrap,
      .intro__wrap,
      .about__wrap,
      .cakes__wrap {
        padding-left: 16px;
        padding-right: 16px;
      }

      .intro-features {
        max-width: 220px;
      }
    }

    /* ===================== ANIMACE: STAGGER ===================== */
    .cake-card.rv:nth-child(2) {
      transition-delay: .14s;
    }

    .cake-card.rv:nth-child(3) {
      transition-delay: .28s;
    }

    .process__steps .process__step:nth-child(2).rv {
      transition-delay: .13s;
    }

    .process__steps .process__step:nth-child(3).rv {
      transition-delay: .26s;
    }

    .process__steps .process__step:nth-child(4).rv {
      transition-delay: .39s;
    }

    .reviews__grid .quote:nth-child(2).rv {
      transition-delay: .12s;
    }

    .reviews__grid .quote:nth-child(3).rv {
      transition-delay: .24s;
    }

    .reviews__grid .quote:nth-child(4).rv {
      transition-delay: .36s;
    }

    .info__icons .info__icon-item:nth-child(2).rv {
      transition-delay: .14s;
    }

    .info__icons .info__icon-item:nth-child(3).rv {
      transition-delay: .28s;
    }

    /* ===================== ANIMACE: CLIP-PATH IMAGE REVEAL ===================== */
    .rv-img {
      clip-path: inset(12% 0 0 0);
      opacity: 0;
      transition: clip-path .95s cubic-bezier(.16, 1, .3, 1), opacity .7s ease;
    }

    .rv-img.is-visible {
      clip-path: inset(0% 0 0 0);
      opacity: 1;
    }

    /* ===================== ANIMACE: FLOAT SCRIPT ===================== */
    @keyframes scriptFloat {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-5px);
      }
    }

    /* ===================== SKIP LINK ===================== */
    .skip-link {
      position: absolute;
      top: -60px;
      left: 16px;
      z-index: 200;
      background: var(--blue-dark);
      color: var(--white);
      padding: 10px 20px;
      border-radius: 3px;
      font-family: var(--sans);
      font-size: var(--text-sm);
      font-weight: 500;
      letter-spacing: .04em;
      transition: top .2s ease;
      white-space: nowrap;
    }

    .skip-link:focus {
      top: 16px;
      outline: 2px solid var(--pink);
      outline-offset: 2px;
    }

    /* ===================== FOCUS VISIBLE ===================== */
    .btn:focus-visible,
    .nav__links a:focus-visible,
    .lightbox__btn:focus-visible,
    .lightbox__close:focus-visible,
    .cake-lightbox__nav:focus-visible,
    .cake-lightbox__close:focus-visible,
    .cake-lightbox__thumb:focus-visible,
    .lightbox__thumb:focus-visible,
    .info__icon-item:focus-visible,
    .wedding__gallery-btn:focus-visible {
      outline: 2px solid var(--pink);
      outline-offset: 2px;
    }

    /* ===================== KONTRAST ===================== */
    .hero__eyebrow {
      color: rgba(255, 255, 255, .78);
    }

    .hero-strip__item {
      color: rgba(242, 235, 224, .88);
    }

    /* ===================== REDUCED MOTION ===================== */
    @media (prefers-reduced-motion: reduce) {

      .rv,
      .rv-img {
        transition: none !important;
      }

      .rv .section-title::after {
        transition: none !important;
      }

      .script {
        animation: none !important;
      }

      .hero-strip__track {
        animation: none !important;
      }

      .hero .eyebrow,
      .hero h1,
      .hero__lead,
      .hero__tagline,
      .hero__actions,
      .hero__meta {
        animation: none !important;
      }
    }

/* ===========================
   Footer — shared across all pages
   =========================== */

/* Shared footer — used by all pages via partials/footer.html + assets/include-footer.js */

.footer {
  background: var(--footer-bg);
  color: rgba(242, 235, 224, .92);
  padding: 80px 0 36px;
}

/* fixed width independent of each page's own --max, so the footer
   matches everywhere regardless of how wide that page's content is */
.footer .wrap {
  max-width: 1360px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 56px;
}

.footer__logo { margin-bottom: 20px; }

.footer__logo img {
  height: 96px;
  width: auto;
  filter: brightness(0) invert(1) drop-shadow(0 12px 28px rgba(0, 0, 0, .28));
  opacity: 1;
}

.footer__col-desc {
  font-size: var(--text-base, 1rem);
  line-height: 1.8;
  max-width: 280px;
  color: rgba(242, 235, 224, .88);
}

.footer h2 {
  font-family: var(--sans, 'Jost', system-ui, -apple-system, BlinkMacSystemFont, sans-serif);
  font-size: var(--text-sm, .875rem);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--pink, #E07BB2);
  margin-bottom: 18px;
  padding-top: 10px;
}

.footer ul { display: flex; flex-direction: column; gap: 10px; }
.footer li { font-size: var(--text-base, 1rem); line-height: 1.5; }
.footer a { color: rgba(242, 235, 224, .88); transition: color .2s ease; }
.footer a:hover { color: rgba(242, 235, 224, 1); }

.footer__item { display: flex; align-items: center; gap: 9px; }
.footer__item svg { flex-shrink: 0; opacity: .7; }
a.footer__item:hover svg { opacity: 1; }

.footer__social { display: flex; gap: 16px; margin-top: 24px; }

.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity .2s ease;
  opacity: .75;
}

.footer__social a:hover { opacity: 1; }

.footer__social svg {
  width: 17px;
  height: 17px;
  color: rgba(255, 255, 255, .9);
  transition: color .2s ease;
}

.footer__social a:hover svg { color: var(--white, var(--white)); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .15);
  color: rgba(242, 235, 224, .65);
  font-size: var(--text-sm, .875rem);
}

.footer__legal { display: flex; gap: 16px; }
.footer__legal a { color: rgba(242, 235, 224, .65); }
.footer__legal a:hover { color: rgba(242, 235, 224, .95); }

@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .footer__grid { grid-template-columns: 1fr; gap: 42px; }
  .footer__bottom { flex-direction: column; text-align: center; align-items: center; }
}

@media (max-width: 560px) {
  .footer { padding: 64px 0 32px; }
  .footer__grid { gap: 32px; margin-bottom: 40px; }
  .footer__logo img { height: 80px; }
}
