:root {
  --purple-950: #35103a;
  --purple-900: #4c1752;
  --purple-800: #63206b;
  --purple-700: #84358c;
  --purple-600: #9945a3;
  --green-600: #72b637;
  --green-500: #86c542;
  --green-100: #eff8e7;
  --ink: #171318;
  --muted: #6f6872;
  --soft: #f7f4f7;
  --line: #e7e0e8;
  --white: #ffffff;
  --shadow-sm: 0 14px 35px rgba(37, 17, 40, .10);
  --shadow-md: 0 24px 65px rgba(37, 17, 40, .16);
  --shadow-lg: 0 35px 90px rgba(26, 8, 29, .24);
  --radius-sm: 18px;
  --radius-md: 28px;
  --radius-lg: 42px;
  --shell: min(1380px, calc(100% - 56px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: "DM Sans", Arial, sans-serif; line-height: 1.6; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
svg { display: block; }

.ycw-shell { width: var(--shell); margin-inline: auto; }
.ycw-section { padding: 118px 0; }
.ycw-section--soft { background: var(--soft); }
.ycw-sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.ycw-skip-link { position: fixed; z-index: 9999; top: 12px; left: 12px; padding: 11px 16px; border-radius: 10px; color: var(--white); background: var(--purple-900); transform: translateY(-150%); transition: transform .2s ease; }
.ycw-skip-link:focus { transform: translateY(0); }

.ycw-topbar { position: relative; z-index: 40; color: rgba(255,255,255,.9); background: var(--purple-700); font-size: 12px; font-weight: 600; }
.ycw-topbar__inner { display: flex; justify-content: space-between; align-items: center; min-height: 38px; }
.ycw-topbar p { margin: 0; letter-spacing: .025em; }
.ycw-topbar__links { display: flex; align-items: center; gap: 24px; }
.ycw-topbar__links a { transition: opacity .2s ease; }
.ycw-topbar__links a:hover { opacity: .72; }
.ycw-topbar__links svg { width: 18px; height: 18px; fill: currentColor; }

.ycw-site-header { position: sticky; z-index: 35; top: 0; background: rgba(255,255,255,.96); border-bottom: 1px solid transparent; backdrop-filter: blur(18px); transition: box-shadow .25s ease, border-color .25s ease; }
.ycw-site-header.ycw-is-scrolled { border-color: rgba(79, 35, 84, .08); box-shadow: 0 12px 35px rgba(31, 12, 34, .08); }
.ycw-header__inner { display: flex; align-items: center; justify-content: space-between; min-height: 96px; gap: 36px; }
.ycw-brand { display: inline-flex; flex: 0 0 auto; }
.ycw-brand img { width: 270px; height: auto; }
.ycw-main-nav { display: flex; align-items: center; gap: 8px; }
.ycw-main-nav a { position: relative; display: inline-flex; align-items: center; min-height: 46px; padding: 0 14px; border-radius: 12px; font-size: 14px; font-weight: 700; transition: color .2s ease, background .2s ease; }
.ycw-main-nav a:not(.ycw-nav-button)::after { content: ""; position: absolute; right: 15px; bottom: 5px; left: 15px; height: 2px; border-radius: 2px; background: var(--green-500); transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.ycw-main-nav a:hover, .ycw-main-nav a.ycw-is-active { color: var(--purple-700); }
.ycw-main-nav a:hover::after, .ycw-main-nav a.ycw-is-active::after { transform: scaleX(1); }
.ycw-main-nav .ycw-nav-button { margin-left: 8px; padding-inline: 20px; color: var(--white); background: var(--purple-700); box-shadow: 0 11px 28px rgba(132, 53, 140, .23); }
.ycw-main-nav .ycw-nav-button:hover { color: var(--white); background: var(--purple-800); }
.ycw-menu-toggle { display: none; flex-direction: column; justify-content: center; width: 46px; height: 46px; padding: 0 11px; border: 0; border-radius: 13px; background: var(--soft); cursor: pointer; }
.ycw-menu-toggle span:not(.ycw-sr-only) { display: block; width: 100%; height: 2px; margin: 3px 0; border-radius: 999px; background: var(--purple-900); transition: transform .2s ease, opacity .2s ease; }

.ycw-hero { position: relative; min-height: 780px; color: var(--white); overflow: hidden; background: var(--purple-950); }
.ycw-hero__slides, .ycw-hero__slide, .ycw-hero__shade, .ycw-hero__glow { position: absolute; inset: 0; }
.ycw-hero__slide { background-position: center; background-size: cover; opacity: 0; transform: scale(1.04); transition: opacity 1s ease, transform 7s ease; }
.ycw-hero__slide.ycw-is-active { opacity: 1; transform: scale(1); }
.ycw-hero__shade { background: linear-gradient(90deg, rgba(24, 8, 27, .88) 0%, rgba(38, 12, 42, .73) 35%, rgba(36, 10, 40, .2) 68%, rgba(21, 7, 24, .26) 100%); }
.ycw-hero__glow { background: linear-gradient(180deg, rgba(0,0,0,0) 58%, rgba(28,8,31,.62) 100%); }
.ycw-hero__content { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center; min-height: 690px; padding: 80px 0 132px; }
.ycw-hero__copy { max-width: 770px; }
.ycw-eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 22px; color: rgba(255,255,255,.86); font-size: 12px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.ycw-eyebrow span { width: 34px; height: 2px; border-radius: 2px; background: var(--green-500); }
.ycw-hero h1, .ycw-section h2, .ycw-image-break h2, .ycw-visit h2 { margin: 0; font-family: "Outfit", Arial, sans-serif; line-height: .98; letter-spacing: -.04em; }
.ycw-hero h1 { max-width: 790px; font-size: clamp(64px, 7vw, 108px); font-weight: 700; }
.ycw-hero__copy p { max-width: 660px; margin: 28px 0 0; color: rgba(255,255,255,.84); font-size: clamp(18px, 2vw, 22px); line-height: 1.55; }
.ycw-hero__actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 38px; }
.ycw-button { display: inline-flex; align-items: center; justify-content: center; min-height: 56px; padding: 0 25px; border: 1px solid transparent; border-radius: 16px; font-size: 14px; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease; }
.ycw-button:hover { transform: translateY(-2px); }
.ycw-button--primary { color: var(--white); background: var(--purple-700); box-shadow: 0 18px 38px rgba(132, 53, 140, .34); }
.ycw-button--primary:hover { background: var(--purple-600); box-shadow: 0 22px 45px rgba(132, 53, 140, .43); }
.ycw-button--glass { color: var(--white); border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.10); backdrop-filter: blur(12px); }
.ycw-button--glass:hover { background: rgba(255,255,255,.18); }
.ycw-button--outline { color: var(--purple-700); border-color: rgba(132, 53, 140, .3); background: transparent; }
.ycw-button--outline:hover { color: var(--white); background: var(--purple-700); }
.ycw-button--white { color: var(--purple-900); background: var(--white); box-shadow: 0 14px 35px rgba(25,8,27,.18); }
.ycw-button--white:hover { background: #f7f0f8; }
.ycw-hero__controls { position: absolute; right: 0; bottom: 140px; display: flex; align-items: center; gap: 15px; }
.ycw-hero-arrow { display: grid; place-items: center; width: 48px; height: 48px; padding: 0; border: 1px solid rgba(255,255,255,.24); border-radius: 50%; color: var(--white); background: rgba(255,255,255,.08); backdrop-filter: blur(8px); cursor: pointer; transition: background .2s ease; }
.ycw-hero-arrow:hover { background: rgba(255,255,255,.18); }
.ycw-hero-arrow svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.ycw-hero-dots { display: flex; align-items: center; gap: 7px; }
.ycw-hero-dots button { width: 24px; height: 4px; padding: 0; border: 0; border-radius: 999px; background: rgba(255,255,255,.35); cursor: pointer; transition: width .25s ease, background .25s ease; }
.ycw-hero-dots button.ycw-is-active { width: 45px; background: var(--green-500); }
.ycw-hero__quickbar { position: absolute; z-index: 3; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: repeat(3, 1fr); transform: translateY(50%); border: 1px solid rgba(93, 51, 98, .10); border-radius: 25px; background: var(--white); box-shadow: var(--shadow-md); overflow: hidden; }
.ycw-hero__quickbar > a { display: flex; align-items: center; gap: 17px; min-height: 122px; padding: 25px 31px; color: var(--ink); transition: background .2s ease; }
.ycw-hero__quickbar > a:hover { background: var(--green-100); }
.ycw-hero__quickbar > a + a { border-left: 1px solid var(--line); }
.ycw-quickbar__icon { display: grid; flex: 0 0 auto; place-items: center; width: 52px; height: 52px; border-radius: 15px; color: var(--purple-700); background: #f3eaf4; }
.ycw-quickbar__icon svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.ycw-hero__quickbar span:last-child { display: flex; flex-direction: column; min-width: 0; }
.ycw-hero__quickbar strong { font-family: "Outfit", Arial, sans-serif; font-size: 17px; line-height: 1.25; }
.ycw-hero__quickbar small { margin-top: 4px; color: var(--muted); font-size: 12px; line-height: 1.4; }

.ycw-intro { padding-top: 190px; }
.ycw-intro__grid { display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: 100px; }
.ycw-kicker { display: inline-block; margin-bottom: 15px; color: var(--purple-700); font-size: 12px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.ycw-kicker--light { color: rgba(255,255,255,.78); }
.ycw-kicker--green { color: #a9d875; }
.ycw-section h2 { max-width: 800px; color: var(--purple-950); font-size: clamp(46px, 5.2vw, 74px); font-weight: 700; }
.ycw-intro__copy p { max-width: 590px; margin: 28px 0; color: var(--muted); font-size: 18px; line-height: 1.75; }
.ycw-text-link { display: inline-flex; align-items: center; gap: 9px; color: var(--purple-700); font-size: 14px; font-weight: 800; }
.ycw-text-link span { transition: transform .2s ease; }
.ycw-text-link:hover span { transform: translate(3px, -3px); }
.ycw-intro__visual { position: relative; min-height: 610px; }
.ycw-intro__visual > img { width: 100%; height: 610px; border-radius: var(--radius-lg); object-fit: cover; box-shadow: var(--shadow-md); }
.ycw-intro__badge { position: absolute; left: -52px; bottom: 45px; display: flex; align-items: center; gap: 15px; min-width: 260px; padding: 19px 21px; border-radius: 20px; background: var(--white); box-shadow: var(--shadow-md); }
.ycw-intro__badge img { width: 45px; height: 51px; filter: invert(67%) sepia(67%) saturate(440%) hue-rotate(40deg) brightness(90%) contrast(92%); }
.ycw-intro__badge span { display: flex; flex-direction: column; color: var(--muted); font-size: 12px; }
.ycw-intro__badge strong { color: var(--purple-900); font-family: "Outfit", Arial, sans-serif; font-size: 16px; }

.ycw-section-heading { display: flex; align-items: end; justify-content: space-between; gap: 55px; margin-bottom: 45px; }
.ycw-section-heading > p { max-width: 430px; margin: 0 0 5px; color: var(--muted); font-size: 16px; }
.ycw-filters { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 32px; }
.ycw-filter { min-height: 44px; padding: 0 17px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); background: var(--white); font-size: 12px; font-weight: 800; cursor: pointer; transition: color .2s ease, border-color .2s ease, background .2s ease; }
.ycw-filter:hover, .ycw-filter.ycw-is-active { color: var(--white); border-color: var(--purple-700); background: var(--purple-700); }
.ycw-shop-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 305px; gap: 18px; }
.ycw-shop-card { position: relative; min-width: 0; border-radius: 25px; overflow: hidden; isolation: isolate; box-shadow: 0 12px 35px rgba(43, 20, 46, .08); transition: transform .35s ease, box-shadow .35s ease, opacity .25s ease; }
.ycw-shop-card--feature { grid-column: span 2; grid-row: span 2; }
.ycw-shop-card--wide { grid-column: span 2; }
.ycw-shop-card.ycw-is-hidden { display: none; }
.ycw-shop-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); }
.ycw-shop-card > img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.ycw-shop-card:hover > img { transform: scale(1.055); }
.ycw-shop-card__shade { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, transparent 35%, rgba(20, 7, 23, .84) 100%); }
.ycw-shop-card__content { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; padding: 26px; color: var(--white); }
.ycw-shop-card--feature .ycw-shop-card__content { padding: 36px; }
.ycw-shop-card__content > span { display: inline-block; margin-bottom: 7px; color: #c9eb9e; font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.ycw-shop-card h3 { margin: 0; font-family: "Outfit", Arial, sans-serif; font-size: clamp(24px, 2vw, 33px); line-height: 1.05; letter-spacing: -.02em; }
.ycw-shop-card--feature h3 { font-size: clamp(37px, 4vw, 58px); }
.ycw-shop-card__content a { display: inline-flex; align-items: center; gap: 8px; margin-top: 17px; color: rgba(255,255,255,.9); font-size: 12px; font-weight: 800; opacity: 0; transform: translateY(8px); transition: opacity .25s ease, transform .25s ease; }
.ycw-shop-card:hover .ycw-shop-card__content a { opacity: 1; transform: translateY(0); }
.ycw-shop-card__content b { font-size: 14px; }
.ycw-section-cta { display: flex; align-items: center; justify-content: space-between; gap: 25px; margin-top: 36px; padding: 27px 31px; border: 1px solid var(--line); border-radius: 22px; background: var(--white); }
.ycw-section-cta p { margin: 0; color: var(--muted); }

.ycw-image-break { position: relative; min-height: 760px; color: var(--white); overflow: hidden; }
.ycw-image-break > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 46%; }
.ycw-image-break__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(31, 8, 35, .88), rgba(41, 12, 45, .45) 54%, rgba(20, 6, 22, .12)); }
.ycw-image-break__content { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center; min-height: 760px; }
.ycw-image-break h2 { max-width: 850px; font-size: clamp(56px, 7vw, 96px); }
.ycw-image-break p { max-width: 560px; margin: 25px 0 0; color: rgba(255,255,255,.82); font-size: 19px; }

