:root {
  --blue: #0d3f8f;
  --blue-dark: #082b67;
  --pink: #ddb7ae;
  --pink-soft: #f5e8e4;
  --cream: #fbf8f3;
  --paper: #fffdf9;
  --ink: #182033;
  --muted: #687083;
  --line: #dedbd6;
  --shadow: 0 14px 42px rgba(34, 28, 24, .09);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: #efece8; }
body { margin: 0; min-height: 100vh; color: var(--ink); background: radial-gradient(circle at 50% 0, #fff 0, #f5f2ee 55%, #ebe7e2 100%); font-family: var(--sans); }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }
.skip-link { position: fixed; left: 16px; top: 12px; z-index: 100; padding: 10px 16px; color: white; background: var(--blue); transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }
.site-frame { width: min(1480px, calc(100% - 48px)); min-height: calc(100vh - 48px); margin: 24px auto; overflow: hidden; border: 1px solid rgba(72,61,56,.1); border-radius: 8px; background: var(--paper); box-shadow: var(--shadow); }

.site-header { position: sticky; top: 0; z-index: 50; min-height: 76px; display: grid; grid-template-columns: 190px 1fr auto; align-items: center; gap: 30px; padding: 0 28px; color: white; background: linear-gradient(90deg, rgba(223,185,176,.98), rgba(213,170,159,.98)); transition: min-height .45s cubic-bezier(.22,1,.36,1), box-shadow .45s ease, background .45s ease; }
.site-header.is-condensed, .site-header.is-scrolled { min-height: 64px; background: linear-gradient(90deg, rgba(218,177,168,.96), rgba(204,157,146,.96)); box-shadow: 0 10px 28px rgba(37,24,21,.12); backdrop-filter: blur(12px); }
.scroll-progress { position: absolute; left: 0; bottom: 0; width: 100%; height: 2px; background: rgba(255,255,255,.9); pointer-events: none; transform: scaleX(0); transform-origin: left center; }
.brand { display: block; width: 150px; height: 62px; overflow: hidden; }
.brand img { width: 125px; height: 64px; object-fit: contain; filter: brightness(0) invert(1); transition: transform .45s cubic-bezier(.22,1,.36,1); }
.site-header.is-condensed .brand img, .site-header.is-scrolled .brand img { transform: scale(.9); }
.main-nav { display: flex; justify-content: center; gap: clamp(16px, 2vw, 34px); }
.main-nav a { position: relative; padding: 28px 0 25px; color: white; font-size: 12px; font-weight: 700; letter-spacing: .035em; text-decoration: none; text-transform: uppercase; }
.main-nav a::after { content: ""; position: absolute; left: 50%; bottom: 18px; width: 0; height: 1px; background: white; transition: width .25s ease, left .25s ease; }
.main-nav a:hover::after, .main-nav a:focus-visible::after, .main-nav a.is-active::after { left: 0; width: 100%; }
.header-tools { display: flex; align-items: center; gap: 4px; }
.icon-button { position: relative; width: 38px; height: 38px; display: grid; place-items: center; padding: 0; border: 0; color: white; background: transparent; cursor: pointer; text-decoration: none; }
.icon-button svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.cart-link > span { position: absolute; right: 1px; top: 0; display: grid; place-items: center; min-width: 17px; height: 17px; padding: 0 4px; border-radius: 50%; color: white; background: var(--blue); font-size: 9px; font-weight: 700; }
.menu-toggle { display: none; }
.search-panel { position: absolute; left: 0; right: 0; top: 100%; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 20px; padding: 22px 30px; color: var(--ink); background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: var(--shadow); animation: search-drop .45s cubic-bezier(.22,1,.36,1) both; }
.search-panel[hidden] { display: none; }
@keyframes search-drop { from { opacity: 0; transform: translateY(-14px); } }
.search-panel label { color: var(--blue); font: 600 24px/1 var(--serif); }
.search-panel input { min-width: 0; padding: 13px 15px; border: 1px solid var(--line); background: white; }
.search-panel button { padding: 13px 22px; border: 0; color: white; background: var(--blue); text-transform: uppercase; font-size: 11px; font-weight: 700; cursor: pointer; }

.page-view[hidden] { display: none; }
.page-view.is-active { animation: page-in .65s cubic-bezier(.22,1,.36,1) both; }
@keyframes page-in { from { opacity: 0; transform: translateY(10px); } }
.hero { min-height: 425px; display: grid; grid-template-columns: 45% 55%; background: linear-gradient(100deg, #fff 0, #fffdfa 48%, #f3ede7 100%); border-bottom: 1px solid var(--line); }
.hero-copy { align-self: center; padding: 62px clamp(36px,5vw,82px); }
.eyebrow, .kicker { display: block; margin: 0 0 12px; color: var(--blue); font-size: 11px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.hero h1, .hero .home-club-title, .news-heading h1, .news-heading h2, .contact-layout h1 { margin: 0; color: var(--blue); font: 600 clamp(58px,5.4vw,88px)/.82 var(--serif); letter-spacing: .015em; text-transform: uppercase; }
.hero-wedding h1 { font-size: clamp(54px, 4.5vw, 76px); }
.hero-copy > p:not(.eyebrow) { max-width: 540px; margin: 22px 0 28px; color: #3a4251; font: 500 17px/1.55 var(--serif); }
.hero-media { min-height: 425px; overflow: hidden; }
.hero-media img { --media-scale: 1.045; width: 100%; height: calc(100% + 44px); margin-top: -22px; object-fit: cover; transform: translate3d(0,var(--parallax-y,0),0) scale(var(--media-scale)); transition: transform .12s linear; will-change: transform; }
.hero-tasting .hero-media img { --media-scale: 1.10; object-position: 24% 44%; }
.hero-wedding .hero-media img { object-position: center; }
.hero-media-dark { background: #171715; }
.hero-media-dark img { object-position: center 49%; }
.hero-business .hero-media img { object-position: center 46%; }
.hero-vip .hero-media img { object-position: center 51%; }
.button { position: relative; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; overflow: hidden; padding: 0 22px; border: 0; border-radius: 3px; color: white; background: linear-gradient(180deg, #1355ad, #0b3e8c); box-shadow: 0 8px 18px rgba(13,63,143,.17); font-size: 11px; font-weight: 700; letter-spacing: .04em; text-decoration: none; text-transform: uppercase; cursor: pointer; transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s ease; }
.button::after { content: ""; position: absolute; inset: -60% auto -60% -45%; width: 32%; background: rgba(255,255,255,.24); transform: rotate(16deg); transition: left .65s cubic-bezier(.22,1,.36,1); }
.button:hover { transform: translateY(-3px); box-shadow: 0 14px 26px rgba(13,63,143,.25); }
.button:hover::after { left: 118%; }
.content-block { padding: 34px clamp(26px,4vw,60px) 50px; }
.section-bar { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 24px; }
.section-bar h2, .form-section h2 { margin: 0; color: var(--blue-dark); font: 600 32px/1 var(--serif); }
.view-switch { display: flex; border: 1px solid var(--line); border-radius: 4px; overflow: hidden; }
.view-switch button { padding: 8px 14px; border: 0; color: var(--muted); background: white; font-size: 10px; text-transform: uppercase; cursor: pointer; }
.view-switch button.is-active { color: white; background: var(--blue); }
.event-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.event-grid.list-view { grid-template-columns: 1fr; }
.event-grid.list-view .event-card { grid-template-columns: 100px 1fr; min-height: 130px; }
.event-grid.list-view .event-card h3 { min-height: 0; }
.event-card { display: grid; grid-template-columns: 82px 1fr; min-height: 170px; border: 1px solid var(--line); border-radius: 5px; background: white; box-shadow: 0 4px 18px rgba(20,31,49,.04); overflow: hidden; transition: transform .45s cubic-bezier(.22,1,.36,1), box-shadow .45s ease, border-color .45s ease; }
.event-card:hover { transform: translateY(-7px); border-color: rgba(13,63,143,.25); box-shadow: 0 18px 38px rgba(20,31,49,.11); }
.event-card time { display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--blue); background: #faf7f3; border-right: 1px solid var(--line); text-transform: uppercase; }
.event-card time strong, .detail-date strong { font: 700 40px/1 var(--serif); }
.event-card time span, .detail-date span { font-size: 11px; font-weight: 700; letter-spacing: .06em; }
.event-card time small, .detail-date small { margin-top: 8px; font-size: 9px; font-weight: 700; }
.event-card > div { padding: 24px 22px; }
.event-card p { margin: 0 0 5px; color: var(--blue); font-size: 10px; font-weight: 700; text-transform: uppercase; }
.event-card h3 { margin: 0; min-height: 48px; color: var(--ink); font: 600 22px/1.02 var(--serif); }
.meta { display: block; margin: 10px 0 14px; color: var(--muted); font-size: 10px; }
.line-button { padding: 7px 12px; border: 1px solid var(--blue); border-radius: 2px; color: var(--blue); background: linear-gradient(90deg,var(--blue) 50%,white 50%) right/202% 100%; font-size: 9px; font-weight: 700; text-transform: uppercase; cursor: pointer; transition: color .35s ease, background-position .35s ease; }
.line-button:hover { color: white; background-position: left; }
.event-detail { min-height: 245px; display: grid; grid-template-columns: 110px 1.3fr .9fr; margin-top: 22px; border: 1px solid var(--line); border-radius: 5px; overflow: hidden; }
.detail-date { display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--blue); background: var(--pink-soft); text-transform: uppercase; }
.detail-copy { align-self: center; padding: 32px; }
.detail-copy h2 { margin: 0 0 12px; color: var(--blue); font: 600 31px/1 var(--serif); }
.detail-copy p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }
.text-link { display: inline-block; margin-top: 18px; color: var(--blue); font-size: 10px; font-weight: 700; letter-spacing: .04em; text-decoration: none; text-transform: uppercase; }
.event-detail img { width: 100%; height: 100%; object-fit: cover; }

.feature-row { display: grid; grid-template-columns: repeat(3,1fr); margin: -22px clamp(24px,4vw,58px) 0; position: relative; z-index: 3; border: 1px solid var(--line); border-radius: 8px; background: rgba(255,255,255,.96); box-shadow: 0 14px 34px rgba(32,28,24,.07); overflow: hidden; }
.feature-row article { min-height: 205px; padding: 32px; text-align: center; border-left: 1px solid var(--line); transition: background .4s ease, transform .45s cubic-bezier(.22,1,.36,1); }
.feature-row article:hover { background: #fffaf7; transform: translateY(-5px); }
.feature-row article:first-child { border-left: 0; }
.feature-icon { width: 54px; height: 54px; display: inline-grid; place-items: center; color: var(--blue); }
.feature-icon svg { width: 48px; height: 48px; fill: none; stroke: currentColor; stroke-width: 1.4; transition: transform .5s cubic-bezier(.22,1,.36,1); }
.feature-row article:hover .feature-icon svg, .feature-row article:hover .number-icon { transform: rotate(-4deg) scale(1.08); }
.feature-row h2 { margin: 12px 0 8px; color: var(--blue); font: 700 19px/1 var(--serif); text-transform: uppercase; }
.feature-row p { max-width: 290px; margin: auto; color: var(--muted); font: 500 14px/1.45 var(--serif); }
.number-icon { width: 54px; height: 54px; display: inline-grid; place-items: center; border: 1px solid var(--blue); border-radius: 50%; color: var(--blue); font: 700 18px/1 var(--serif); transition: transform .5s cubic-bezier(.22,1,.36,1), color .4s ease, background .4s ease; }
.feature-row article:hover .number-icon { color: white; background: var(--blue); }
.form-section { display: grid; grid-template-columns: .75fr 1.25fr; gap: 45px; margin: 28px clamp(24px,4vw,58px) 55px; padding: 30px; border: 1px solid #e5d7d2; border-radius: 6px; background: linear-gradient(100deg, #fffaf7, #f7e9e5); }
.form-section > div > p { color: var(--muted); font-size: 12px; line-height: 1.5; }
.inline-form { align-self: center; display: grid; grid-template-columns: repeat(4,minmax(0,1fr)) auto; gap: 10px; }
.inline-form label, .contact-form label { display: grid; gap: 5px; }
.inline-form label > span, .contact-form label > span { color: var(--muted); font-size: 9px; text-transform: uppercase; }
.inline-form input, .contact-form input, .contact-form textarea { width: 100%; min-height: 42px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 3px; color: var(--ink); background: white; outline: none; }
.inline-form input:focus, .contact-form input:focus, .contact-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(13,63,143,.08); }
.inline-form .wide { grid-column: span 3; }
.inline-form .checkbox { display: flex; align-items: center; flex-direction: row; padding-top: 18px; }
.checkbox input { width: 16px; min-height: 16px; }
.bot-field { display: none !important; }
.form-status { grid-column: 1/-1; min-height: 18px; margin: 2px 0 0; color: var(--blue); font-size: 11px; }

.news-layout { padding: 52px clamp(28px,4.5vw,68px) 64px; }
.news-heading { margin-bottom: 34px; }
.news-heading h1, .news-heading h2, .contact-layout h1 { font-size: clamp(58px,5vw,82px); }
.lead-story { display: grid; grid-template-columns: 1fr .75fr; border: 1px solid var(--line); background: white; }
.lead-story { overflow: hidden; transition: box-shadow .45s ease, transform .45s cubic-bezier(.22,1,.36,1); }
.lead-story:hover { transform: translateY(-5px); box-shadow: 0 20px 45px rgba(25,28,32,.1); }
.lead-story img { width: 100%; height: 330px; object-fit: cover; transition: transform 1s cubic-bezier(.22,1,.36,1); }
.lead-story:hover img { transform: scale(1.045); }
.lead-story > div { align-self: center; padding: 40px; }
.lead-story span, .news-grid span { color: var(--blue); font-size: 9px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.lead-story h2 { margin: 12px 0; color: var(--blue); font: 600 38px/.98 var(--serif); }
.lead-story p { color: var(--muted); line-height: 1.55; }
.news-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 18px; }
.news-grid article { display: grid; grid-template-columns: 145px 1fr; grid-template-rows: auto auto 1fr; gap: 5px 18px; min-height: 160px; padding: 14px; border: 1px solid var(--line); transition: transform .45s cubic-bezier(.22,1,.36,1), box-shadow .45s ease; }
.news-grid article:hover { transform: translateY(-5px); box-shadow: 0 15px 34px rgba(25,28,32,.08); }
.news-grid img { grid-row: 1/4; width: 145px; height: 130px; object-fit: cover; transition: transform .7s cubic-bezier(.22,1,.36,1); }
.news-grid article:hover img { transform: scale(1.035); }
.news-grid h2, .news-grid h3 { margin: 0; font: 600 21px/1 var(--serif); }
.news-grid a { align-self: end; color: var(--blue); font-size: 9px; font-weight: 700; text-decoration: none; text-transform: uppercase; }
.article-preview { display: grid; grid-template-columns: 360px 1fr; gap: 38px; margin-top: 34px; padding-top: 34px; border-top: 1px solid var(--line); }
.article-preview img { width: 360px; height: 210px; object-fit: cover; }
.article-preview h2 { max-width: 700px; margin: 8px 0 12px; color: var(--blue); font: 600 36px/1 var(--serif); }
.article-preview p { max-width: 650px; color: var(--muted); line-height: 1.6; }

.contact-layout { padding: 56px clamp(28px,4.5vw,68px) 50px; }
.contact-layout header > p:last-child { color: var(--muted); }
.contact-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin: 34px 0; }
.contact-cards > a { display: flex; align-items: center; gap: 22px; min-height: 120px; padding: 24px; border: 1px solid var(--line); color: var(--ink); text-decoration: none; transition: transform .45s cubic-bezier(.22,1,.36,1), box-shadow .45s ease, border-color .45s ease; }
.contact-cards > a:hover { transform: translateY(-6px); border-color: rgba(13,63,143,.22); box-shadow: 0 16px 34px rgba(25,28,32,.08); }
.contact-cards svg { width: 42px; height: 42px; flex: 0 0 auto; fill: none; stroke: var(--blue); stroke-width: 1.5; }
.contact-cards span { display: grid; gap: 5px; font-size: 13px; }
.contact-cards strong { color: var(--blue); font-size: 10px; letter-spacing: .06em; text-transform: uppercase; }
.contact-cards small { color: var(--muted); }
.contact-main { display: grid; grid-template-columns: .7fr 1.15fr 1.15fr; gap: 22px; align-items: stretch; }
.hours, .contact-form, .map-card { min-height: 390px; border: 1px solid var(--line); border-radius: 10px; }
.hours { padding: 28px; background: linear-gradient(145deg,#fffdf9,#f7f1ea); }
.hours dl { margin: 22px 0 0; }
.hours dl div { display: flex; justify-content: space-between; gap: 20px; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 12px; }
.hours dd { margin: 0; color: var(--muted); }
.contact-form { display: block; padding: 28px; background: #fff; box-shadow: 0 18px 48px rgba(25,28,32,.07); }
.contact-form-head { margin-bottom: 22px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.contact-form-head .kicker { margin-bottom: 7px; }
.contact-form-head h2 { margin: 0; color: var(--blue-dark); font: 600 34px/1 var(--serif); }
.contact-form-head p { margin: 10px 0 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.contact-form textarea { resize: vertical; }
.contact-form .button { justify-self: stretch; }
.map-card { position: relative; overflow: hidden; min-width: 0; padding: 0; background: #e9e5df; box-shadow: 0 18px 48px rgba(25,28,32,.07); }
.map-card iframe { width: 100%; height: 100%; min-height: 390px; display: block; border: 0; filter: saturate(.82) contrast(.96); }
.map-open { position: absolute; z-index: 2; left: 18px; right: 18px; bottom: 18px; min-height: 46px; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 0 17px; border: 1px solid rgba(255,255,255,.4); border-radius: 4px; color: #fff !important; background: rgba(8,43,103,.92); box-shadow: 0 12px 30px rgba(8,43,103,.24); backdrop-filter: blur(8px); font-size: 10px; font-weight: 700; letter-spacing: .07em; text-decoration: none; text-transform: uppercase; transition: transform .3s ease, background .3s ease; }
.map-open:hover { color: #fff; background: rgba(5,31,76,.98); transform: translateY(-2px); }
.map-open span { font-size: 18px; font-weight: 400; }

.site-footer { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 24px 34px; color: var(--muted); background: #f7f1ee; border-top: 1px solid var(--line); font-size: 11px; }
.site-footer p { margin: 0; }
.site-footer div { display: flex; gap: 24px; }
.site-footer a { color: var(--blue); text-decoration: none; }

/* Motion system: enabled only after JavaScript is ready. */
.motion-ready [data-reveal] { opacity: 0; transition-property: opacity, transform, clip-path; transition-duration: .8s; transition-delay: var(--reveal-delay,0ms); transition-timing-function: cubic-bezier(.22,1,.36,1); will-change: opacity, transform, clip-path; }
.motion-ready [data-reveal="up"] { transform: translate3d(0,28px,0); }
.motion-ready [data-reveal="card"] { transform: translate3d(0,34px,0) scale(.985); }
.motion-ready [data-reveal="wipe"] { clip-path: inset(0 0 0 16%); transform: translate3d(18px,0,0); }
.motion-ready [data-reveal].is-revealed { opacity: 1; clip-path: inset(0 0 0 0); transform: translate3d(0,0,0) scale(1); }
.motion-ready .site-header { animation: header-arrive .8s cubic-bezier(.22,1,.36,1) both; }
@keyframes header-arrive { from { opacity: 0; transform: translateY(-22px); } }

@media (max-width: 1120px) {
  .site-header { grid-template-columns: 160px 1fr auto; gap: 12px; padding-inline: 18px; }
  .main-nav { gap: 14px; }
  .main-nav a { font-size: 10px; }
  .hero { grid-template-columns: 50% 50%; }
  .inline-form { grid-template-columns: repeat(2,1fr); }
  .inline-form .button { align-self: end; }
  .news-grid article { grid-template-columns: 110px 1fr; }
  .news-grid img { width: 110px; }
}

@media (max-width: 840px) {
  .site-frame { width: 100%; min-height: 100vh; margin: 0; border: 0; border-radius: 0; }
  .site-header { min-height: 68px; grid-template-columns: auto 1fr auto; }
  .menu-toggle { width: 38px; height: 38px; display: grid; place-content: center; gap: 6px; padding: 0; border: 0; color: white; background: transparent; }
  .menu-toggle span { display: block; width: 22px; height: 1px; background: currentColor; }
  .brand { justify-self: center; width: 130px; height: 56px; }
  .brand img { width: 115px; height: 56px; }
  .main-nav { position: absolute; left: 0; right: 0; top: 100%; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 10px 20px 18px; background: #d5aa9f; box-shadow: var(--shadow); }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 12px 0; font-size: 12px; border-bottom: 1px solid rgba(255,255,255,.22); }
  .main-nav a::after { display: none; }
  .header-tools .search-toggle, .header-tools > a:first-of-type { display: none; }
  .hero { min-height: 0; grid-template-columns: 1fr; }
  .hero-copy { padding: 48px 28px; }
  .hero h1 { font-size: clamp(52px,15vw,74px); }
  .hero-media { min-height: 360px; }
  .hero-media img { height: calc(100% + 28px); margin-top: -14px; }
  .feature-row { grid-template-columns: 1fr; margin-top: 20px; }
  .feature-row article { min-height: 0; border-left: 0; border-top: 1px solid var(--line); }
  .feature-row article:first-child { border-top: 0; }
  .form-section { grid-template-columns: 1fr; }
  .event-grid { grid-template-columns: 1fr; }
  .event-detail { grid-template-columns: 92px 1fr; }
  .event-detail img { grid-column: 1/-1; height: 220px; }
  .lead-story { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .article-preview { grid-template-columns: 1fr; }
  .article-preview img { width: 100%; }
  .contact-cards, .contact-main { grid-template-columns: 1fr; }
  .hours, .contact-form, .map-card { min-height: 300px; }
}

@media (max-width: 560px) {
  .header-tools { gap: 0; }
  .content-block, .news-layout, .contact-layout { padding-inline: 18px; }
  .section-bar { align-items: stretch; flex-direction: column; }
  .view-switch { align-self: flex-start; }
  .event-card { grid-template-columns: 76px 1fr; }
  .event-card > div { padding: 20px 16px; }
  .event-detail { grid-template-columns: 1fr; }
  .detail-date { min-height: 120px; }
  .form-section { margin-inline: 16px; padding: 22px 18px; }
  .inline-form { grid-template-columns: 1fr; }
  .inline-form .wide { grid-column: auto; }
  .news-heading h1, .contact-layout h1 { font-size: 48px; }
  .lead-story > div { padding: 26px 20px; }
  .news-grid article { grid-template-columns: 96px 1fr; }
  .news-grid img { width: 96px; }
  .article-preview img { height: 200px; }
  .contact-cards > a { padding: 20px; }
  .site-footer { align-items: flex-start; flex-direction: column; }
}

.smartwines-age-notice {
  display: grid;
  gap: 3px;
  margin: 18px 0;
  padding: 14px 16px;
  border: 1px solid rgba(9,46,106,.18);
  border-radius: 8px;
  background: #f7f3ed;
  color: #17345d;
  font-size: 14px;
  line-height: 1.45;
}

.smartwines-age-confirmation {
  padding: 14px 0 6px;
  font-weight: 600;
}

.smartwines-manage-consent {
  appearance: none;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-decoration: underline;
  cursor: pointer;
}

.smartwines-cookie-banner {
  position: fixed;
  z-index: 999999;
  right: 22px;
  bottom: 22px;
  width: min(620px, calc(100vw - 44px));
  padding: 22px;
  border: 1px solid rgba(9,46,106,.18);
  border-radius: 12px;
  color: #1f2937;
  background: #fff;
  box-shadow: 0 24px 70px rgba(8,43,103,.22);
  font-family: var(--sans);
}
.smartwines-cookie-banner[hidden], .smartwines-cookie-preferences[hidden], .smartwines-cookie-actions [hidden] { display: none !important; }
.smartwines-cookie-copy { display: grid; gap: 7px; }
.smartwines-cookie-copy > strong { color: var(--blue-dark); font: 700 23px/1.05 var(--serif); }
.smartwines-cookie-copy p { margin: 0; font-size: 13px; line-height: 1.55; }
.smartwines-cookie-copy a { width: max-content; color: var(--blue); font-size: 12px; }
.smartwines-cookie-preferences { display: grid; gap: 10px; margin-top: 17px; padding-top: 15px; border-top: 1px solid var(--line); }
.smartwines-cookie-preferences label { display: grid; grid-template-columns: 20px 1fr; gap: 9px; align-items: start; font-size: 12px; line-height: 1.45; cursor: pointer; }
.smartwines-cookie-preferences input { margin-top: 2px; accent-color: var(--blue); }
.smartwines-cookie-preferences span { display: grid; gap: 2px; }
.smartwines-cookie-actions { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 9px; margin-top: 18px; }
.smartwines-cookie-actions .button { min-height: 42px; padding: 8px 10px; border: 1px solid var(--blue); border-radius: 4px; color: var(--blue); background: #fff; font-size: 10px; font-weight: 700; line-height: 1.2; letter-spacing: .045em; text-transform: uppercase; cursor: pointer; }
.smartwines-cookie-actions .button:hover, .smartwines-cookie-actions .button:focus-visible { color: #fff; background: var(--blue); }

@media (max-width: 560px) {
  .smartwines-cookie-banner { right: 10px; bottom: 10px; width: calc(100vw - 20px); padding: 18px; }
  .smartwines-cookie-actions { grid-template-columns: 1fr; }
}

.smartwines-age-mark {
  letter-spacing: .04em;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .hero-media img { transform: none !important; }
}

/* WordPress and WooCommerce integration. */
.admin-bar .site-header { top: 32px; }
.smartwines-content { min-height: 60vh; }
.smartwines-content h1,
.smartwines-content .entry-title { color: var(--blue); font: 600 clamp(46px,5vw,74px)/.9 var(--serif); text-transform: uppercase; }
.smartwines-content p { line-height: 1.7; }

.product-section { padding: 54px clamp(26px,4vw,60px) 64px; background: #fff; }
.product-showcase { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 18px; }
.product-card { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: 6px; background: var(--paper); transition: transform .45s cubic-bezier(.22,1,.36,1), box-shadow .45s ease; }
.product-card:hover { transform: translateY(-7px); box-shadow: 0 18px 38px rgba(20,31,49,.11); }
.product-card > a { color: inherit; text-decoration: none; }
.product-card-media { aspect-ratio: 4/5; display: grid; place-items: center; overflow: hidden; padding: 20px; background: linear-gradient(145deg,#faf7f2,#f1ebe4); }
.product-card-media img { width: 100%; height: 100%; object-fit: contain; transition: transform .7s cubic-bezier(.22,1,.36,1); }
.product-card:hover .product-card-media img { transform: scale(1.045); }
.product-card-copy { min-height: 148px; padding: 20px; }
.product-card-copy .kicker { margin-bottom: 7px; }
.product-card h3 { margin: 0 0 12px; color: var(--blue-dark); font: 600 23px/1.02 var(--serif); }
.product-card .price { color: var(--ink); font-weight: 700; }
.product-card .button { width: calc(100% - 40px); margin: 0 20px 20px; }

.service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; padding: 44px clamp(26px,4vw,60px) 64px; }
.service-card { min-height: 310px; display: flex; flex-direction: column; justify-content: end; overflow: hidden; position: relative; padding: 32px; color: white; border-radius: 7px; background: #162033; text-decoration: none; }
.service-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .6; transition: transform .9s cubic-bezier(.22,1,.36,1), opacity .5s ease; }
.service-card::after { content: ''; position: absolute; inset: 20% 0 0; background: linear-gradient(transparent,rgba(7,20,46,.9)); }
.service-card > *:not(img) { position: relative; z-index: 2; }
.service-card:hover img { transform: scale(1.055); opacity: .72; }
.service-card .kicker { color: rgba(255,255,255,.86); }
.service-card h2 { margin: 4px 0 8px; color: #fff; font: 600 34px/1 var(--serif); }
.service-card p { margin: 0; font-size: 13px; line-height: 1.55; }

.club-choice { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; padding: 34px clamp(24px,4vw,58px) 58px; }
.club-card { min-height: 380px; padding: 40px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.club-card.is-vip { color: white; background: linear-gradient(145deg,#0b2e6e,#071c43); border-color: transparent; }
.club-card.is-vip .kicker, .club-card.is-vip h2 { color: white; }
.club-card h2 { margin: 0 0 12px; color: var(--blue); font: 600 42px/1 var(--serif); text-transform: uppercase; }
.club-card ul { display: grid; gap: 12px; margin: 24px 0 30px; padding-left: 20px; line-height: 1.5; }
.club-faq { max-width: 980px; margin: 0 auto; }
.club-faq details { border-top: 1px solid var(--line); padding: 18px 0; }
.club-faq details:last-child { border-bottom: 1px solid var(--line); }
.club-faq summary { color: var(--blue-dark); font: 600 24px/1.15 var(--serif); cursor: pointer; }
.club-faq details p { color: var(--muted); line-height: 1.6; }

/* Premium Smart Wines Club / VIP presentation. */
.vip-page { background: #fffdf9; }
.vip-premium-hero { position: relative; min-height: 650px; display: grid; grid-template-columns: minmax(0,1.02fr) minmax(500px,.98fr); overflow: hidden; isolation: isolate; border-bottom: 1px solid rgba(9,43,96,.12); }
.vip-hero-backdrop { position: absolute; inset: 0; z-index: -3; width: 100%; height: 100%; object-fit: cover; object-position: center 58%; filter: saturate(.76) contrast(.92); transform: scale(1.015); }
.vip-hero-shade { position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg, rgba(255,253,249,.99) 0%, rgba(255,253,249,.96) 35%, rgba(255,253,249,.62) 58%, rgba(255,253,249,.15) 100%), linear-gradient(0deg, rgba(8,34,79,.14), transparent 34%); }
.vip-hero-copy { align-self: center; z-index: 3; max-width: 760px; padding: 88px 34px 110px clamp(42px,6vw,104px); }
.vip-hero-copy .eyebrow { display: flex; align-items: center; gap: 13px; margin-bottom: 20px; color: #80633c; letter-spacing: .17em; }
.vip-hero-copy .eyebrow::before { content: ""; width: 44px; height: 1px; background: #b89b6b; }
.vip-hero-copy h1 { margin: 0; color: #092e6a; font: 600 clamp(66px,6.8vw,108px)/.76 var(--serif); letter-spacing: -.025em; text-transform: uppercase; text-wrap: balance; }
.vip-hero-copy h1 span { color: #173f78; font-size: .72em; letter-spacing: .015em; }
.vip-hero-lead { max-width: 610px; margin: 34px 0 32px; color: #344154; font: 500 18px/1.65 var(--serif); }
.vip-hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; }
.vip-text-button { position: relative; padding: 12px 0; color: #0b3e84; font-size: 11px; font-weight: 700; letter-spacing: .07em; text-decoration: none; text-transform: uppercase; }
.vip-text-button::after { content: ""; position: absolute; left: 0; right: 22px; bottom: 7px; height: 1px; background: currentColor; transform: scaleX(.45); transform-origin: left; transition: transform .35s ease; }
.vip-text-button:hover::after { transform: scaleX(1); }
.vip-text-button span { margin-left: 7px; }
.vip-bottle-stage { position: relative; z-index: 2; min-width: 0; height: 100%; align-self: stretch; }
.vip-bottle-stage::after { content: ""; position: absolute; left: 8%; right: 4%; bottom: 4.5%; height: 9%; border-radius: 50%; background: rgba(6,29,63,.22); filter: blur(24px); transform: perspective(280px) rotateX(66deg); }
.vip-bottle { position: absolute; z-index: 2; bottom: 5.5%; height: min(78%,560px); width: auto; object-fit: contain; filter: drop-shadow(0 28px 27px rgba(7,24,48,.25)); transform-origin: center bottom; }
.vip-bottle-left { left: 1%; z-index: 1; height: min(72%,510px); transform: translateX(8%) rotate(-3deg); animation: vip-bottle-breathe 6.2s ease-in-out infinite; }
.vip-bottle-center { left: 34%; z-index: 3; height: min(84%,610px); transform: translateX(-8%); animation: vip-bottle-breathe-center 7s ease-in-out .5s infinite; }
.vip-bottle-right { right: 3%; z-index: 2; height: min(70%,500px); transform: translateX(-4%) rotate(3deg); animation: vip-bottle-breathe-right 6.6s ease-in-out 1s infinite; }
.vip-orbit { position: absolute; z-index: 0; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; box-shadow: inset 0 0 0 1px rgba(142,107,62,.09); }
.vip-orbit-one { width: 430px; height: 430px; left: 12%; top: 15%; }
.vip-orbit-two { width: 310px; height: 310px; right: 2%; top: 24%; }
.vip-selection-seal { position: absolute; right: clamp(18px,4vw,62px); top: 72px; z-index: 5; width: 108px; height: 108px; display: grid; place-content: center; text-align: center; border: 1px solid rgba(10,48,107,.36); border-radius: 50%; color: #092e6a; background: rgba(255,253,249,.68); backdrop-filter: blur(9px); transform: rotate(7deg); }
.vip-selection-seal::before { content: ""; position: absolute; inset: 7px; border: 1px solid rgba(10,48,107,.18); border-radius: inherit; }
.vip-selection-seal span { font-size: 9px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.vip-selection-seal strong { display: block; margin-top: 3px; font: 600 18px/1 var(--serif); }
.vip-scroll-cue { position: absolute; left: clamp(42px,6vw,104px); bottom: 30px; z-index: 5; display: flex; align-items: center; gap: 12px; color: #173f78; font-size: 9px; font-weight: 700; letter-spacing: .13em; text-decoration: none; text-transform: uppercase; }
.vip-scroll-cue i { position: relative; width: 44px; height: 1px; overflow: hidden; background: rgba(23,63,120,.24); }
.vip-scroll-cue i::after { content: ""; position: absolute; inset: 0; background: #173f78; animation: vip-line 2.2s ease-in-out infinite; }
@keyframes vip-bottle-breathe { 0%,100% { transform: translateX(8%) translateY(0) rotate(-3deg); } 50% { transform: translateX(8%) translateY(-8px) rotate(-2.5deg); } }
@keyframes vip-bottle-breathe-center { 0%,100% { transform: translateX(-8%) translateY(0); } 50% { transform: translateX(-8%) translateY(-11px); } }
@keyframes vip-bottle-breathe-right { 0%,100% { transform: translateX(-4%) translateY(0) rotate(3deg); } 50% { transform: translateX(-4%) translateY(-7px) rotate(2.5deg); } }
@keyframes vip-line { 0% { transform: translateX(-100%); } 55%,100% { transform: translateX(100%); } }

.vip-principles { position: relative; z-index: 5; display: grid; grid-template-columns: repeat(3,1fr); margin: -18px clamp(24px,4vw,58px) 0; border: 1px solid rgba(9,46,106,.13); border-radius: 8px; background: rgba(255,253,249,.96); box-shadow: 0 20px 55px rgba(28,29,31,.09); backdrop-filter: blur(12px); }
.vip-principles article { min-height: 185px; display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: start; padding: 38px 34px; border-left: 1px solid rgba(9,46,106,.11); transition: background .4s ease, transform .45s cubic-bezier(.22,1,.36,1); }
.vip-principles article:first-child { border-left: 0; }
.vip-principles article:hover { z-index: 2; background: #fff; transform: translateY(-7px); }
.vip-principle-number { display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid #baa174; border-radius: 50%; color: #8c6d3f; font: 600 13px/1 var(--serif); }
.vip-principles h2 { margin: 3px 0 9px; color: #0a326f; font: 600 23px/1 var(--serif); }
.vip-principles p { margin: 0; color: #6b7280; font-size: 12px; line-height: 1.65; }

.membership-section { padding: 100px clamp(28px,5vw,78px) 92px; background: linear-gradient(180deg,#fffdf9,#f8f3ec); }
.membership-heading { display: grid; grid-template-columns: minmax(0,1.3fr) minmax(280px,.7fr); gap: 60px; align-items: end; max-width: 1240px; margin: 0 auto 42px; }
.membership-heading h2 { max-width: 760px; margin: 0; color: #092e6a; font: 600 clamp(44px,4.5vw,66px)/.92 var(--serif); letter-spacing: -.025em; }
.membership-heading > p { max-width: 410px; margin: 0; padding-bottom: 6px; color: #677083; font-size: 14px; line-height: 1.7; }
.membership-grid { max-width: 1240px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 0 auto; }
.membership-card { position: relative; min-height: 540px; display: flex; flex-direction: column; overflow: hidden; padding: clamp(34px,4vw,58px); border: 1px solid rgba(9,46,106,.15); border-radius: 10px; box-shadow: 0 18px 50px rgba(31,30,28,.07); }
.membership-card::before { content: ""; position: absolute; width: 340px; height: 340px; right: -180px; top: -190px; border: 1px solid currentColor; border-radius: 50%; opacity: .11; }
.membership-card-club { color: #263248; background: rgba(255,255,255,.92); }
.membership-card-vip-gate { isolation: isolate; align-items: stretch; justify-content: stretch; padding: 18px; color: #e5c786; text-decoration: none; background: #15191e; border-color: rgba(180,145,82,.5); box-shadow: 0 24px 62px rgba(11,14,18,.24); cursor: pointer; }
.motion-ready .membership-card-vip-gate[data-reveal] { opacity: 1; transform: none; }
.membership-card-vip-gate::before { z-index: 3; width: auto; height: auto; inset: 30px; border: 1px solid rgba(226,198,139,.22); border-radius: 2px; opacity: 1; pointer-events: none; transition: inset .7s cubic-bezier(.22,1,.36,1), border-color .5s ease; }
.membership-card-vip-gate::after { content: ""; position: absolute; z-index: 4; top: 18px; bottom: 18px; left: -42%; width: 34%; background: linear-gradient(105deg,transparent,rgba(255,237,198,.13),transparent); filter: blur(4px); transform: skewX(-12deg); transition: left 1.05s cubic-bezier(.22,1,.36,1); pointer-events: none; }
.membership-card-vip-gate:hover { color: #f1dba9; text-decoration: none; }
.membership-card-vip-gate:hover::before { inset: 25px; border-color: rgba(235,207,150,.48); }
.membership-card-vip-gate:hover::after { left: 112%; }
.membership-card-vip-gate:focus-visible { outline: 3px solid #b68a4b; outline-offset: 5px; }
.vip-gate-scene { position: relative; z-index: 2; min-height: 504px; overflow: hidden; border: 1px solid rgba(197,160,94,.76); border-radius: 4px; background: #0a0e13; box-shadow: 0 26px 54px rgba(0,0,0,.38), inset 0 0 0 1px rgba(255,245,219,.07); }
.vip-gate-still-life { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; object-position: 52% center; filter: saturate(.85) contrast(1.07) brightness(.82); transform: scale(1.018); transition: transform 1.25s cubic-bezier(.22,1,.36,1), filter .8s ease; }
.vip-gate-vignette { position: absolute; z-index: 1; inset: 0; background: linear-gradient(90deg,rgba(4,8,13,.78) 0%,rgba(4,8,13,.22) 44%,rgba(4,8,13,.06) 68%,rgba(4,8,13,.26) 100%), linear-gradient(180deg,rgba(4,8,13,.16),transparent 52%,rgba(4,8,13,.54)); }
.vip-gate-frame { position: absolute; z-index: 2; inset: 18px; border-top: 1px solid rgba(226,195,133,.38); border-bottom: 1px solid rgba(226,195,133,.38); pointer-events: none; }
.vip-gate-frame::before, .vip-gate-frame::after { content: ""; position: absolute; top: -1px; width: 34px; height: 34px; border-top: 1px solid #d8b979; }
.vip-gate-frame::before { left: 0; border-left: 1px solid #d8b979; }
.vip-gate-frame::after { right: 0; border-right: 1px solid #d8b979; }
.vip-gate-monogram { position: absolute; z-index: 5; top: 15%; left: 10%; color: #f0d7a0; font: 500 clamp(44px,5vw,66px)/.9 var(--serif); letter-spacing: .16em; text-indent: .16em; text-shadow: 0 8px 24px rgba(0,0,0,.5); transition: color .5s ease, letter-spacing .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1); }
.vip-gate-monogram::after { content: ""; display: block; width: 62px; height: 1px; margin: 18px 0 0 2px; background: linear-gradient(90deg,#e0bd73,transparent); }
.vip-gate-arrow { position: absolute; z-index: 5; left: 10%; bottom: 11%; width: 54px; height: 54px; border: 1px solid rgba(229,198,136,.82); border-radius: 2px; background: rgba(7,12,18,.42); backdrop-filter: blur(5px); transition: background .45s ease, transform .55s cubic-bezier(.22,1,.36,1), border-color .45s ease; }
.vip-gate-arrow::before { content: ""; position: absolute; top: 50%; left: 16px; width: 18px; height: 1px; background: #efd7a3; transform: translateY(-50%); }
.vip-gate-arrow::after { content: ""; position: absolute; top: 50%; right: 15px; width: 8px; height: 8px; border-top: 1px solid #efd7a3; border-right: 1px solid #efd7a3; transform: translateY(-50%) rotate(45deg); }
.membership-card-vip-gate:hover .vip-gate-still-life { filter: saturate(.92) contrast(1.08) brightness(.88); transform: scale(1.065); }
.membership-card-vip-gate:hover .vip-gate-monogram { color: #ffe8b7; letter-spacing: .2em; transform: translateX(4px); }
.membership-card-vip-gate:hover .vip-gate-arrow { border-color: #f0d59c; background: rgba(31,25,18,.64); transform: translateX(7px); }
.membership-label { position: relative; z-index: 2; display: inline-flex; align-items: center; gap: 8px; align-self: flex-start; padding: 8px 11px; border: 1px solid rgba(9,46,106,.16); border-radius: 999px; color: #80633c; font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.membership-label i { width: 7px; height: 7px; border-radius: 50%; background: #d9b66f; box-shadow: 0 0 0 4px rgba(217,182,111,.12); }
.membership-card-title { position: relative; z-index: 2; display: flex; align-items: center; gap: 22px; margin: 44px 0 24px; }
.membership-card-title > span { width: 64px; height: 64px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid #b89b6b; border-radius: 50%; color: #886b41; font: 600 18px/1 var(--serif); }
.membership-card h3 { margin: 0; color: #092e6a; font: 600 clamp(36px,3.2vw,50px)/.9 var(--serif); }
.membership-card > p { position: relative; z-index: 2; max-width: 500px; margin: 0 0 26px; font: 500 17px/1.6 var(--serif); }
.membership-card ul { position: relative; z-index: 2; display: grid; gap: 14px; margin: 6px 0 36px; padding: 0; list-style: none; }
.membership-card li { display: flex; align-items: center; gap: 12px; color: #4f5b6c; font-size: 13px; }
.membership-card li::before { content: ""; width: 22px; height: 1px; flex: 0 0 auto; background: #b89b6b; }
.membership-card .button { position: relative; z-index: 3; align-self: flex-start; margin-top: auto; }

.vip-story-panel { max-width: 1240px; min-height: 460px; display: grid; grid-template-columns: 1.05fr .95fr; margin: 0 auto 100px; overflow: hidden; border-radius: 10px; background: #f4eee6; box-shadow: 0 22px 60px rgba(27,27,27,.09); }
.vip-story-photo { min-height: 460px; overflow: hidden; }
.vip-story-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 22% center; transition: transform 1.4s cubic-bezier(.22,1,.36,1); }
.vip-story-panel:hover .vip-story-photo img { transform: scale(1.035); }
.vip-story-copy { align-self: center; padding: clamp(42px,5vw,76px); }
.vip-story-copy h2 { max-width: 500px; margin: 0 0 24px; color: #092e6a; font: 600 clamp(40px,4vw,58px)/.92 var(--serif); letter-spacing: -.02em; }
.vip-story-copy > p { max-width: 500px; margin: 0; color: #606a79; font-size: 14px; line-height: 1.75; }
.vip-signature { display: block; margin-top: 30px; color: #876b43; font: 600 18px/1 var(--serif); }

.club-faq-premium { max-width: 1080px; padding-bottom: 90px; }
.club-faq-premium .section-bar { align-items: end; }
.club-faq-premium .section-bar h2 { font-size: clamp(40px,4vw,56px); }
.club-faq-premium .section-bar > p { margin: 0 0 5px; color: #747b88; font-size: 12px; }
.club-faq-premium .section-bar a { color: #0d3f8f; font-weight: 700; }
.club-faq-premium details { padding: 0; }
.club-faq-premium summary { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 24px 4px; list-style: none; }
.club-faq-premium summary::-webkit-details-marker { display: none; }
.club-faq-premium summary span { position: relative; width: 28px; height: 28px; flex: 0 0 auto; border: 1px solid rgba(9,46,106,.24); border-radius: 50%; }
.club-faq-premium summary span::before,
.club-faq-premium summary span::after { content: ""; position: absolute; left: 50%; top: 50%; width: 10px; height: 1px; background: #0b397e; transform: translate(-50%,-50%); transition: transform .3s ease; }
.club-faq-premium summary span::after { transform: translate(-50%,-50%) rotate(90deg); }
.club-faq-premium details[open] summary span::after { transform: translate(-50%,-50%) rotate(0deg); }
.club-faq-premium details p { max-width: 760px; margin: -7px 0 24px; padding: 0 52px 0 4px; }

@media (prefers-reduced-motion: reduce) {
  .vip-bottle, .vip-scroll-cue i::after { animation: none !important; }
}
.editor-form-slot:empty::before { content: 'Formulář bude napojen na stávající kontaktní systém po naklonování webu.'; display: block; color: var(--muted); font-size: 13px; line-height: 1.6; }
.editor-form-slot .wpcf7-form { display: grid; gap: 12px; }
.editor-form-slot .wpcf7-form p { margin: 0; }
.editor-form-slot .wpcf7-form label { display: grid; gap: 6px; color: var(--muted); font-size: 11px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; }
.editor-form-slot .wpcf7-form-control-wrap { display: block; }
.editor-form-slot input:not([type="submit"]):not([type="hidden"]):not([type="checkbox"]),
.editor-form-slot textarea { width: 100%; min-height: 44px; padding: 11px 12px; border: 1px solid var(--line); border-radius: 3px; color: var(--ink); background: #fff; outline: none; }
.editor-form-slot textarea { min-height: 118px; resize: vertical; }
.editor-form-slot input:focus,
.editor-form-slot textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(13,63,143,.08); }
.editor-form-slot .wpcf7-submit { width: 100%; min-height: 44px; padding: 0 18px; border: 0; border-radius: 3px; color: #fff; background: var(--blue); font-weight: 700; cursor: pointer; }
.editor-form-slot .wpcf7-submit:hover { background: var(--blue-dark); }
.editor-form-slot .wpcf7-spinner { display: none; }
.editor-form-slot .wpcf7-response-output { margin: 4px 0 0 !important; padding: 10px 12px !important; border: 1px solid var(--line) !important; font-size: 12px; }

/* Human visitors never interact with the anti-spam trap. Keeping it outside
   the viewport (instead of type=hidden) lets simple form-filling bots expose
   themselves without changing the visible or screen-reader experience. */
.smartwines-antispam-field,
.editor-form-slot .smartwines-antispam-field { position: absolute !important; left: -10000px !important; top: auto !important; width: 1px !important; height: 1px !important; overflow: hidden !important; opacity: 0 !important; pointer-events: none !important; }
.editor-form-slot input[type="hidden"],
.editor-form-slot .smartwines-antispam-field input { display: none !important; width: 1px !important; min-height: 0 !important; padding: 0 !important; border: 0 !important; }
.contact-form .hidden-fields-container,
.editor-form-slot .hidden-fields-container { display: none !important; width: 0 !important; height: 0 !important; min-height: 0 !important; margin: 0 !important; padding: 0 !important; border: 0 !important; }

/* Primary blue actions always retain accessible white text, even after a link
   has been visited or when the parent WooCommerce styles load later. */
.site-frame a.button,
.site-frame a.button:visited,
.site-frame button.button,
.site-frame input.button,
.site-frame .product-card .button,
.site-frame .woocommerce a.button,
.site-frame .woocommerce button.button,
.site-frame .woocommerce input.button { color: #fff !important; }
.event-data-note { margin: 24px 0 0; color: var(--muted); font-size: 11px; }

.woocommerce .site-main,
.woocommerce-page .site-main,
.woocommerce .content-area,
.woocommerce-page .content-area { width: 100%; max-width: none; }
.woocommerce .products { padding: 30px clamp(20px,4vw,60px); }
body.single-product .single-product-page { padding: 44px 0 64px; }
.single-product .single-product-page .summary .product_title { color: var(--blue); font: 600 clamp(38px,4vw,64px)/.95 var(--serif); }
.single-product .single-product-page .summary p.price,
.single-product .single-product-page .summary span.price { color: var(--blue); }
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button { color: #fff; background: var(--blue); border-radius: 3px; }
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover { color: #fff; background: var(--blue-dark); }

/* WooCommerce archive and product detail. */
.woocommerce-products-header { padding: 58px clamp(22px,4vw,60px) 22px; background: linear-gradient(135deg,#f6efea,#fff); border-bottom: 1px solid var(--line); }
.woocommerce-products-header__title { margin: 0; color: var(--blue); font: 600 clamp(46px,6vw,82px)/.92 var(--serif); letter-spacing: -.025em; }
.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering { margin: 24px clamp(22px,4vw,60px) 0; }
.woocommerce .woocommerce-ordering select { min-height: 44px; padding: 0 38px 0 14px; border: 1px solid var(--line); background: #fff; color: var(--ink); }
.woocommerce ul.products { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 22px; margin: 0; list-style: none; }
.woocommerce ul.products::before,
.woocommerce ul.products::after { display: none; }
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product { float: none; width: auto; min-width: 0; margin: 0; padding: 0 0 22px; overflow: hidden; border: 1px solid var(--line); border-radius: 7px; background: var(--paper); transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s ease; }
.woocommerce ul.products li.product:hover { transform: translateY(-6px); box-shadow: 0 18px 42px rgba(20,31,49,.1); }
.woocommerce ul.products li.product a img { aspect-ratio: 4/5; margin: 0; padding: 22px; object-fit: contain; background: linear-gradient(145deg,#faf7f2,#f0e9e2); }
.woocommerce ul.products li.product .woocommerce-loop-product__title { min-height: 2.3em; padding: 18px 18px 4px; color: var(--blue-dark); font: 600 23px/1.05 var(--serif); }
.woocommerce ul.products li.product .price { padding: 0 18px; color: var(--blue); font-weight: 700; }
.woocommerce ul.products li.product .button { margin: 14px 18px 0; }
.woocommerce span.onsale { top: 12px; left: 12px; min-width: 0; min-height: 0; padding: 8px 11px; border-radius: 2px; background: #b66f61; font: 700 11px/1 var(--sans); letter-spacing: .08em; text-transform: uppercase; }
.woocommerce nav.woocommerce-pagination { padding: 0 22px 60px; }

.single-product .site-main,
.single-product main { background: #fff; }
body.single-product .single-product-page { display: block; width: 100%; min-width: 0; }
.single-product .single-product-page > .container-fluid { width: 100%; padding-inline: clamp(22px,4vw,60px); }
.single-product .single-product-page .product-image-summary-wrap,
.single-product .single-product-page .product-image-summary,
.single-product .single-product-page .product-image-summary-inner,
.single-product .single-product-page .product-tabs-wrapper,
.single-product .single-product-page .related-and-upsells { width: 100%; min-width: 0; }
.single-product .single-product-page .woocommerce-product-gallery,
.single-product .single-product-page div.summary { margin: 0; }
.single-product .single-product-page .woocommerce-product-gallery { position: sticky; top: 108px; padding: 34px; border: 1px solid var(--line); border-radius: 8px; background: linear-gradient(145deg,#fbf8f4,#f2ece6); }
.single-product .single-product-page .woocommerce-product-gallery img { max-height: 680px; object-fit: contain; }
.single-product .single-product-page div.summary { padding-top: 24px; }
.single-product .single-product-page .summary .product_title { margin-bottom: 22px; overflow-wrap: normal; word-break: normal; }
.single-product .single-product-page .summary .woocommerce-product-details__short-description { margin: 20px 0 26px; color: #3b4350; font-size: 17px; line-height: 1.7; }
.single-product .single-product-page .summary p.price { margin: 0 0 22px; font-size: 25px; }
.single-product .single-product-page .summary form.cart { display: flex; gap: 10px; margin: 26px 0; padding: 24px 0; border-block: 1px solid var(--line); }
.single-product .single-product-page .summary form.cart .quantity .qty { min-height: 48px; border: 1px solid var(--line); }
.single-product .single-product-page .summary .product_meta { display: grid; gap: 6px; color: #6b7280; font-size: 13px; }
.smartwines-vip-price-label { display: block; margin-top: 5px; color: var(--blue); font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.smartwines-club-consent { padding: 12px 14px; border: 1px solid var(--line); background: var(--cream); }
.smartwines-club-consent label { display: flex !important; align-items: flex-start; gap: 9px; line-height: 1.5; }
.smartwines-club-consent input { width: auto !important; margin-top: 4px; }
.single-product .single-product-page .product-tabs-wrapper { clear: both; margin-top: 38px; }
.single-product .single-product-page .woocommerce-tabs { width: 100%; min-width: 0; padding-top: 30px; }
.single-product .single-product-page .woocommerce-tabs ul.tabs { gap: 28px; margin: 0; padding: 0; overflow-x: auto; border-bottom: 1px solid var(--line); scrollbar-width: thin; }
.single-product .single-product-page .woocommerce-tabs ul.tabs::before { display: none; }
.single-product .single-product-page .woocommerce-tabs ul.tabs li { flex: 0 0 auto; margin: 0; padding: 0; border: 0; background: transparent; }
.single-product .single-product-page .woocommerce-tabs ul.tabs li::before,
.single-product .single-product-page .woocommerce-tabs ul.tabs li::after { display: none; }
.single-product .single-product-page .woocommerce-tabs ul.tabs li a { white-space: nowrap; padding: 16px 0 13px; border-bottom: 2px solid transparent; color: var(--ink); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.single-product .single-product-page .woocommerce-tabs ul.tabs li.active a { border-color: var(--blue); color: var(--blue); }
.single-product .single-product-page .woocommerce-tabs .panel { width: 100%; max-width: 1040px; min-width: 0; margin: 0 auto; padding: 42px 0 16px; overflow: visible; color: #3b4350; font-size: 17px; line-height: 1.75; }

@media (min-width: 1025px) {
  .single-product .single-product-page .woocommerce-tabs ul.tabs { display: flex; }
  .single-product .single-product-page .woocommerce-tabs .wd-accordion-title { display: none; }
}

.wine-profile { display: grid; grid-template-columns: 1fr; gap: 18px; width: 100%; min-width: 0; }
.wine-profile:has(> section:nth-of-type(2)) { grid-template-columns: repeat(2,minmax(0,1fr)); }
.wine-profile:has(> section:nth-of-type(3)) { grid-template-columns: repeat(3,minmax(0,1fr)); }
.wine-profile > section { min-width: 0; padding: 26px; border: 1px solid var(--line); border-radius: 6px; background: var(--paper); }
.wine-profile h2 { margin: 0 0 18px; color: var(--blue); font: 600 28px/1 var(--serif); }
.wine-profile-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.wine-profile-tags li { padding: 8px 11px; border: 1px solid rgba(12,68,133,.18); border-radius: 99px; background: #fff; color: var(--blue); font-size: 13px; }
.wine-profile dl { margin: 0; }
.wine-profile dl div { display: grid; grid-template-columns: minmax(110px,.7fr) minmax(0,1.3fr); gap: 12px; padding: 10px 0; border-top: 1px solid var(--line); }
.wine-profile dt { color: var(--blue); font-weight: 700; }
.wine-profile dd { min-width: 0; margin: 0; overflow-wrap: anywhere; }
.wine-profile-source { grid-column: 1 / -1; display: flex; justify-content: space-between; gap: 18px; padding-top: 8px; color: #6b7280; font-size: 12px; }
.wine-profile-source a { color: var(--blue); }

/* Woodmart uses div.product for carousel cards too. Keep those cards out of the
   single-product layout rules and make long wine names wrap by words. */
.single-product .single-product-page .related-products { width: 100%; min-width: 0; }
.single-product .single-product-page .related-products .wd-carousel-container,
.single-product .single-product-page .related-products .owl-carousel,
.single-product .single-product-page .related-products .owl-stage-outer,
.single-product .single-product-page .related-products .slide-product,
.single-product .single-product-page .related-products .product-grid-item,
.single-product .single-product-page .related-products .product-wrapper { min-width: 0; max-width: 100%; }
.single-product .single-product-page .related-products .product-grid-item { display: block; width: 100%; padding: 0; }
.single-product .single-product-page .related-products .product-element-top img { display: block; width: 100%; height: auto; object-fit: contain; }
.single-product .single-product-page .related-products .wd-entities-title,
.single-product .single-product-page .related-products .wd-entities-title a { white-space: normal; overflow-wrap: normal; word-break: normal; hyphens: auto; }

@media (max-width: 1050px) {
  .woocommerce ul.products { grid-template-columns: repeat(3,minmax(0,1fr)); }
}

@media (max-width: 960px) {
  .product-showcase { grid-template-columns: repeat(2,1fr); }
  .woocommerce ul.products { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .single-product .single-product-page .woocommerce-product-gallery { position: relative; top: auto; }
  .wine-profile:has(> section:nth-of-type(3)) { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .service-grid { grid-template-columns: 1fr; }
  .club-choice { grid-template-columns: 1fr; }
  .vip-premium-hero { min-height: 880px; grid-template-columns: 1fr; grid-template-rows: auto 390px; }
  .vip-hero-shade { background: linear-gradient(180deg,rgba(255,253,249,.99) 0%,rgba(255,253,249,.93) 47%,rgba(255,253,249,.24) 78%,rgba(8,34,79,.13) 100%); }
  .vip-hero-copy { align-self: start; max-width: 780px; padding: 72px 56px 30px; }
  .vip-bottle-stage { grid-row: 2; height: 390px; }
  .vip-bottle { bottom: 2%; }
  .vip-bottle-left { left: 18%; height: 89%; }
  .vip-bottle-center { left: 44%; height: 105%; }
  .vip-bottle-right { right: 15%; height: 86%; }
  .vip-selection-seal { top: 8px; right: 8%; }
  .vip-scroll-cue { display: none; }
  .vip-principles { grid-template-columns: 1fr; margin-top: 0; }
  .vip-principles article { min-height: 0; border-left: 0; border-top: 1px solid rgba(9,46,106,.11); }
  .vip-principles article:first-child { border-top: 0; }
  .membership-heading { grid-template-columns: 1fr; gap: 22px; }
  .membership-grid { grid-template-columns: 1fr; }
  .membership-card { min-height: 500px; }
  .vip-story-panel { margin-inline: 28px; grid-template-columns: 1fr; }
  .vip-story-photo { min-height: 340px; }
}

@media (max-width: 1024px) {
  .single-product .single-product-page .woocommerce-tabs ul.tabs { display: none !important; }
}

@media (max-width: 768px) {
  .single-product .single-product-page { padding-top: 24px; }
  .single-product .single-product-page > .container-fluid { padding-inline: 18px; }
  .single-product .single-product-page .product-tabs-wrapper { margin-top: 24px; }
  .single-product .single-product-page .woocommerce-tabs { padding-top: 0; }
  .single-product .single-product-page .woocommerce-tabs .panel { padding: 22px 0 12px; }
}

@media (max-width: 680px) {
  .wine-profile,
  .wine-profile:has(> section:nth-of-type(2)),
  .wine-profile:has(> section:nth-of-type(3)) { grid-template-columns: 1fr; }
  .wine-profile-source { grid-column: 1; flex-direction: column; }
  .vip-premium-hero { min-height: 790px; grid-template-rows: auto 330px; }
  .vip-hero-copy { padding: 52px 22px 18px; }
  .vip-hero-copy h1 { font-size: clamp(52px,16vw,68px); }
  .vip-hero-copy h1 span { font-size: .66em; }
  .vip-hero-lead { margin: 24px 0 26px; font-size: 16px; line-height: 1.55; }
  .vip-hero-actions { gap: 13px; }
  .vip-bottle-stage { height: 330px; }
  .vip-bottle-left { left: 4%; height: 83%; }
  .vip-bottle-center { left: 35%; height: 99%; }
  .vip-bottle-right { right: 2%; height: 80%; }
  .vip-orbit-one { width: 290px; height: 290px; left: 12%; top: 3%; }
  .vip-orbit-two { display: none; }
  .vip-selection-seal { width: 80px; height: 80px; top: -10px; right: 10px; }
  .vip-selection-seal strong { font-size: 14px; }
  .vip-principles { margin-inline: 14px; }
  .vip-principles article { grid-template-columns: 40px 1fr; gap: 16px; padding: 27px 22px; }
  .vip-principle-number { width: 40px; height: 40px; }
  .membership-section { padding: 72px 18px 64px; }
  .membership-heading h2 { font-size: 43px; }
  .membership-card { min-height: 0; padding: 32px 24px; }
  .membership-card-title { gap: 15px; margin: 32px 0 20px; }
  .membership-card-title > span { width: 52px; height: 52px; }
  .membership-card h3 { font-size: 36px; }
  .membership-card > p { font-size: 16px; }
  .membership-card .button { align-self: stretch; }
  .membership-card-vip-gate { min-height: 520px; padding: 12px; }
  .membership-card-vip-gate::before { inset: 22px; }
  .membership-card-vip-gate:hover::before { inset: 19px; }
  .vip-gate-scene { min-height: 494px; }
  .vip-gate-still-life { object-position: 54% center; }
  .vip-gate-frame { inset: 14px; }
  .vip-gate-monogram { top: 13%; left: 9%; font-size: 46px; }
  .vip-gate-arrow { left: 9%; bottom: 9%; }
  .vip-story-panel { min-height: 0; margin: 0 18px 72px; }
  .vip-story-photo { min-height: 250px; }
  .vip-story-copy { padding: 38px 26px 44px; }
  .vip-story-copy h2 { font-size: 42px; }
  .club-faq-premium { padding: 0 22px 70px; }
  .club-faq-premium .section-bar { display: grid; gap: 14px; }
  .club-faq-premium summary { font-size: 21px; }
}

@media (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}

@media (max-width: 560px) {
  .product-showcase { grid-template-columns: 1fr; }
  .woocommerce ul.products { grid-template-columns: 1fr; }
  .club-card { min-height: 0; padding: 28px 22px; }
}
