/* Vinica Castle — quiet luxury design system Palette: ivory paper, deep forest ink, aged brass Type: Cormorant Garamond (display) + Instrument Sans (UI) + JetBrains Mono (marks) */ :root { /* Colors */ --paper: #F4EFE6; --paper-2: #EBE3D2; --paper-3: #D9D2C1; --ink: #1E2A22; --ink-2: #3A3833; --ink-soft: #55574F; --brass: #A0854A; --brass-2: #C4A570; --ember: #7A3B2E; --mist: #D9D2C1; --line: rgba(30,42,34,0.16); --line-soft: rgba(30,42,34,0.08); --shadow: 0 30px 80px -40px rgba(30,42,34,0.35); /* Type */ --serif: 'Cormorant Garamond', 'Times New Roman', serif; --sans: 'Instrument Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif; --mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace; /* Rhythm */ --w-max: 1440px; --gutter: clamp(20px, 4vw, 56px); } @media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; } } *,*::before,*::after { box-sizing: border-box; } html,body { margin: 0; padding: 0; } html { scroll-behavior: smooth; } body { font-family: var(--sans); color: var(--ink); background: var(--paper); font-size: 16px; line-height: 1.55; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; /* Subtle paper grain */ background-image: radial-gradient(rgba(30,42,34,0.025) 1px, transparent 1px), radial-gradient(rgba(30,42,34,0.015) 1px, transparent 1px); background-size: 3px 3px, 7px 7px; background-position: 0 0, 1px 1px; } img { display: block; max-width: 100%; height: auto; } a { color: inherit; text-decoration: none; } button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; padding: 0; } .visually-hidden { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; } .skip-link:focus { position: fixed !important; z-index: 1000; top: 12px; left: 12px; width: auto !important; height: auto !important; margin: 0 !important; padding: 12px 16px !important; overflow: visible !important; clip: auto !important; white-space: normal !important; color: var(--paper); background: var(--ink); } /* ---------- Type utilities ---------- */ .display { font-family: var(--serif); font-weight: 400; letter-spacing: -0.01em; line-height: 1.02; } .serif-italic { font-family: var(--serif); font-style: italic; font-weight: 400; } .mono { font-family: var(--mono); letter-spacing: 0.02em; } .eyebrow { font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--brass); } .eyebrow--ink { color: var(--ink-2); } .rule { display: block; width: 40px; height: 1px; background: var(--brass); border: 0; } .hairline { border-top: 1px solid var(--line); } .hairline-soft { border-top: 1px solid var(--line-soft); } /* ---------- Layout ---------- */ .wrap { max-width: var(--w-max); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); } .wrap--narrow { max-width: 1100px; } .section { padding-block: clamp(72px, 10vw, 140px); } .section--tight { padding-block: clamp(48px, 6vw, 88px); } /* ---------- Header / Nav ---------- */ .site-header { position: relative; z-index: 40; background: color-mix(in oklab, var(--paper) 88%, transparent); backdrop-filter: none; -webkit-backdrop-filter: none; border-bottom: 1px solid var(--line-soft); transition: background .3s ease, border-color .3s ease; } .site-header.is-transparent { background: transparent; border-bottom-color: transparent; color: var(--paper); } .site-header.is-transparent .navlink, .site-header.is-transparent .brand, .site-header.is-transparent .nav-utility button { color: var(--paper); } .site-header.is-transparent .brand-mark { border-color: rgba(244,239,230,0.5); color: var(--paper); } .nav { display: flex; align-items: center; justify-content: space-between; height: 76px; } .brand { display: inline-flex; align-items: center; gap: 12px; font-family: var(--serif); font-size: 22px; letter-spacing: 0.02em; color: var(--ink); } .brand-mark { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--brass); display: inline-flex; align-items: center; justify-content: center; font-family: var(--serif); font-style: italic; color: var(--brass); font-size: 15px; } .brand-word { display: flex; flex-direction: column; line-height: 1; } .brand-word small { font-family: var(--mono); font-size: 9px; letter-spacing: 0.28em; color: var(--brass); text-transform: uppercase; margin-top: 4px; } .brand-mark--logo { width: 38px; height: 44px; border: 0; border-radius: 0; overflow: visible; background: transparent; } .brand-mark--logo img { display: block; width: 100%; height: 100%; object-fit: contain; } .nav-links { display: flex; gap: clamp(18px, 2.5vw, 36px); list-style: none; margin: 0; padding: 0; font-size: 14px; } .navlink { position: relative; padding: 6px 0; color: var(--ink-2); transition: color .2s; } .navlink:hover, .navlink[aria-current="page"] { color: var(--ink); } .navlink[aria-current="page"]::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px; background: var(--brass); } .nav-utility { display: flex; align-items: center; gap: 18px; font-size: 13px; } .lang-picker { display: inline-flex; gap: 8px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; } .lang-picker button { color: var(--ink-soft); padding: 4px 2px; } .lang-picker button.is-active { color: var(--ink); border-bottom: 1px solid var(--brass); } .cart-btn { position: relative; display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; } .cart-count { display: inline-flex; align-items: center; justify-content: center; min-width: 18px; height: 18px; padding: 0 5px; border-radius: 999px; background: var(--ink); color: var(--paper); font-family: var(--mono); font-size: 10px; letter-spacing: 0; } .nav-toggle { display: none; } @media (max-width: 900px) { .nav-links { display: none; } .nav-utility .lang-picker { display: none; } .nav-toggle { display: inline-flex; } } /* ---------- Buttons ---------- */ .btn { display: inline-flex; align-items: center; gap: 12px; padding: 16px 26px; font-family: var(--sans); font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; border: 1px solid transparent; transition: all .25s ease; cursor: pointer; } .btn--primary { background: var(--ink); color: var(--paper); } .btn--primary:hover { background: var(--ink-2); transform: translateY(-1px); } .btn--ghost { background: transparent; color: currentColor; border-color: currentColor; } .btn--ghost:hover { background: currentColor; color: var(--paper); } .btn--brass { background: var(--brass); color: var(--paper); } .btn--brass:hover { background: #8a7140; } .btn--link { padding: 6px 0; text-transform: uppercase; border-bottom: 1px solid var(--brass); color: var(--ink); font-size: 12px; letter-spacing: 0.2em; } .btn--link:hover { color: var(--brass); } .btn .arrow { display: inline-block; width: 14px; height: 1px; background: currentColor; position: relative; } .btn .arrow::after { content: ""; position: absolute; right: 0; top: -3px; width: 6px; height: 6px; border-top: 1px solid currentColor; border-right: 1px solid currentColor; transform: rotate(45deg); } /* ---------- Hero ---------- */ .hero { position: relative; min-height: 92vh; color: var(--paper); overflow: hidden; display: flex; flex-direction: column; isolation: isolate; } .hero__bg { position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center; transform: scale(1.06); animation: kenburns 22s ease-in-out infinite alternate; } @keyframes kenburns { from { transform: scale(1.06) translate3d(0,0,0); } to { transform: scale(1.14) translate3d(-1%, -2%, 0); } } .hero__scrim { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(11,15,12,0.55) 0%, rgba(11,15,12,0.18) 40%, rgba(11,15,12,0.75) 100%), linear-gradient(90deg, rgba(11,15,12,0.35), rgba(11,15,12,0)); } .hero__inner { flex: 1; display: grid; grid-template-rows: 1fr auto; padding-block: 80px 60px; } .hero__content { align-self: end; max-width: 900px; } .hero__eyebrow { color: var(--brass-2); display: inline-flex; align-items: center; gap: 16px; margin-bottom: 24px; } .hero__eyebrow::before { content: ""; width: 32px; height: 1px; background: var(--brass-2); } .hero h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(48px, 8vw, 116px); line-height: 0.98; letter-spacing: -0.015em; margin: 0 0 28px; } .hero h1 em { font-style: italic; color: var(--brass-2); } .hero__sub { font-size: clamp(16px, 1.4vw, 20px); max-width: 560px; opacity: 0.9; margin: 0 0 40px; line-height: 1.5; } .hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; } .hero__meta { display: flex; align-items: flex-end; justify-content: space-between; margin-top: 80px; gap: 24px; } .hero__meta .mono { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; opacity: 0.85; } .hero__meta .coords { display: flex; gap: 32px; flex-wrap: wrap; } @media (max-width: 720px) { .hero { min-height: 82vh; } .hero h1 { font-size: clamp(44px, 12vw, 72px); } .hero__meta { flex-direction: column; align-items: flex-start; } } /* ---------- Trust band ---------- */ .trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper-2); } .trust__row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 32px; padding-block: 32px; } .trust__item { display: flex; align-items: center; gap: 14px; font-size: 13px; color: var(--ink-2); } .trust__item svg { width: 22px; height: 22px; color: var(--brass); flex-shrink: 0; } .trust__item strong { display: block; color: var(--ink); font-size: 13px; font-weight: 500; } .trust__item small { display: block; font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); margin-top: 2px; } @media (max-width: 900px) { .trust__row { grid-template-columns: repeat(2, 1fr); gap: 20px; } } /* ---------- Section headers ---------- */ .section-head { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; margin-bottom: 56px; } .section-head h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(36px, 5vw, 68px); line-height: 1.02; letter-spacing: -0.01em; margin: 12px 0 0; } .section-head h2 em { font-style: italic; color: var(--brass); } .section-head p { color: var(--ink-soft); font-size: 15px; max-width: 44ch; line-height: 1.6; margin: 0; } @media (max-width: 720px) { .section-head { grid-template-columns: 1fr; gap: 20px; } } /* ---------- Gift finder / quiz ---------- */ .quiz { background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%); border: 1px solid var(--line); padding: clamp(28px, 4vw, 56px); } .quiz__head { display: flex; justify-content: space-between; align-items: baseline; gap: 20px; margin-bottom: 32px; } .quiz__head h3 { font-family: var(--serif); font-size: 32px; font-weight: 400; margin: 0; } .quiz__step-indicator { font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em; color: var(--brass); text-transform: uppercase; } .quiz__stage { position: relative; min-height: 260px; } .quiz__panel { display: none; } .quiz__panel.is-active { display: block; animation: fadeUp .4s ease; } @keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } } .quiz__question { font-family: var(--serif); font-size: clamp(24px, 3vw, 34px); font-weight: 400; margin: 0 0 24px; } .quiz__options { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; } .quiz__opt { border: 1px solid var(--line); background: var(--paper); padding: 18px 20px; text-align: left; transition: all .2s; display: flex; flex-direction: column; gap: 4px; min-height: 84px; } .quiz__opt:hover { border-color: var(--brass); transform: translateY(-2px); box-shadow: 0 6px 20px -12px rgba(30,42,34,0.3); } .quiz__opt.is-selected { border-color: var(--ink); background: var(--paper-2); } .quiz__opt strong { font-family: var(--serif); font-size: 20px; font-weight: 500; letter-spacing: -0.005em; } .quiz__opt small { font-family: var(--sans); font-size: 12px; color: var(--ink-soft); letter-spacing: 0; text-transform: none; } .quiz__foot { margin-top: 32px; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding-top: 24px; border-top: 1px solid var(--line-soft); } .quiz__back { font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-soft); } .quiz__back:hover { color: var(--ink); } .quiz__result { display: none; align-items: center; gap: 32px; padding: 24px; background: var(--paper); border: 1px solid var(--brass); animation: fadeUp .5s ease; } .quiz__result.is-active { display: flex; } .quiz__result img { width: 180px; height: 140px; object-fit: cover; flex-shrink: 0; } .quiz__result-body { flex: 1; } .quiz__result h4 { font-family: var(--serif); font-size: 28px; font-weight: 400; margin: 8px 0 6px; } .quiz__result p { margin: 0 0 16px; color: var(--ink-soft); } @media (max-width: 720px) { .quiz__result { flex-direction: column; align-items: stretch; } .quiz__result img { width: 100%; } } /* ---------- Package cards ---------- */ .packages-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 32px; } .pkg-card { grid-column: span 4; background: var(--paper); border: 1px solid var(--line-soft); overflow: hidden; display: flex; flex-direction: column; transition: all .35s ease; position: relative; } .pkg-card:hover { border-color: var(--brass); transform: translateY(-4px); box-shadow: var(--shadow); } .pkg-card--wide { grid-column: span 6; } .pkg-card--tall { grid-column: span 4; grid-row: span 2; } .pkg-card--flex { grid-column: span 12; display: grid; grid-template-columns: 1fr 1fr; gap: 0; min-height: 320px; border: 1px solid var(--ink); background: var(--ink); color: var(--paper); } .pkg-card--flex .pkg-card__media { min-height: 320px; } .pkg-card--flex .pkg-card__body { padding: clamp(28px, 3vw, 44px); } .pkg-card__media { position: relative; overflow: hidden; aspect-ratio: 4/3; background: var(--paper-2); } .pkg-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; } .pkg-card:hover .pkg-card__media img { transform: scale(1.05); } .pkg-card__tag { position: absolute; top: 16px; left: 16px; background: var(--paper); color: var(--ink); padding: 6px 10px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; } .pkg-card__body { padding: 28px; display: flex; flex-direction: column; flex: 1; gap: 16px; } .pkg-card__head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; } .pkg-card__head h3 { font-family: var(--serif); font-weight: 400; font-size: 28px; margin: 0; letter-spacing: -0.005em; line-height: 1.1; } .pkg-card__head .price { font-family: var(--mono); font-size: 13px; letter-spacing: 0.05em; color: var(--brass); white-space: nowrap; } .pkg-card__head .price em { font-family: var(--sans); font-style: normal; font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); display: block; } .pkg-card__lede { color: var(--ink-soft); font-size: 14.5px; line-height: 1.55; margin: 0; } .pkg-card__incl { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px 16px; font-size: 12.5px; } .pkg-card__incl li { display: inline-flex; align-items: center; gap: 8px; color: var(--ink-2); } .pkg-card__incl svg { width: 14px; height: 14px; color: var(--brass); flex-shrink: 0; } .pkg-card__foot { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line-soft); display: flex; justify-content: space-between; align-items: center; } .pkg-card__foot small { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); } .pkg-card__foot .btn--link { font-size: 11px; } .pkg-card__occasion { font-family: var(--serif); font-style: italic; font-size: 15px; color: var(--brass); margin: 0; } @media (max-width: 1000px) { .pkg-card, .pkg-card--wide, .pkg-card--tall { grid-column: span 6; } .pkg-card--flex { grid-template-columns: 1fr; } .pkg-card--flex .pkg-card__media { aspect-ratio: 16/9; min-height: 0; } } @media (max-width: 640px) { .pkg-card, .pkg-card--wide, .pkg-card--tall, .pkg-card--flex { grid-column: span 12; } } /* ---------- How it works ---------- */ .how { background: var(--ink); color: var(--paper); } .how .section-head h2 { color: var(--paper); } .how .section-head p { color: rgba(244,239,230,0.75); } .how .eyebrow { color: var(--brass-2); } .steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid rgba(244,239,230,0.15); } .step { padding: 40px 32px 40px 0; border-right: 1px solid rgba(244,239,230,0.15); position: relative; } .step:last-child { border-right: 0; } .step__num { font-family: var(--serif); font-style: italic; font-size: 48px; color: var(--brass-2); margin-bottom: 24px; display: block; line-height: 1; } .step h3 { font-family: var(--serif); font-weight: 400; font-size: 24px; margin: 0 0 12px; } .step p { color: rgba(244,239,230,0.72); font-size: 14.5px; margin: 0; line-height: 1.55; } .step__icon { width: 32px; height: 32px; color: var(--brass-2); margin-bottom: 24px; } @media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } .step { border-right: 0; border-bottom: 1px solid rgba(244,239,230,0.15); padding: 32px 0; } .step:nth-child(odd) { padding-right: 24px; border-right: 1px solid rgba(244,239,230,0.15); } .step:nth-child(even) { padding-left: 24px; } } @media (max-width: 560px) { .steps { grid-template-columns: 1fr; } .step { padding: 28px 0 !important; border-right: 0 !important; border-bottom: 1px solid rgba(244,239,230,0.15); } } /* ---------- Editorial two-col ---------- */ .editorial { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(40px, 6vw, 96px); align-items: center; } .editorial__media { aspect-ratio: 3/4; background: var(--paper-2); overflow: hidden; position: relative; } .editorial__media img { width: 100%; height: 100%; object-fit: cover; } .editorial__body h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(36px, 4.5vw, 58px); line-height: 1.05; margin: 12px 0 24px; letter-spacing: -0.01em; } .editorial__body h2 em { font-style: italic; color: var(--brass); } .editorial__body p { color: var(--ink-2); font-size: 16px; line-height: 1.7; margin: 0 0 16px; max-width: 46ch; } .editorial__stats { display: flex; gap: 32px; margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line); } .editorial__stat strong { font-family: var(--serif); font-size: 42px; font-weight: 400; color: var(--brass); display: block; line-height: 1; } .editorial__stat small { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); } @media (max-width: 900px) { .editorial { grid-template-columns: 1fr; } } /* ---------- Testimonials ---------- */ .quotes { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; } .quote { padding: 40px 0; border-top: 1px solid var(--line); } .quote blockquote { font-family: var(--serif); font-size: clamp(22px, 2.5vw, 30px); font-style: italic; line-height: 1.3; color: var(--ink); margin: 0 0 24px; } .quote blockquote::before { content: "“"; color: var(--brass); margin-right: 4px; } .quote blockquote::after { content: "”"; color: var(--brass); } .quote cite { font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-soft); font-style: normal; } @media (max-width: 720px) { .quotes { grid-template-columns: 1fr; } } /* ---------- Footer ---------- */ .site-footer { background: var(--ink); color: var(--paper); padding: 80px 0 40px; } .site-footer .footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 60px; } .site-footer h4 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brass-2); margin: 0 0 20px; font-weight: 500; } .site-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; font-size: 14px; } .site-footer ul a { color: rgba(244,239,230,0.72); } .site-footer ul a:hover { color: var(--paper); } .site-footer .brand { color: var(--paper); font-size: 26px; } .site-footer .brand-mark { border-color: var(--brass-2); color: var(--brass-2); } .footer-lede { color: rgba(244,239,230,0.72); font-size: 14.5px; line-height: 1.6; margin: 20px 0 24px; max-width: 42ch; } .newsletter { display: flex; border-bottom: 1px solid rgba(244,239,230,0.4); padding-bottom: 8px; max-width: 340px; } .newsletter input { flex: 1; background: none; border: 0; color: var(--paper); padding: 8px 0; font-family: var(--sans); font-size: 14px; outline: none; } .newsletter input::placeholder { color: rgba(244,239,230,0.5); } .newsletter button { font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; color: var(--brass-2); text-transform: uppercase; padding: 8px 0; } .footer-fine { border-top: 1px solid rgba(244,239,230,0.15); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(244,239,230,0.6); } @media (max-width: 900px) { .site-footer .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } } @media (max-width: 560px) { .site-footer .footer-grid { grid-template-columns: 1fr; } .footer-fine { flex-direction: column; align-items: flex-start; } } /* ---------- Page hero (subpages) ---------- */ .page-hero { padding-top: 140px; padding-bottom: 60px; border-bottom: 1px solid var(--line-soft); } .page-hero h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(48px, 7vw, 96px); line-height: 1.02; letter-spacing: -0.015em; margin: 20px 0 24px; max-width: 14ch; } .page-hero h1 em { font-style: italic; color: var(--brass); } .page-hero p { max-width: 55ch; color: var(--ink-2); font-size: 17px; line-height: 1.6; margin: 0; } .breadcrumb { font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft); } .breadcrumb a:hover { color: var(--brass); } /* ---------- Product detail (programme) ---------- */ .pdp { display: grid; grid-template-columns: 1.4fr 0.9fr; gap: clamp(40px, 5vw, 80px); align-items: start; } .pdp__gallery { display: grid; grid-template-columns: 3fr 2fr; grid-template-rows: 1fr 1fr; gap: 12px; height: 720px; } .pdp__gallery > div:nth-child(1) { grid-row: span 2; } .pdp__gallery > div { background: var(--paper-2); overflow: hidden; cursor: zoom-in; } .pdp__gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; } .pdp__gallery > div:hover img { transform: scale(1.03); } .pdp__gallery--single { grid-template-columns: 1fr; } .pdp__gallery--single > div:first-child { grid-column: 1; grid-row: 1 / span 2; } @media (max-width: 900px) { .pdp { grid-template-columns: 1fr; } .pdp__gallery { height: 480px; } } .pdp__panel { position: sticky; top: 100px; background: var(--paper); border: 1px solid var(--line); padding: 32px; } #voucher-form { scroll-margin-top: 110px; } .pdp__panel .eyebrow { color: var(--brass); } .pdp__panel h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(32px, 3.6vw, 48px); line-height: 1.02; letter-spacing: -0.01em; margin: 8px 0 12px; } .pdp__panel h1 em { font-style: italic; color: var(--brass); } .pdp__lede { color: var(--ink-2); font-size: 15px; line-height: 1.6; margin: 0 0 24px; } .pdp__meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 24px; } .pdp__chip { font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; padding: 6px 10px; border: 1px solid var(--line); color: var(--ink-soft); } .pdp__price { display: flex; align-items: baseline; gap: 8px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding-block: 20px; margin-bottom: 24px; } .pdp__price .amt { font-family: var(--serif); font-size: 44px; font-weight: 400; color: var(--ink); } .pdp__price .cur { font-family: var(--serif); font-size: 20px; color: var(--brass); } .pdp__price small { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); margin-left: auto; } .suite-picker { margin-bottom: 24px; } .suite-picker label { display: block; font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 10px; } .suite-opts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; } .suite-opt { border: 1px solid var(--line); padding: 12px 10px; text-align: left; background: transparent; transition: all .2s; } .suite-opt:hover { border-color: var(--brass); } .suite-opt.is-active { border-color: var(--ink); background: var(--paper-2); } .suite-opt strong { font-family: var(--serif); font-size: 17px; display: block; } .suite-opt small { font-family: var(--mono); font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); } .pdp__cta { display: flex; flex-direction: column; gap: 10px; } .pdp__cta .btn--primary { justify-content: center; } .pdp__cta small { text-align: center; font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); } .pdp-body { padding-top: clamp(60px, 8vw, 100px); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 5vw, 80px); } .pdp-body h3 { font-family: var(--serif); font-weight: 400; font-size: 32px; margin: 0 0 20px; letter-spacing: -0.005em; } .pdp-body p { color: var(--ink-2); font-size: 15.5px; line-height: 1.7; margin: 0 0 14px; } @media (max-width: 900px) { .pdp-body { grid-template-columns: 1fr; } } .cart-line { display: grid; grid-template-columns: 140px 1fr auto; gap: 24px; padding: 20px 0; border-bottom: 1px solid var(--line-soft); align-items: start; } .cart-line img { width: 100%; aspect-ratio: 4/3; object-fit: cover; } .cart-line__price { text-align: right; font-family: var(--serif); font-size: 22px; color: var(--brass); } .cart-total { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding-top: 24px; } @media (max-width: 640px) { .cart-line { grid-template-columns: 92px 1fr; gap: 16px; } .cart-line__price { grid-column: 2; text-align: left; } .cart-total { flex-direction: column; align-items: stretch; } .cart-total .btn { justify-content: center; } } .itinerary { list-style: none; margin: 0; padding: 0; counter-reset: step; } .itinerary li { display: grid; grid-template-columns: 100px 1fr; gap: 24px; padding: 20px 0; border-top: 1px solid var(--line-soft); } .itinerary li:last-child { border-bottom: 1px solid var(--line-soft); } .itinerary time { font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brass); padding-top: 3px; } .itinerary h4 { font-family: var(--serif); font-size: 20px; font-weight: 400; margin: 0 0 4px; } .itinerary p { margin: 0; color: var(--ink-soft); font-size: 14.5px; } .included { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 16px 32px; } .included li { display: grid; grid-template-columns: 22px 1fr; gap: 12px; align-items: start; font-size: 14.5px; color: var(--ink-2); line-height: 1.5; } .included svg { width: 20px; height: 20px; color: var(--brass); margin-top: 2px; } .included strong { display: block; color: var(--ink); font-weight: 500; } .included small { color: var(--ink-soft); font-size: 13px; } /* ---------- Personalisation ---------- */ .perso { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 5vw, 80px); align-items: start; } @media (max-width: 1000px) { .perso { grid-template-columns: 1fr; } } .perso__form h2 { font-family: var(--serif); font-weight: 400; font-size: 40px; margin: 12px 0 20px; letter-spacing: -0.005em; } .perso__form h2 em { font-style: italic; color: var(--brass); } .field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; min-width: 0; } .field label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-soft); } .field input, .field textarea, .field select { font: inherit; color: var(--ink); width: 100%; min-width: 0; background: transparent; border: 0; border-bottom: 1px solid var(--line); padding: 12px 0; outline: none; transition: border-color .2s; } .field input:focus, .field textarea:focus, .field select:focus { border-bottom-color: var(--brass); } .field textarea { resize: vertical; min-height: 100px; font-family: var(--serif); font-size: 18px; font-style: italic; } .field .hint { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); } .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; } .delivery-opts { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; } .delivery-opt { border: 1px solid var(--line); padding: 16px; text-align: left; background: transparent; display: grid; grid-template-columns: 24px 1fr; gap: 12px; align-items: start; transition: all .2s; cursor: pointer; } .delivery-opt:hover { border-color: var(--brass); } .delivery-opt.is-active { border-color: var(--ink); background: var(--paper-2); } .delivery-opt svg { width: 22px; height: 22px; color: var(--brass); } .delivery-opt strong { font-family: var(--serif); font-size: 18px; font-weight: 500; display: block; margin-bottom: 4px; } .delivery-opt small { display: block; font-size: 12.5px; color: var(--ink-soft); } .perso > *, .field-row > *, .delivery-opts > * { min-width: 0; } @media (max-width: 640px) { .field-row, .delivery-opts { grid-template-columns: 1fr; gap: 0; } .perso__form { width: 100%; min-width: 0; } .voucher-frame { padding: 20px; } .voucher { padding: 34px 22px; } } /* Voucher preview */ .voucher-frame { position: sticky; top: 100px; background: linear-gradient(135deg, rgba(160,133,74,0.12) 0%, transparent 60%), var(--paper-2); padding: 32px; border: 1px solid var(--line); } .voucher-frame .eyebrow { color: var(--brass); } .voucher-frame .stamp { position: absolute; top: 20px; right: 24px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; color: var(--brass); text-transform: uppercase; } .voucher { background: radial-gradient(ellipse at top left, rgba(160,133,74,0.06), transparent 60%), #fbf7ee; color: var(--ink); padding: 44px 40px; border: 1px solid var(--brass); position: relative; aspect-ratio: 3/4; display: flex; flex-direction: column; box-shadow: 0 40px 80px -50px rgba(30,42,34,0.4); overflow: hidden; } .voucher::before { content: ""; position: absolute; inset: 12px; border: 1px solid rgba(160,133,74,0.35); pointer-events: none; } .voucher__head { text-align: center; margin-bottom: 24px; } .voucher__crest { font-family: var(--serif); font-style: italic; font-size: 32px; color: var(--brass); display: inline-block; padding: 8px 20px; border-top: 1px solid var(--brass); border-bottom: 1px solid var(--brass); margin-bottom: 16px; } .voucher__crest small { display: block; font-family: var(--mono); font-style: normal; font-size: 8px; letter-spacing: 0.36em; color: var(--brass); } .voucher__eyebrow { font-family: var(--mono); font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ink-soft); } .voucher__salutation { font-family: var(--serif); font-size: 22px; margin: 24px 0 0; text-align: center; font-style: italic; } .voucher__salutation strong { font-style: normal; } .voucher__title { font-family: var(--serif); font-size: clamp(28px, 3.4vw, 38px); font-weight: 400; line-height: 1.05; text-align: center; margin: 12px 0 20px; letter-spacing: -0.005em; } .voucher__title em { font-style: italic; color: var(--brass); } .voucher__message { font-family: var(--serif); font-style: italic; font-size: 15.5px; color: var(--ink-2); line-height: 1.55; text-align: center; padding: 16px 8px; border-top: 1px solid rgba(160,133,74,0.3); border-bottom: 1px solid rgba(160,133,74,0.3); margin: 0 auto 20px; max-width: 42ch; min-height: 60px; } .voucher__from { font-family: var(--serif); font-size: 15px; text-align: center; margin: 0 0 auto; color: var(--ink); } .voucher__from span { color: var(--brass); font-style: italic; } .voucher__foot { margin-top: auto; padding-top: 20px; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; border-top: 1px solid rgba(160,133,74,0.3); font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); text-align: center; } .voucher__foot > div strong { display: block; font-family: var(--serif); font-style: italic; font-size: 15px; letter-spacing: 0; text-transform: none; color: var(--ink); font-weight: 400; margin-top: 4px; } .perso__summary { margin-top: 28px; background: var(--paper); padding: 24px; border: 1px solid var(--line); } .perso__summary .row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14px; } .perso__summary .row:not(:last-child) { border-bottom: 1px solid var(--line-soft); } .perso__summary .row strong { font-family: var(--serif); font-size: 22px; font-weight: 400; } .perso__summary .row.total { padding-top: 16px; border-top: 1px solid var(--line); border-bottom: 0; margin-top: 6px; } /* ---------- Redeem ---------- */ .redeem-hero { min-height: 60vh; display: flex; align-items: center; } .redeem-card { background: var(--paper); border: 1px solid var(--line); padding: clamp(32px, 5vw, 64px); display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; } @media (max-width: 900px) { .redeem-card { grid-template-columns: 1fr; } } .redeem-card h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(32px, 4vw, 54px); margin: 12px 0 20px; letter-spacing: -0.01em; line-height: 1.05; } .redeem-card h2 em { font-style: italic; color: var(--brass); } .code-input { display: flex; align-items: center; gap: 12px; border: 1px solid var(--line); padding: 8px 8px 8px 20px; background: var(--paper); margin: 24px 0; } .code-input input { flex: 1; border: 0; background: transparent; outline: none; padding: 16px 0; font-family: var(--mono); font-size: 18px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink); } .code-input input::placeholder { color: var(--paper-3); } .redeem-steps { list-style: none; margin: 0; padding: 0; } .redeem-steps li { display: grid; grid-template-columns: 28px 1fr; gap: 16px; padding: 16px 0; border-top: 1px solid var(--line-soft); } .redeem-steps li:last-child { border-bottom: 1px solid var(--line-soft); } .redeem-steps .n { font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--brass); } .redeem-steps strong { font-family: var(--serif); font-size: 18px; font-weight: 500; } .redeem-steps p { margin: 4px 0 0; color: var(--ink-soft); font-size: 14px; } /* ---------- FAQ & How ---------- */ .faq { max-width: 900px; margin: 0 auto; } .faq__item { border-top: 1px solid var(--line); } .faq__item:last-child { border-bottom: 1px solid var(--line); } .faq__q { width: 100%; text-align: left; padding: 24px 0; display: flex; justify-content: space-between; align-items: center; gap: 24px; font-family: var(--serif); font-size: clamp(19px, 2vw, 24px); font-weight: 400; color: var(--ink); } .faq__q::after { content: "+"; font-family: var(--mono); color: var(--brass); font-size: 20px; transition: transform .3s; } .faq__item.is-open .faq__q::after { content: "–"; } .faq__a { max-height: 0; overflow: hidden; transition: max-height .5s ease, padding .3s ease; color: var(--ink-2); font-size: 15.5px; line-height: 1.7; } .faq__item.is-open .faq__a { max-height: 400px; padding-bottom: 28px; } .faq__a p { margin: 0; max-width: 65ch; } /* ---------- Filters (catalogue) ---------- */ .filter-bar { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; border-bottom: 1px solid var(--line); gap: 24px; flex-wrap: wrap; margin-bottom: 48px; } .chip-row { display: flex; gap: 8px; flex-wrap: wrap; } .chip { padding: 8px 14px; border: 1px solid var(--line); font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; background: transparent; color: var(--ink-2); transition: all .2s; cursor: pointer; } .chip:hover { border-color: var(--brass); color: var(--ink); } .chip.is-active { background: var(--ink); color: var(--paper); border-color: var(--ink); } .sort-select { font: inherit; border: 0; background: transparent; color: var(--ink); font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer; } /* ---------- Utility ---------- */ /* Progressive enhancement: elements are visible by default; only hidden when JS marks the body */ .js-reveal .reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s ease; } .js-reveal .reveal.is-in { opacity: 1; transform: none; } @media (prefers-reduced-motion: reduce) { .js-reveal .reveal { opacity: 1 !important; transform: none !important; } } .center { text-align: center; } .mt-lg { margin-top: 40px; } /* ---------- Category jump strip (Home + Catalogue) ---------- */ .jumps { position: sticky; top: 76px; z-index: 20; background: color-mix(in oklab, var(--paper) 92%, transparent); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-block: 1px solid var(--line-soft); padding: 14px 0; } .jumps__row { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; align-items: center; } .jumps__row::-webkit-scrollbar { display: none; } .jumps__label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-soft); margin-right: 4px; white-space: nowrap; } .jumps a.chip { white-space: nowrap; } /* ---------- Wedding signature section ---------- */ .wedding { background: var(--ink); color: var(--paper); position: relative; overflow: hidden; isolation: isolate; } .wedding__bg { position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center; opacity: 0.35; transform: scale(1.05); } .wedding__scrim { position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(11,15,12,0.92) 0%, rgba(11,15,12,0.65) 55%, rgba(11,15,12,0.4) 100%), linear-gradient(180deg, rgba(11,15,12,0.4), rgba(11,15,12,0.6)); } .wedding__inner { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(40px, 6vw, 100px); padding-block: clamp(88px, 12vw, 160px); align-items: center; } .wedding__eyebrow { color: var(--brass-2); display: inline-flex; align-items: center; gap: 16px; margin-bottom: 20px; } .wedding__eyebrow::before { content: ""; width: 32px; height: 1px; background: var(--brass-2); } .wedding h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(48px, 6.4vw, 92px); line-height: 1; letter-spacing: -0.015em; margin: 0 0 28px; } .wedding h2 em { font-style: italic; color: var(--brass-2); } .wedding__lede { font-size: 18px; line-height: 1.55; max-width: 52ch; color: rgba(244,239,230,0.86); margin: 0 0 28px; } .wedding__meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding: 24px 0; border-top: 1px solid rgba(244,239,230,0.2); border-bottom: 1px solid rgba(244,239,230,0.2); margin-bottom: 32px; } .wedding__meta strong { display: block; font-family: var(--serif); font-style: italic; font-size: clamp(24px, 2.5vw, 32px); color: var(--brass-2); font-weight: 400; line-height: 1; } .wedding__meta small { display: block; font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(244,239,230,0.6); margin-top: 8px; } .wedding__price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 24px; } .wedding__price .cur { font-family: var(--serif); font-size: 32px; color: var(--brass-2); } .wedding__price .amt { font-family: var(--serif); font-size: clamp(56px, 6vw, 88px); font-weight: 400; color: var(--paper); line-height: 1; letter-spacing: -0.02em; } .wedding__price small { font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(244,239,230,0.55); margin-left: auto; max-width: 20ch; text-align: right; line-height: 1.4; } .wedding__ctas { display: flex; gap: 14px; flex-wrap: wrap; } .wedding__terms { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(244,239,230,0.55); margin-top: 24px; line-height: 1.7; } .wedding__aside { border-left: 1px solid rgba(244,239,230,0.2); padding-left: clamp(28px, 3vw, 56px); } .wedding__aside h4 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brass-2); margin: 0 0 20px; font-weight: 500; } .wedding__aside ul { list-style: none; margin: 0; padding: 0; } .wedding__aside li { padding: 14px 0; border-bottom: 1px solid rgba(244,239,230,0.14); display: flex; gap: 14px; align-items: baseline; font-family: var(--serif); font-size: 20px; line-height: 1.35; color: rgba(244,239,230,0.92); } .wedding__aside li:last-child { border-bottom: 0; } .wedding__aside li::before { content: attr(data-n); font-family: var(--mono); font-style: normal; font-size: 10px; letter-spacing: 0.16em; color: var(--brass-2); flex-shrink: 0; width: 22px; padding-top: 6px; } @media (max-width: 900px) { .wedding__inner { grid-template-columns: 1fr; } .wedding__aside { border-left: 0; border-top: 1px solid rgba(244,239,230,0.2); padding-left: 0; padding-top: 32px; } .wedding__meta { grid-template-columns: 1fr; gap: 12px; } } /* ---------- WhatsApp button variant ---------- */ .btn--whatsapp { background: transparent; color: currentColor; border: 1px solid rgba(255,255,255,0.32); } .btn--whatsapp:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.55); } .btn--whatsapp svg { width: 16px; height: 16px; } .btn.on-paper.btn--whatsapp { border-color: var(--line); color: var(--ink); } .btn.on-paper.btn--whatsapp:hover { background: var(--paper-2); border-color: var(--brass); } /* Header WhatsApp link */ .wa-link { display: inline-flex; align-items: center; gap: 6px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); transition: color .2s; } .wa-link:hover { color: var(--brass); } .wa-link svg { width: 14px; height: 14px; } .site-header.is-transparent .wa-link { color: rgba(244,239,230,0.78); } .site-header.is-transparent .wa-link:hover { color: var(--paper); } @media (max-width: 900px) { .wa-link .wa-text { display: none; } } /* Social icons in footer */ .social-icons { display: flex; gap: 20px; margin-top: 20px; } .social-icons a { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(244,239,230,0.68); padding-bottom: 4px; border-bottom: 1px solid transparent; transition: color .2s, border-color .2s; } .social-icons a:hover { color: var(--paper); border-bottom-color: var(--brass-2); } .social-icons svg { width: 16px; height: 16px; } .footer-contact-icons { display: flex; gap: 20px; margin-top: 12px; } .footer-contact-icons a { display: inline-flex; align-items: center; justify-content: center; width: 16px; height: 16px; color: rgba(244,239,230,0.68); transition: color .2s; } .footer-contact-icons a:hover { color: var(--paper); } .footer-contact-icons svg { width: 16px; height: 16px; } .footer-contact { display: flex; flex-direction: column; gap: 6px; margin-top: 18px; font-family: var(--mono); font-size: 11px; letter-spacing: .1em; color: rgba(244,239,230,.68); } .footer-contact a { color: inherit; } .footer-contact a:hover { color: var(--paper); } /* ---------- Mobile sticky product CTA (product detail) ---------- */ .mobile-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; background: var(--paper); border-top: 1px solid var(--line); padding: 12px 16px; display: none; align-items: center; gap: 12px; box-shadow: 0 -12px 24px -14px rgba(30,42,34,0.16); } .mobile-cta__label { flex: 1; min-width: 0; font-family: var(--serif); font-size: 16px; line-height: 1.2; } .mobile-cta__label small { display: block; font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; color: var(--ink-soft); text-transform: uppercase; margin-top: 2px; } .mobile-cta .btn { padding: 12px 16px; flex-shrink: 0; } @media (max-width: 720px) { .mobile-cta { display: flex; } body.has-mobile-cta { padding-bottom: 76px; } } /* ---------- Toast ---------- */ .toast { position: fixed; bottom: 24px; right: 24px; z-index: 100; background: var(--ink); color: var(--paper); padding: 16px 20px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; transform: translateY(20px); opacity: 0; pointer-events: none; transition: all .3s; } .toast.is-in { transform: none; opacity: 1; } /* ── Vinica header + motion polish v2 ── */ /* Ensure hero image is visible in all cases */ .hero { position: relative; isolation: isolate; min-height: 92vh; overflow: hidden; } .hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; } @media (prefers-reduced-motion: no-preference) { .hero__bg { animation: kenburns 22s ease-in-out infinite alternate; } } @keyframes kenburns { from { transform: scale(1.06) translate3d(0,0,0); } to { transform: scale(1.14) translate3d(-1%, -2%, 0); } } .hero__scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(11,15,12,0.55) 0%, rgba(11,15,12,0.18) 40%, rgba(11,15,12,0.75) 100%), linear-gradient(90deg, rgba(11,15,12,0.35), rgba(11,15,12,0)); } .hero__inner { position: relative; z-index: 2; } /* Stagger hero content entrance */ @media (prefers-reduced-motion: no-preference) { .hero .hero__eyebrow { animation: heroFade 0.9s 0.05s both ease-out; } .hero h1 { animation: heroFade 1.1s 0.15s both ease-out; } .hero .hero__sub { animation: heroFade 1.1s 0.30s both ease-out; } .hero .hero__ctas { animation: heroFade 1.1s 0.45s both ease-out; } .hero .hero__meta { animation: heroFade 1.1s 0.65s both ease-out; } } @keyframes heroFade { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } } /* Header visibility guarantees */ .site-header { position: relative; z-index: 100; background: color-mix(in oklab, var(--paper) 92%, transparent); backdrop-filter: none; -webkit-backdrop-filter: none; border-bottom: 1px solid var(--line-soft); transition: background .3s ease, color .3s ease, border-color .3s ease; } .site-header .brand, .site-header .navlink, .site-header .cart-btn, .site-header .wa-link { color: var(--ink); } .site-header .brand-mark { border-color: var(--brass); color: var(--brass); background: transparent; } .site-header .brand-mark--logo, .site-header.is-transparent .brand-mark--logo { border: 0; background: transparent; } .site-header.is-transparent { background: transparent; border-bottom-color: transparent; } .site-header.is-transparent .brand, .site-header.is-transparent .navlink, .site-header.is-transparent .cart-btn, .site-header.is-transparent .wa-link { color: var(--paper); } .site-header.is-transparent .brand-mark { border-color: rgba(244,239,230,0.55); color: var(--paper); } .site-header.is-transparent .cart-count { background: var(--paper); color: var(--ink); } .nav { display: flex; align-items: center; justify-content: space-between; gap: 32px; min-height: 76px; } .nav-main { display: block; } .nav-links { display: flex; gap: clamp(18px, 2.6vw, 36px); list-style: none; margin: 0; padding: 0; } .nav-utility { display: flex; align-items: center; gap: 20px; } .wa-link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; transition: color .2s; } .wa-link svg { width: 16px; height: 16px; } .cart-btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; } .cart-count { display: inline-flex; align-items: center; justify-content: center; min-width: 20px; height: 20px; padding: 0 6px; border-radius: 999px; background: var(--ink); color: var(--paper); font-family: var(--mono); font-size: 11px; } /* Mobile burger */ .nav-burger { display: none; width: 40px; height: 40px; padding: 0; border: 0; background: transparent; align-items: center; justify-content: center; flex-direction: column; cursor: pointer; color: inherit; } .nav-burger span { display: block; width: 22px; height: 1.5px; background: currentColor; margin: 3px 0; transition: transform .25s; } @media (max-width: 900px) { .nav-main, .wa-link .wa-text { display: none; } .nav-burger { display: inline-flex; } .nav-utility { gap: 12px; } } @media (max-width: 640px) { .brand-word small { display: none; } } /* Mobile drawer */ .mobile-drawer { position: fixed; inset: 0; z-index: 200; display: block; } .mobile-drawer[hidden] { display: none; } .mobile-drawer__scrim { position: absolute; inset: 0; z-index: 0; background: rgba(11,15,12,0.55); animation: fadeIn .25s ease; } .mobile-drawer__panel { position: absolute; z-index: 1; top: 0; right: 0; bottom: 0; width: min(360px, 88vw); background: var(--paper); color: var(--ink); padding: 32px 28px; display: flex; flex-direction: column; gap: 20px; box-shadow: -20px 0 60px -20px rgba(11,15,12,0.35); animation: slideIn .3s ease; } @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } @keyframes slideIn { from { transform: translateX(30px); opacity: 0; } to { transform: none; opacity: 1; } } .mobile-drawer__close { position: absolute; top: 14px; right: 18px; width: 44px; height: 44px; border: 0; background: transparent; font-size: 32px; line-height: 1; color: var(--ink); cursor: pointer; } .mobile-drawer__links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; } .mobile-drawer__links > li > a { display: block; padding: 14px 0; font-family: var(--serif); font-size: 22px; font-weight: 400; border-bottom: 1px solid var(--line-soft); color: var(--ink); } .mobile-drawer__wa a { margin-top: 16px !important; padding: 14px 16px !important; border: 1px solid var(--brass) !important; color: var(--ink) !important; font-family: var(--mono) !important; font-size: 11px !important; letter-spacing: 0.18em !important; text-transform: uppercase; display: inline-flex !important; align-items: center; gap: 10px; background: transparent; } .mobile-drawer__wa a svg { width: 16px; height: 16px; } body.nav-open { overflow: hidden; } /* Card hover motion polish */ .pkg-card { transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease; } .pkg-card:hover { transform: translateY(-4px); box-shadow: 0 30px 80px -40px rgba(30,42,34,0.35); border-color: var(--brass); } .pkg-card__media { overflow: hidden; } .pkg-card__media img { transition: transform 1.2s ease; } .pkg-card:hover .pkg-card__media img { transform: scale(1.05); } @media (prefers-reduced-motion: reduce) { .pkg-card { transition: none; } .pkg-card:hover { transform: none; box-shadow: none; } .pkg-card__media img { transition: none; } .pkg-card:hover .pkg-card__media img { transform: none; } .hero__bg { animation: none !important; } }