.ycw-action-grid { display: grid; grid-template-columns: 1.25fr .75fr; grid-auto-rows: 620px; gap: 22px; }
.ycw-action-card { position: relative; border-radius: 30px; overflow: hidden; color: var(--white); isolation: isolate; box-shadow: var(--shadow-sm); }
.ycw-action-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.ycw-action-card:hover img { transform: scale(1.04); }
.ycw-action-card__shade { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(22,6,25,.05) 20%, rgba(31,7,35,.86) 100%); }
.ycw-action-card__content { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; padding: 38px; }
.ycw-action-card--large .ycw-action-card__content { padding: 48px; }
.ycw-pill { display: inline-flex; align-items: center; min-height: 29px; padding: 0 11px; border-radius: 999px; color: var(--purple-900); background: #d9f3b8; font-size: 10px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.ycw-action-card h3 { margin: 17px 0 12px; font-family: "Outfit", Arial, sans-serif; font-size: clamp(38px, 4.2vw, 62px); line-height: 1; letter-spacing: -.035em; }
.ycw-action-card:not(.ycw-action-card--large) h3 { font-size: clamp(32px, 3.3vw, 49px); }
.ycw-action-card p { max-width: 540px; margin: 0; color: rgba(255,255,255,.79); font-size: 16px; }
.ycw-action-card a { display: inline-flex; align-items: center; gap: 9px; margin-top: 24px; font-size: 13px; font-weight: 800; }
.ycw-action-card a span { transition: transform .2s ease; }
.ycw-action-card a:hover span { transform: translate(3px, -3px); }

.ycw-section--purple { position: relative; color: var(--white); background: var(--purple-950); overflow: hidden; }
.ycw-section--purple::before { content: ""; position: absolute; width: 620px; height: 620px; top: -330px; right: -160px; border-radius: 50%; background: rgba(132,53,140,.23); filter: blur(1px); }
.ycw-experience__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 95px; }
.ycw-experience__collage { position: relative; min-height: 650px; }
.ycw-experience__main { width: 82%; height: 620px; margin: 0; border-radius: 34px; overflow: hidden; }
.ycw-experience__main img, .ycw-experience__small img { width: 100%; height: 100%; object-fit: cover; }
.ycw-experience__small { position: absolute; right: 0; bottom: -35px; width: 43%; height: 310px; margin: 0; border: 11px solid var(--purple-950); border-radius: 27px; overflow: hidden; box-shadow: var(--shadow-lg); }
.ycw-experience__clover { position: absolute; top: 34px; right: 5px; display: grid; place-items: center; width: 100px; height: 100px; border-radius: 50%; background: var(--green-500); transform: rotate(9deg); }
.ycw-experience__clover img { width: 53px; filter: brightness(0) invert(1); }
.ycw-experience__copy h2 { color: var(--white); font-size: clamp(52px, 5.5vw, 78px); }
.ycw-experience__copy > p { margin: 27px 0 0; color: rgba(255,255,255,.72); font-size: 17px; }
.ycw-check-list { display: grid; gap: 13px; margin: 32px 0 38px; padding: 0; list-style: none; }
.ycw-check-list li { display: flex; align-items: center; gap: 13px; color: rgba(255,255,255,.88); }
.ycw-check-list span { display: grid; place-items: center; width: 27px; height: 27px; border-radius: 50%; color: var(--purple-950); background: var(--green-500); font-size: 13px; font-weight: 900; }

.ycw-news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.ycw-news-card { border: 1px solid var(--line); border-radius: 27px; background: var(--white); overflow: hidden; transition: transform .3s ease, box-shadow .3s ease; }
.ycw-news-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-sm); }
.ycw-news-card__image { position: relative; display: block; height: 310px; overflow: hidden; }
.ycw-news-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s ease; }
.ycw-news-card:hover .ycw-news-card__image img { transform: scale(1.045); }
.ycw-news-card__image span { position: absolute; top: 18px; left: 18px; display: inline-flex; align-items: center; min-height: 30px; padding: 0 11px; border-radius: 999px; color: var(--white); background: rgba(55, 15, 60, .82); backdrop-filter: blur(8px); font-size: 10px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.ycw-news-card__body { padding: 28px; }
.ycw-news-card time { color: var(--muted); font-size: 11px; font-weight: 700; }
.ycw-news-card h3 { margin: 10px 0 12px; color: var(--purple-950); font-family: "Outfit", Arial, sans-serif; font-size: 25px; line-height: 1.18; letter-spacing: -.02em; }
.ycw-news-card p { margin: 0; color: var(--muted); font-size: 14px; }
.ycw-news-card__body > a { display: inline-flex; align-items: center; gap: 8px; margin-top: 21px; color: var(--purple-700); font-size: 12px; font-weight: 800; }

.ycw-visit { position: relative; min-height: 700px; color: var(--white); overflow: hidden; }
.ycw-visit__background, .ycw-visit__background img, .ycw-visit__shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.ycw-visit__background img { object-fit: cover; }
.ycw-visit__shade { background: linear-gradient(90deg, rgba(41, 10, 45, .92), rgba(56, 14, 61, .71) 55%, rgba(31, 8, 34, .45)); }
.ycw-visit__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 450px; align-items: center; gap: 80px; min-height: 700px; }
.ycw-visit h2 { max-width: 810px; font-size: clamp(56px, 6.5vw, 92px); }
.ycw-visit__copy p { max-width: 620px; margin: 26px 0 0; color: rgba(255,255,255,.79); font-size: 18px; }
.ycw-visit__buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.ycw-visit-card { padding: 31px; border: 1px solid rgba(255,255,255,.23); border-radius: 28px; background: rgba(255,255,255,.12); backdrop-filter: blur(18px); box-shadow: var(--shadow-lg); }
.ycw-visit-card__row { display: flex; align-items: center; gap: 17px; padding: 18px 0; }
.ycw-visit-card__row + .ycw-visit-card__row { border-top: 1px solid rgba(255,255,255,.16); }
.ycw-visit-card__icon { display: grid; flex: 0 0 auto; place-items: center; width: 48px; height: 48px; border-radius: 14px; color: var(--purple-950); background: var(--green-500); }
.ycw-visit-card__icon svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.ycw-visit-card__row div { display: flex; flex-direction: column; }
.ycw-visit-card small { color: rgba(255,255,255,.65); font-size: 11px; font-weight: 700; }
.ycw-visit-card strong { font-family: "Outfit", Arial, sans-serif; font-size: 17px; }

.ycw-footer { padding: 78px 0 28px; background: #f4eff5; }
.ycw-footer__grid { display: grid; grid-template-columns: 1.65fr repeat(3, 1fr); gap: 55px; padding-bottom: 50px; }
.ycw-footer__brand img { width: 245px; }
.ycw-footer__brand p { max-width: 350px; margin: 20px 0 0; color: var(--muted); font-size: 14px; }
.ycw-footer h2 { margin: 5px 0 18px; color: var(--purple-950); font-family: "Outfit", Arial, sans-serif; font-size: 15px; }
.ycw-footer__grid > div:not(.ycw-footer__brand) { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.ycw-footer a { color: var(--muted); font-size: 13px; font-weight: 700; transition: color .2s ease; }
.ycw-footer a:hover { color: var(--purple-700); }
.ycw-footer__bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 23px; border-top: 1px solid #ded4df; color: #827884; font-size: 12px; }

.ycw-reveal { opacity: 0; transform: translateY(25px); transition: opacity .75s ease, transform .75s ease; }
.ycw-reveal.ycw-is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1180px) {
  .ycw-brand img { width: 235px; }
  .ycw-main-nav a { padding-inline: 10px; }
  .ycw-intro__grid, .ycw-experience__grid { gap: 60px; }
  .ycw-shop-grid { grid-template-columns: repeat(3, 1fr); }
  .ycw-shop-card--feature { grid-column: span 2; }
  .ycw-shop-card--wide { grid-column: span 1; }
  .ycw-visit__inner { grid-template-columns: 1fr 400px; gap: 45px; }
}

@media (max-width: 960px) {
  :root { --shell: min(100% - 34px, 1380px); }
  .ycw-topbar__links a:not(:last-child) { display: none; }
  .ycw-header__inner { min-height: 82px; }
  .ycw-brand img { width: 210px; }
  .ycw-menu-toggle { display: flex; }
  .ycw-main-nav { position: fixed; inset: 132px 17px auto; display: grid; gap: 4px; padding: 16px; border: 1px solid var(--line); border-radius: 21px; background: rgba(255,255,255,.99); box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: opacity .2s ease, transform .2s ease, visibility .2s ease; }
  .ycw-main-nav.ycw-is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .ycw-main-nav a { min-height: 48px; padding: 0 14px; }
  .ycw-main-nav a::after { display: none; }
  .ycw-main-nav .ycw-nav-button { margin: 5px 0 0; justify-content: center; }
  .ycw-menu-toggle.ycw-is-open span:nth-child(2) { transform: translateY(8px) rotate(45deg); }
  .ycw-menu-toggle.ycw-is-open span:nth-child(3) { opacity: 0; }
  .ycw-menu-toggle.ycw-is-open span:nth-child(4) { transform: translateY(-8px) rotate(-45deg); }
  .ycw-hero { min-height: 760px; }
  .ycw-hero__content { min-height: 650px; padding-bottom: 145px; }
  .ycw-hero h1 { font-size: clamp(58px, 10vw, 86px); }
  .ycw-hero__controls { right: 4px; bottom: 135px; }
  .ycw-hero__quickbar { grid-template-columns: 1fr; transform: translateY(66%); }
  .ycw-hero__quickbar > a { min-height: 92px; padding: 18px 24px; }
  .ycw-hero__quickbar > a + a { border-top: 1px solid var(--line); border-left: 0; }
  .ycw-intro { padding-top: 285px; }
  .ycw-intro__grid { grid-template-columns: 1fr; gap: 48px; }
  .ycw-intro__copy { max-width: 720px; }
  .ycw-intro__visual { min-height: 560px; }
  .ycw-intro__visual > img { height: 560px; }
  .ycw-intro__badge { left: 28px; }
  .ycw-section-heading { align-items: flex-start; flex-direction: column; gap: 17px; }
  .ycw-shop-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 330px; }
  .ycw-shop-card--feature { grid-column: span 2; grid-row: span 1; }
  .ycw-shop-card--wide { grid-column: span 1; }
  .ycw-shop-card__content a { opacity: 1; transform: none; }
  .ycw-image-break, .ycw-image-break__content { min-height: 650px; }
  .ycw-action-grid { grid-template-columns: 1fr; grid-auto-rows: 560px; }
  .ycw-experience__grid { grid-template-columns: 1fr; gap: 80px; }
  .ycw-experience__collage { max-width: 760px; }
  .ycw-experience__copy { max-width: 760px; }
  .ycw-news-grid { grid-template-columns: 1fr 1fr; }
  .ycw-news-card:last-child { grid-column: 1 / -1; }
  .ycw-visit__inner { grid-template-columns: 1fr; gap: 46px; padding: 100px 0; }
  .ycw-visit-card { max-width: 560px; }
  .ycw-footer__grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .ycw-footer__grid > div:last-child { display: none; }
}

@media (max-width: 650px) {
  :root { --shell: min(100% - 24px, 1380px); }
  .ycw-section { padding: 82px 0; }
  .ycw-topbar__inner { justify-content: center; min-height: 34px; text-align: center; }
  .ycw-topbar__links { display: none; }
  .ycw-header__inner { min-height: 76px; }
  .ycw-brand img { width: 184px; }
  .ycw-main-nav { inset: 122px 12px auto; }
  .ycw-hero { min-height: 700px; }
  .ycw-hero__content { min-height: 610px; padding: 70px 0 185px; }
  .ycw-hero__shade { background: linear-gradient(90deg, rgba(25,7,28,.88), rgba(36,9,40,.55)); }
  .ycw-hero h1 { font-size: clamp(48px, 15vw, 68px); }
  .ycw-hero__copy p { font-size: 16px; }
  .ycw-hero__actions { flex-direction: column; align-items: stretch; }
  .ycw-button { width: 100%; }
  .ycw-hero__controls { right: auto; bottom: 147px; left: 0; }
  .ycw-hero__quickbar { width: calc(100% - 24px); transform: translateY(72%); border-radius: 20px; }
  .ycw-hero__quickbar > a { min-height: 83px; padding: 14px 17px; }
  .ycw-hero__quickbar > a:nth-child(3) { display: none; }
  .ycw-quickbar__icon { width: 45px; height: 45px; }
  .ycw-hero__quickbar strong { font-size: 15px; }
  .ycw-hero__quickbar small { font-size: 11px; }
  .ycw-intro { padding-top: 230px; }
  .ycw-section h2 { font-size: 44px; }
  .ycw-intro__copy p { font-size: 16px; }
  .ycw-intro__visual, .ycw-intro__visual > img { min-height: 430px; height: 430px; border-radius: 27px; }
  .ycw-intro__badge { right: 15px; bottom: 15px; left: 15px; min-width: 0; }
  .ycw-filters { flex-wrap: nowrap; margin-right: -12px; overflow-x: auto; padding: 0 12px 7px 0; scrollbar-width: none; }
  .ycw-filters::-webkit-scrollbar { display: none; }
  .ycw-filter { flex: 0 0 auto; }
  .ycw-shop-grid { grid-template-columns: 1fr; grid-auto-rows: 400px; gap: 14px; }
  .ycw-shop-card--feature, .ycw-shop-card--wide { grid-column: auto; grid-row: auto; }
  .ycw-shop-card--feature h3, .ycw-shop-card h3 { font-size: 34px; }
  .ycw-shop-card--feature .ycw-shop-card__content, .ycw-shop-card__content { padding: 26px; }
  .ycw-section-cta { align-items: flex-start; flex-direction: column; }
  .ycw-image-break, .ycw-image-break__content { min-height: 590px; }
  .ycw-image-break h2 { font-size: 54px; }
  .ycw-action-grid { grid-auto-rows: 500px; }
  .ycw-action-card, .ycw-action-card--large { border-radius: 25px; }
  .ycw-action-card__content, .ycw-action-card--large .ycw-action-card__content { padding: 27px; }
  .ycw-action-card h3, .ycw-action-card:not(.ycw-action-card--large) h3 { font-size: 39px; }
  .ycw-text-link--desktop { display: none; }
  .ycw-experience__grid { gap: 55px; }
  .ycw-experience__collage { min-height: 490px; }
  .ycw-experience__main { width: 92%; height: 460px; border-radius: 27px; }
  .ycw-experience__small { width: 48%; height: 210px; border-width: 7px; border-radius: 20px; }
  .ycw-experience__clover { top: 20px; right: 0; width: 74px; height: 74px; }
  .ycw-experience__clover img { width: 40px; }
  .ycw-experience__copy h2 { font-size: 48px; }
  .ycw-news-grid { grid-template-columns: 1fr; }
  .ycw-news-card:last-child { grid-column: auto; }
  .ycw-news-card__image { height: 290px; }
  .ycw-visit { min-height: 760px; }
  .ycw-visit__inner { padding: 82px 0; }
  .ycw-visit h2 { font-size: 53px; }
  .ycw-visit__copy p { font-size: 16px; }
  .ycw-visit__buttons { flex-direction: column; }
  .ycw-visit-card { padding: 22px; }
  .ycw-footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .ycw-footer__brand { grid-column: 1 / -1; }
  .ycw-footer__bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .ycw-reveal { opacity: 1; transform: none; }
}


/* Winkelinformatie */
.ycw-event-extra { margin-top: 12px !important; }
.ycw-shop-dialog { width: min(980px, calc(100% - 32px)); max-height: min(850px, calc(100vh - 32px)); padding: 0; border: 0; border-radius: 30px; background: var(--white); box-shadow: var(--shadow-lg); overflow: auto; }
.ycw-shop-dialog::backdrop { background: rgba(27, 8, 30, .72); backdrop-filter: blur(5px); }
.ycw-shop-dialog[open] { display: grid; grid-template-columns: .9fr 1.1fr; }
.ycw-shop-dialog__close { position: absolute; z-index: 3; top: 16px; right: 16px; display: grid; place-items: center; width: 42px; height: 42px; padding: 0; border: 0; border-radius: 50%; color: var(--purple-950); background: rgba(255,255,255,.94); box-shadow: var(--shadow-sm); font-size: 27px; line-height: 1; cursor: pointer; }
.ycw-shop-dialog__image { min-height: 100%; background: var(--soft); }
.ycw-shop-dialog__image img { width: 100%; height: 100%; min-height: 650px; object-fit: cover; }
.ycw-shop-dialog__content { padding: 58px 52px 48px; }
.ycw-shop-dialog__content h2 { margin: 0 0 28px; color: var(--purple-950); font-family: "Outfit", Arial, sans-serif; font-size: clamp(38px, 4vw, 56px); line-height: 1; letter-spacing: -.035em; }
.ycw-shop-dialog__info { display: grid; gap: 16px; padding-bottom: 25px; border-bottom: 1px solid var(--line); }
.ycw-shop-dialog__info small { display: block; margin-bottom: 2px; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.ycw-shop-dialog__info p { margin: 0; font-size: 14px; }
.ycw-shop-dialog__info a { color: var(--purple-700); font-weight: 800; }
.ycw-shop-dialog__content h3 { margin: 27px 0 15px; color: var(--purple-950); font-family: "Outfit", Arial, sans-serif; font-size: 20px; }
.ycw-shop-hours { display: grid; grid-template-columns: auto 1fr; gap: 6px 24px; margin: 0; font-size: 13px; }
.ycw-shop-hours dt { color: var(--muted); }
.ycw-shop-hours dd { margin: 0; text-align: right; font-weight: 700; }
@media (max-width: 760px) {
  .ycw-shop-dialog[open] { display: block; }
  .ycw-shop-dialog__image { height: 260px; min-height: 0; }
  .ycw-shop-dialog__image img { min-height: 0; height: 260px; }
  .ycw-shop-dialog__content { padding: 36px 27px 32px; }
  .ycw-shop-dialog__content h2 { font-size: 38px; }
}

/* =============================================================================
   Winkelinformatie - responsive scroll fix
   Zorgt dat alle winkelinformatie op laptop, tablet en mobiel bereikbaar blijft.
   ============================================================================= */

.ycw-shop-dialog {
  max-height: calc(100vh - 24px);
  max-height: calc(100dvh - 24px);
  overflow: hidden;
}

.ycw-shop-dialog[open] {
  height: min(850px, calc(100vh - 24px));
  height: min(850px, calc(100dvh - 24px));
}

.ycw-shop-dialog__image {
  min-height: 0;
  height: 100%;
  overflow: hidden;
}

.ycw-shop-dialog__image img {
  min-height: 0;
  height: 100%;
}

.ycw-shop-dialog__content {
  min-height: 0;
  max-height: 100%;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-gutter: stable;
}

@media (max-height: 760px) and (min-width: 761px) {
  .ycw-shop-dialog__content {
    padding-top: 42px;
    padding-bottom: 32px;
  }

  .ycw-shop-dialog__content h2 {
    margin-bottom: 20px;
    font-size: clamp(34px, 4vw, 48px);
  }

  .ycw-shop-dialog__content h3 {
    margin-top: 20px;
  }
}

@media (max-width: 760px) {
  .ycw-shop-dialog {
    width: min(980px, calc(100% - 16px));
    max-height: calc(100vh - 16px);
    max-height: calc(100dvh - 16px);
    overflow-x: hidden;
    overflow-y: auto;
    border-radius: 22px;
  }

  .ycw-shop-dialog[open] {
    display: block;
    height: auto;
    max-height: calc(100vh - 16px);
    max-height: calc(100dvh - 16px);
  }

  .ycw-shop-dialog__image {
    height: 220px;
    min-height: 0;
  }

  .ycw-shop-dialog__image img {
    height: 220px;
    min-height: 0;
  }

  .ycw-shop-dialog__content {
    max-height: none;
    overflow: visible;
    padding: 34px 24px 30px;
  }

  .ycw-shop-dialog__content h2 {
    font-size: clamp(32px, 10vw, 38px);
  }
}

@media (max-width: 480px) {
  .ycw-shop-dialog__image {
    height: 180px;
  }

  .ycw-shop-dialog__image img {
    height: 180px;
  }

  .ycw-shop-dialog__content {
    padding: 30px 20px 28px;
  }

  .ycw-shop-hours {
    gap: 8px 16px;
  }
}

/* =============================================================================
   Final responsive & visual polish pass
   ============================================================================= */

/* Algemene robuustheid voor lange teksten en smalle schermen */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.ycw-hero__copy,
.ycw-hero__quickbar > a,
.ycw-hero__quickbar span:last-child,
.ycw-intro__copy,
.ycw-intro__badge,
.ycw-section-heading > *,
.ycw-shop-card__content,
.ycw-action-card__content,
.ycw-experience__copy,
.ycw-visit__copy,
.ycw-visit-card,
.ycw-visit-card__row > div,
.ycw-footer__grid > * {
  min-width: 0;
}

.ycw-hero h1,
.ycw-section h2,
.ycw-image-break h2,
.ycw-shop-card h3,
.ycw-action-card h3,
.ycw-news-card h3,
.ycw-visit h2,
.ycw-shop-dialog__content h2,
.ycw-intro__copy p,
.ycw-section-heading p,
.ycw-action-card p,
.ycw-experience__copy p,
.ycw-visit__copy p,
.ycw-visit-card strong,
.ycw-footer p,
.ycw-footer a {
  overflow-wrap: break-word;
}

/* Duidelijke toetsenbordfocus zonder de bestaande stijl te verstoren */
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--green-500);
  outline-offset: 3px;
}

/* Hero CTA's altijd strak en gelijk uitgelijnd */
.ycw-hero__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(190px, max-content));
  align-items: stretch;
  width: fit-content;
  max-width: 100%;
}

.ycw-hero__actions .ycw-button {
  min-width: 190px;
  min-height: 56px;
  height: 100%;
  padding-block: 12px;
  text-align: center;
  line-height: 1.25;
  white-space: normal;
}

/* Sliderbediening visueel op één lijn */
.ycw-hero__controls {
  min-height: 48px;
}

.ycw-hero-arrow,
.ycw-hero-dots,
.ycw-hero-dots button {
  flex: 0 0 auto;
}

/* Paarse bezoeksectie: kop moet altijd wit blijven */
.ycw-visit h2 {
  color: var(--white);
  text-shadow: 0 2px 24px rgba(24, 7, 27, .18);
}

/* Eventtekst kan groeien zonder uit de afbeelding te vallen */
.ycw-action-card__content {
  max-width: 980px;
}

.ycw-action-card p {
  line-height: 1.6;
}

/* Bezoekkaart en winkelmodal blijven binnen de beschikbare breedte */
.ycw-visit-card__row > div {
  flex: 1 1 auto;
}

.ycw-visit-card strong,
.ycw-shop-dialog__info p,
.ycw-shop-dialog__info a {
  overflow-wrap: anywhere;
}

.ycw-shop-hours {
  grid-template-columns: minmax(0, 1fr) auto;
}

.ycw-shop-hours dt,
.ycw-shop-hours dd {
  min-width: 0;
}

@media (max-width: 960px) {
  /* Mobiel menu mag op lage schermen scrollen */
  .ycw-main-nav {
    max-height: calc(100dvh - 145px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  /* Hero behoudt voldoende ruimte voor tekst en CTA's */
  .ycw-hero__copy {
    max-width: 680px;
  }

  .ycw-hero__actions {
    grid-template-columns: repeat(2, minmax(175px, 1fr));
    width: min(100%, 430px);
  }

  .ycw-hero__actions .ycw-button {
    min-width: 0;
    width: 100%;
  }

  /* Lange evenementtekst krijgt een dynamische kaart */
  .ycw-action-grid {
    grid-auto-rows: auto;
  }

  #evenementen .ycw-action-card {
    min-height: 660px;
  }

  #evenementen .ycw-action-card > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  #evenementen .ycw-action-card__content {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 660px;
    max-width: none;
  }
}

@media (max-width: 650px) {
  :root {
    --shell: min(100% - 28px, 1380px);
  }

  .ycw-section {
    padding: 76px 0;
  }

  .ycw-header__inner {
    gap: 16px;
  }

  /* Hero op mobiel: geen overlap tussen tekst, CTA's, controls en quickbar */
  .ycw-hero {
    min-height: 820px;
  }

  .ycw-hero__content {
    justify-content: center;
    min-height: 720px;
    padding: 54px 0 220px;
  }

  .ycw-hero__copy {
    width: 100%;
  }

  .ycw-eyebrow {
    margin-bottom: 17px;
    font-size: 10px;
    letter-spacing: .14em;
  }

  .ycw-eyebrow span {
    width: 26px;
  }

  .ycw-hero h1 {
    font-size: clamp(46px, 14.5vw, 62px);
    line-height: 1;
  }

  .ycw-hero__copy p {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.55;
  }

  .ycw-hero__actions {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 10px;
    margin-top: 27px;
  }

  .ycw-hero__actions .ycw-button {
    min-height: 54px;
    width: 100%;
  }

  .ycw-hero__controls {
    right: auto;
    bottom: 158px;
    left: 0;
  }

  .ycw-hero__quickbar {
    width: 100%;
    transform: translateY(70%);
  }

  .ycw-hero__quickbar > a {
    min-height: 82px;
    padding: 14px 16px;
  }

  .ycw-quickbar__icon {
    width: 43px;
    height: 43px;
  }

  .ycw-hero__quickbar strong {
    font-size: 14px;
  }

  .ycw-hero__quickbar small {
    font-size: 10.5px;
  }

  .ycw-intro {
    padding-top: 215px;
  }

  /* Koppen schalen mee met kleine toestellen */
  .ycw-section h2 {
    font-size: clamp(36px, 10.5vw, 44px);
    line-height: 1.02;
  }

  .ycw-section-heading {
    margin-bottom: 34px;
  }

  .ycw-section-heading > p {
    font-size: 15px;
    line-height: 1.6;
  }

  .ycw-intro__copy p {
    margin: 22px 0;
  }

  .ycw-intro__visual,
  .ycw-intro__visual > img {
    min-height: 390px;
    height: 390px;
  }

  .ycw-intro__badge {
    gap: 12px;
    padding: 16px 17px;
  }

  .ycw-intro__badge span {
    line-height: 1.45;
  }

  /* Winkelkaarten: langere namen blijven binnen de kaart */
  .ycw-shop-grid {
    grid-auto-rows: 380px;
  }

  .ycw-shop-card--feature h3,
  .ycw-shop-card h3 {
    font-size: clamp(28px, 8.5vw, 34px);
    line-height: 1.05;
  }

  .ycw-shop-card--feature .ycw-shop-card__content,
  .ycw-shop-card__content {
    padding: 24px;
  }

  .ycw-section-cta {
    margin-top: 28px;
    padding: 23px;
  }

  .ycw-section-cta p {
    line-height: 1.55;
  }

  /* Sfeerbanner */
  .ycw-image-break,
  .ycw-image-break__content {
    min-height: 540px;
  }

  .ycw-image-break__content {
    padding: 68px 0;
  }

  .ycw-image-break h2 {
    font-size: clamp(40px, 11.5vw, 52px);
    line-height: 1;
  }

  .ycw-image-break p {
    font-size: 16px;
    line-height: 1.6;
  }

  /* Kerst Event: natuurlijke hoogte voorkomt afgekapt of overlopend tekst */
  .ycw-action-grid {
    display: block;
  }

  #evenementen .ycw-action-card {
    min-height: 0;
    border-radius: 25px;
  }

  #evenementen .ycw-action-card__content,
  #evenementen .ycw-action-card--large .ycw-action-card__content {
    min-height: 720px;
    padding: 28px 24px;
  }

  .ycw-action-card h3,
  .ycw-action-card:not(.ycw-action-card--large) h3 {
    margin-top: 14px;
    font-size: clamp(34px, 10vw, 42px);
    line-height: 1.02;
  }

  .ycw-action-card p {
    font-size: 14.5px;
    line-height: 1.55;
  }

  .ycw-event-extra {
    margin-top: 10px !important;
  }

  /* Paarse contentsectie */
  .ycw-experience__grid {
    gap: 46px;
  }

  .ycw-experience__collage {
    min-height: 440px;
  }

  .ycw-experience__main {
    height: 415px;
  }

  .ycw-experience__small {
    height: 185px;
  }

  .ycw-experience__copy h2 {
    font-size: clamp(40px, 11vw, 48px);
  }

  .ycw-check-list li {
    align-items: flex-start;
    line-height: 1.45;
  }

  .ycw-check-list span {
    flex: 0 0 27px;
    margin-top: 1px;
  }

  /* Bezoeksectie */
  .ycw-visit {
    min-height: 0;
  }

  .ycw-visit__inner {
    gap: 38px;
    min-height: 0;
    padding: 76px 0;
  }

  .ycw-visit h2 {
    color: var(--white);
    font-size: clamp(40px, 11.5vw, 52px);
    line-height: 1;
  }

  .ycw-visit__copy p {
    margin-top: 20px;
    line-height: 1.6;
  }

  .ycw-visit__buttons {
    gap: 10px;
    margin-top: 27px;
  }

  .ycw-visit-card {
    width: 100%;
    padding: 18px 20px;
  }

  .ycw-visit-card__row {
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
  }

  .ycw-visit-card__icon {
    width: 44px;
    height: 44px;
  }

  .ycw-visit-card strong {
    font-size: 16px;
    line-height: 1.35;
  }

  /* Footer op zeer smalle schermen rustiger */
  .ycw-footer {
    padding-top: 64px;
  }

  .ycw-footer__grid {
    gap: 31px 24px;
  }

  .ycw-footer__brand img {
    width: min(245px, 100%);
  }

  /* Winkelinformatie */
  .ycw-shop-dialog {
    width: calc(100% - 16px);
  }

  .ycw-shop-dialog__content {
    padding: 32px 22px 28px;
  }

  .ycw-shop-dialog__content h2 {
    margin-bottom: 22px;
    font-size: clamp(30px, 9.5vw, 38px);
    line-height: 1.04;
  }

  .ycw-shop-dialog__info {
    gap: 14px;
  }

  .ycw-shop-dialog__content h3 {
    margin-top: 23px;
  }

  .ycw-shop-hours {
    gap: 8px 14px;
    font-size: 13px;
  }
}

@media (max-width: 400px) {
  :root {
    --shell: min(100% - 22px, 1380px);
  }

  .ycw-brand img {
    width: 168px;
  }

  .ycw-menu-toggle {
    width: 43px;
    height: 43px;
  }

  .ycw-hero {
    min-height: 835px;
  }

  .ycw-hero__content {
    min-height: 735px;
    padding-top: 48px;
  }

  .ycw-hero h1 {
    font-size: clamp(43px, 14vw, 56px);
  }

  .ycw-hero__quickbar > a {
    gap: 12px;
    padding-inline: 13px;
  }

  .ycw-quickbar__icon {
    width: 40px;
    height: 40px;
  }

  #evenementen .ycw-action-card__content,
  #evenementen .ycw-action-card--large .ycw-action-card__content {
    min-height: 790px;
    padding-inline: 21px;
  }

  .ycw-footer__grid {
    grid-template-columns: 1fr;
  }

  .ycw-footer__brand {
    grid-column: auto;
  }
}

/* Laat de quickbar bewust buiten de hero doorlopen, maar houd de achtergrond geknipt */
.ycw-hero {
  overflow: visible;
}

.ycw-hero__slides {
  overflow: hidden;
}

.ycw-hero__shade,
.ycw-hero__glow {
  pointer-events: none;
}

/* Gelijke breedte voor beide hero CTA's op desktop en tablet */
.ycw-hero__actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, 430px);
}

@media (max-width: 960px) {
  #evenementen .ycw-action-card__shade {
    background: linear-gradient(180deg, rgba(31, 7, 35, .34) 0%, rgba(31, 7, 35, .78) 38%, rgba(31, 7, 35, .96) 100%);
  }
}

@media (max-width: 650px) {
  .ycw-filters {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    padding-right: 0;
  }

  .ycw-hero__actions {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .ycw-hero__controls {
    bottom: 140px;
  }
}


/* WordPress additions by Yourcloudweb */
.ycw-action-card--full { grid-column: 1 / -1; }
.ycw-content-page { padding: 90px 0; }
.ycw-content-page__inner { width: min(900px, 100%); }
.ycw-content-page__inner > h1 { margin: 0 0 32px; color: var(--purple-950); font-family: "Outfit", Arial, sans-serif; font-size: clamp(46px, 6vw, 76px); line-height: 1; letter-spacing: -.035em; }
.ycw-content-page__content { color: var(--ink); font-size: 17px; }
.ycw-content-page__content > * + * { margin-top: 1.25em; }
.ycw-content-page__content a { color: var(--purple-700); text-decoration: underline; text-underline-offset: 3px; }
.ycw-shop-single__meta { display: grid; gap: 12px; margin: 32px 0; padding: 24px; border: 1px solid var(--line); border-radius: 22px; background: var(--soft); }
.ycw-shop-single__meta p { margin: 0; }
.ycw-shop-single__hours { display: grid; grid-template-columns: minmax(110px, .7fr) 1fr; gap: 8px 20px; margin-top: 24px; }
.ycw-shop-single__hours dt { font-weight: 800; }
.ycw-shop-single__hours dd { margin: 0; }
@media (max-width: 700px) {
  .ycw-content-page { padding: 64px 0; }
  .ycw-shop-single__hours { grid-template-columns: 1fr 1fr; }
}

.ycw-action-card__content p + p { margin-top: 12px; }
@media (max-width: 650px) { .ycw-action-card__content p + p { margin-top: 10px; } }
