:root {
  --v2-bg: #07090a;
  --v2-bg-soft: #0d1214;
  --v2-surface: #121719;
  --v2-surface-2: #182024;
  --v2-gold: #caa66a;
  --v2-bronze: #9b7540;
  --v2-cream: #f4efe3;
  --v2-muted: #b9afa0;
  --v2-line: rgba(244, 239, 227, 0.13);
  --v2-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --v2-radius: 8px;
  --v2-serif: "Cormorant Garamond", Georgia, serif;
  --v2-signature: "Allura", "Brush Script MT", cursive;
  --v2-sans: "Inter", Arial, sans-serif;
  --v2-fast: 180ms ease;
  --v2-slow: 520ms ease;
  --v2-content: min(1180px, calc(100vw - 40px));
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { background: var(--v2-bg); color: var(--v2-cream); scroll-behavior: smooth; }
body { margin: 0; background: radial-gradient(circle at top, rgba(202, 166, 106, 0.08), transparent 34rem), var(--v2-bg); color: var(--v2-cream); font-family: var(--v2-sans); overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
:focus-visible { outline: 2px solid var(--v2-gold); outline-offset: 4px; }

.v2-header { position: fixed; inset: 0 0 auto; z-index: 50; transition: background var(--v2-fast), border-color var(--v2-fast), backdrop-filter var(--v2-fast); border-bottom: 1px solid transparent; }
.v2-header.is-solid, body:not(.home) .v2-header { background: rgba(7, 9, 10, 0.9); border-color: var(--v2-line); backdrop-filter: blur(16px); }
.v2-nav-shell { width: var(--v2-content); height: 78px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.v2-logo { display: inline-flex; align-items: center; gap: 12px; font-weight: 700; letter-spacing: 0; text-transform: uppercase; }
.v2-logo img { width: 58px; height: auto; }
.v2-logo span { line-height: 0.95; font-size: 1.35rem; }
.v2-logo em { display: block; color: var(--v2-gold); font-style: normal; font-size: 0.72rem; letter-spacing: 0.28em; }
.v2-logo.logo-version-2 img { width: auto; height: 62px; max-width: 148px; object-fit: contain; }
.v2-footer-logo.logo-version-2 img { width: auto; height: 128px; max-width: 240px; object-fit: contain; }
.v2-nav { display: flex; align-items: center; gap: 26px; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.v2-nav a { color: rgba(244, 239, 227, 0.88); transition: color var(--v2-fast); }
.v2-nav a:hover, .v2-nav a.active { color: var(--v2-gold); }
.v2-nav a.active::after { content: ""; display: block; height: 1px; margin-top: 8px; background: var(--v2-gold); }
.v2-icon-link { position: relative; display: inline-flex; align-items: center; }
.v2-icon-link svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.v2-icon-link span { position: absolute; top: -10px; right: -12px; min-width: 18px; height: 18px; padding: 0 5px; border-radius: 999px; background: var(--v2-gold); color: #111; font-size: 0.7rem; display: grid; place-items: center; }
.v2-menu-button { display: none; width: 44px; height: 44px; border: 1px solid var(--v2-line); background: rgba(7, 9, 10, 0.42); color: var(--v2-cream); border-radius: var(--v2-radius); }
.v2-menu-button span { display: block; width: 20px; height: 2px; margin: 5px auto; background: currentColor; }

.v2-main { min-height: 100vh; }
.v2-hero { min-height: 690px; height: 88vh; display: grid; align-items: center; position: relative; background-image: linear-gradient(90deg, rgba(7, 9, 10, 0.92), rgba(7, 9, 10, 0.35) 42%, rgba(7, 9, 10, 0.15)), var(--hero-image); background-size: cover; background-position: center; }
.v2-hero::after, .v2-page-hero::after { content: ""; position: absolute; inset: auto 0 0; height: 32%; background: linear-gradient(transparent, var(--v2-bg)); pointer-events: none; }
.v2-hero-inner { width: var(--v2-content); margin: 0 auto; padding-top: 76px; position: relative; z-index: 1; }
.v2-kicker, .v2-section-heading span { display: block; color: var(--v2-gold); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; }
.v2-hero h1, .v2-page-hero h1, .v2-section-heading h2, .v2-print-promo h2, .v2-photo-header h1, .v2-print-shop h2 { margin: 12px 0; font-family: var(--v2-serif); font-weight: 600; letter-spacing: 0; line-height: 0.93; }
.v2-hero h1 { max-width: 620px; font-size: clamp(4.5rem, 11vw, 8.4rem); }
.v2-hero p { max-width: 430px; color: rgba(244, 239, 227, 0.86); line-height: 1.75; }
.v2-actions { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 30px; }
.v2-btn { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 0 24px; border: 1px solid var(--v2-gold); border-radius: 2px; background: linear-gradient(135deg, var(--v2-gold), #b88d4d); color: #0c0d0d; font-weight: 800; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; transition: transform var(--v2-fast), background var(--v2-fast); }
.v2-btn:hover { transform: translateY(-2px); }
.v2-btn-outline { background: rgba(7, 9, 10, 0.35); color: var(--v2-cream); }
.v2-signature { margin-top: 58px; font-family: var(--v2-signature); font-size: clamp(2.65rem, 5vw, 4rem); color: var(--v2-gold) !important; line-height: 0.9; text-transform: none; }
.v2-signature span { display: block; margin-top: 2px; font-family: var(--v2-sans); font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--v2-muted); }

.v2-section { width: var(--v2-content); margin: 0 auto; padding: 70px 0; }
.v2-category-band { margin-top: -20px; padding-top: 0; position: relative; z-index: 2; }
.v2-category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.v2-category-card, .v2-photo-card { position: relative; min-height: 235px; overflow: hidden; border-radius: var(--v2-radius); background: var(--v2-surface); box-shadow: var(--v2-shadow); isolation: isolate; }
.v2-category-card img, .v2-photo-card img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: transform var(--v2-slow); }
.v2-category-card:hover img, .v2-photo-card:hover img { transform: scale(1.045); }
.v2-category-card span, .v2-card-shade { position: absolute; inset: 0; background: linear-gradient(transparent 25%, rgba(0, 0, 0, 0.82)); z-index: 1; }
.v2-category-card strong, .v2-category-card small, .v2-photo-card strong, .v2-photo-meta, .v2-print-dot { position: absolute; left: 22px; right: 22px; z-index: 2; }
.v2-category-card strong { bottom: 58px; text-transform: uppercase; letter-spacing: 0.08em; }
.v2-category-card small { bottom: 24px; color: var(--v2-muted); line-height: 1.4; }
.v2-section-heading { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 18px; margin-bottom: 26px; }
.v2-section-heading span { grid-column: 1 / -1; }
.v2-section-heading h2 { margin: 0; font-size: clamp(2.2rem, 5vw, 3.6rem); }
.v2-section-heading a { color: var(--v2-gold); text-transform: uppercase; font-size: 0.75rem; letter-spacing: 0.14em; font-weight: 700; }
.v2-photo-grid, .v2-masonry { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.v2-masonry { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.v2-photo-card { min-height: 310px; }
.v2-section .v2-photo-grid .v2-photo-card { min-height: 310px; aspect-ratio: 4 / 5; }
.v2-photo-card.is-large { grid-column: span 2; min-height: 390px; }
.v2-photo-meta { bottom: 54px; color: var(--v2-gold); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; }
.v2-photo-card strong { bottom: 26px; font-size: 1rem; }
.v2-print-dot { top: 18px; left: auto; right: 18px; width: max-content; padding: 7px 10px; border: 1px solid rgba(202, 166, 106, 0.45); background: rgba(7, 9, 10, 0.65); color: var(--v2-cream); border-radius: 999px; font-size: 0.7rem; }
.v2-empty { padding: 30px; border: 1px solid var(--v2-line); color: var(--v2-muted); background: rgba(255,255,255,0.03); }
.success, .newsletter-success { padding: 14px 16px; border: 1px solid rgba(202, 166, 106, 0.35); background: rgba(202, 166, 106, 0.12); color: var(--v2-cream); }
.error-message, .newsletter-message.error { padding: 14px 16px; border: 1px solid rgba(220, 90, 70, 0.45); background: rgba(220, 90, 70, 0.12); color: #ffd8d0; }

.v2-journal-grid, .v2-journal-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.v2-journal-list { grid-template-columns: repeat(2, 1fr); }
.v2-journal-card { display: grid; grid-template-columns: 150px 1fr; gap: 18px; align-items: center; }
.v2-journal-card img { width: 150px; aspect-ratio: 1 / 1; object-fit: cover; border-radius: var(--v2-radius); }
.v2-journal-card span { color: var(--v2-gold); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; }
.v2-journal-card h3 { margin: 8px 0; font-family: var(--v2-serif); font-size: 1.55rem; line-height: 1.05; }
.v2-journal-card p { margin: 0; color: var(--v2-muted); line-height: 1.55; }
.v2-journal-grid .v2-journal-card { position: relative; min-height: 320px; display: block; overflow: hidden; border-radius: var(--v2-radius); background: var(--v2-surface); box-shadow: var(--v2-shadow); isolation: isolate; }
.v2-journal-grid .v2-journal-card > a:first-child { position: absolute; inset: 0; z-index: 0; }
.v2-journal-grid .v2-journal-card img { width: 100%; height: 100%; aspect-ratio: auto; border-radius: 0; object-fit: cover; transition: transform var(--v2-slow); }
.v2-journal-grid .v2-journal-card:hover img { transform: scale(1.045); }
.v2-journal-grid .v2-journal-card::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(0,0,0,0.06), rgba(0,0,0,0.78) 62%, rgba(0,0,0,0.92)); pointer-events: none; }
.v2-journal-grid .v2-journal-card > div { position: absolute; left: 22px; right: 22px; bottom: 22px; z-index: 2; }
.v2-journal-grid .v2-journal-card h3 { font-size: 1.6rem; }
.v2-journal-grid .v2-journal-card p { display: -webkit-box; overflow: hidden; -webkit-line-clamp: 3; -webkit-box-orient: vertical; color: rgba(244,239,227,0.78); }

.v2-print-promo, .v2-print-shop { width: var(--v2-content); margin: 40px auto 80px; display: grid; grid-template-columns: 1fr 420px; gap: 48px; align-items: center; padding: 42px; border: 1px solid var(--v2-line); background: linear-gradient(135deg, rgba(202, 166, 106, 0.1), rgba(255,255,255,0.03)); }
.v2-print-promo h2, .v2-print-shop h2 { font-size: clamp(2.3rem, 5vw, 4rem); }
.v2-print-promo p, .v2-print-shop p { color: var(--v2-muted); line-height: 1.75; }
.v2-print-promo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--v2-radius); }

.v2-page-hero { min-height: 470px; display: grid; align-items: end; position: relative; padding: 130px max(20px, calc((100vw - 1180px) / 2)) 80px; background-image: linear-gradient(90deg, rgba(7, 9, 10, 0.86), rgba(7, 9, 10, 0.35)), var(--hero-image); background-size: cover; background-position: center; }
.v2-page-hero > div { position: relative; z-index: 1; max-width: 760px; }
.v2-page-hero h1 { font-size: clamp(3.4rem, 8vw, 7rem); }
.v2-page-hero p { max-width: 620px; color: var(--v2-muted); line-height: 1.7; }
.v2-simple-content { max-width: 900px; line-height: 1.8; color: var(--v2-muted); }
.v2-simple-content h2 { color: var(--v2-cream); font-family: var(--v2-serif); font-size: 2.4rem; }
.v2-about-grid, .v2-contact-grid, .v2-contact-stack, .v2-rps { display: grid; grid-template-columns: 1fr 360px; gap: 42px; align-items: center; }
.v2-about-grid img, .v2-rps img { width: 100%; border-radius: var(--v2-radius); }
.v2-rps { margin-top: 48px; padding: 24px; border: 1px solid var(--v2-line); background: var(--v2-surface); grid-template-columns: 220px 1fr; }
.v2-contact-grid { max-width: 1040px; grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr); gap: clamp(42px, 7vw, 92px); align-items: start; }
.v2-contact-grid a { color: var(--v2-gold); }
.v2-contact-stack { max-width: 780px; grid-template-columns: 1fr; gap: 30px; align-items: start; margin: 0 auto; }
.v2-contact-stack a { color: var(--v2-gold); }
.v2-contact-intro { max-width: 620px; }
.v2-contact-stack form, .v2-contact-grid form { padding: clamp(28px, 4vw, 42px); }
.v2-contact-stack form label, .v2-contact-grid form label { display: grid; gap: 9px; margin-bottom: 18px; color: var(--v2-muted); }
.v2-contact-stack form input, .v2-contact-stack form textarea, .v2-contact-grid form input, .v2-contact-grid form textarea { min-height: 54px; }
.v2-contact-stack form textarea, .v2-contact-grid form textarea { min-height: 210px; resize: vertical; }
.v2-contact-stack form .v2-btn, .v2-contact-grid form .v2-btn { width: auto; min-width: 180px; margin-top: 6px; }
.v2-simple-content form, .v2-simple-content .cart-inner, .v2-simple-content .order-status-shell { background: var(--v2-surface); border: 1px solid var(--v2-line); padding: 28px; border-radius: var(--v2-radius); }
.cart-page, .order-status-page, .free-checkout-form, .review-page, .reviews-page { width: var(--v2-content); margin: 0 auto; padding: 130px 0 80px; color: var(--v2-muted); }
.cart-inner, .order-status-shell, .free-checkout-form, .review-card, .reviews-shell { background: var(--v2-surface); border: 1px solid var(--v2-line); padding: 28px; border-radius: var(--v2-radius); }
.cart-page h1, .order-status-page h1, .free-checkout-form h1, .review-page h1, .reviews-page h1 { color: var(--v2-cream); font-family: var(--v2-serif); font-size: clamp(2.6rem, 6vw, 4rem); }
.cart-item, .cart-summary, .order-status-item, .order-status-summary div { border-top: 1px solid var(--v2-line); padding: 18px 0; }
.cart-frame-preview img, .order-status-item img { width: 120px; border-radius: var(--v2-radius); }
.voucher-row, .cart-summary, .cart-item { display: flex; gap: 18px; align-items: center; justify-content: space-between; }
.cart-remove { color: var(--v2-gold); }
.v2-simple-content input, .v2-simple-content textarea, .v2-newsletter input, .v2-print-form input[type="text"] { width: 100%; background: #090c0d; border: 1px solid var(--v2-line); color: var(--v2-cream); padding: 13px 14px; border-radius: 2px; }
.cart-page input, .order-status-page input, .free-checkout-form input, .review-page input, .review-page textarea { background: #090c0d; border: 1px solid var(--v2-line); color: var(--v2-cream); padding: 13px 14px; border-radius: 2px; }
.cart-page .btn, .order-status-page .btn, .free-checkout-form .btn, .review-page .btn { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 0 24px; border: 1px solid var(--v2-gold); background: var(--v2-gold); color: #111; font-weight: 800; text-transform: uppercase; }
.v2-simple-content button, .v2-newsletter button { cursor: pointer; }

.v2-breadcrumb, .v2-photo-header, .v2-photo-detail { width: var(--v2-content); margin: 0 auto; }
.v2-breadcrumb { padding-top: 115px; color: var(--v2-muted); font-size: 0.85rem; display: flex; gap: 10px; flex-wrap: wrap; }
.v2-photo-header { padding: 34px 0; display: flex; align-items: end; justify-content: space-between; gap: 20px; }
.v2-photo-header h1 { font-size: clamp(3rem, 7vw, 6.5rem); }
.v2-photo-stage { width: fit-content; max-width: calc(100vw - 32px); margin: 0 auto; position: relative; line-height: 0; }
.v2-photo-stage img { width: auto; max-width: 100%; height: auto; max-height: 82vh; object-fit: contain; background: transparent; }
.v2-photo-stage figcaption { position: absolute; right: 18px; bottom: 14px; color: rgba(244,239,227,0.72); font-size: 0.75rem; line-height: 1; text-shadow: 0 1px 5px rgba(0,0,0,0.9); pointer-events: none; }
.v2-photo-detail { padding: 56px 0; display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 48px; }
.v2-prose { color: var(--v2-muted); font-size: 1.05rem; line-height: 1.85; }
.v2-prose p { margin-top: 12px; }
.v2-post > .v2-prose { width: min(760px, calc(100vw - 40px)); margin: 0 auto; padding: 72px 0; color: rgba(244,239,227,0.84); }
.v2-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.v2-tags a { padding: 8px 12px; border: 1px solid var(--v2-line); color: var(--v2-cream); border-radius: 999px; font-size: 0.8rem; }
.v2-spec-panel { border: 1px solid var(--v2-line); background: var(--v2-surface); padding: 24px; align-self: start; }
.v2-spec-panel h2 { margin: 0 0 16px; font-family: var(--v2-serif); font-size: 2rem; }
.v2-spec-panel div { padding: 14px 0; border-top: 1px solid var(--v2-line); }
.v2-spec-panel span { display: block; color: var(--v2-muted); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; }
.v2-spec-panel strong { display: block; margin-top: 4px; }
.v2-print-preview { --v2-frame-colour: transparent; padding: 0; background: transparent; border: 0; transition: padding var(--v2-fast), background var(--v2-fast), border-color var(--v2-fast); }
.v2-print-preview.is-framed { padding: 0; background: transparent; border: 18px solid var(--v2-frame-colour); box-shadow: 0 24px 80px rgba(0,0,0,0.35); }
.v2-print-preview[data-frame="Black"] { --v2-frame-colour: #090909; }
.v2-print-preview[data-frame="Natural"] { --v2-frame-colour: #b99464; }
.v2-print-preview[data-frame="White"] { --v2-frame-colour: #f4efe5; }
.v2-print-preview img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; transition: box-shadow var(--v2-fast); }
.v2-print-preview.is-framed img { box-shadow: inset 0 0 0 1px rgba(0,0,0,0.22); }
.v2-print-preview.portrait img { aspect-ratio: 2 / 3; width: min(65%, 260px); margin: 0 auto; }
.v2-print-form fieldset { margin: 0 0 22px; padding: 0; border: 0; display: grid; gap: 10px; }
.v2-print-form legend { margin-bottom: 10px; color: var(--v2-gold); text-transform: uppercase; font-size: 0.78rem; letter-spacing: 0.12em; }
.v2-print-form label { display: flex; align-items: center; gap: 12px; padding: 14px; border: 1px solid var(--v2-line); background: rgba(255,255,255,0.03); cursor: pointer; }
.v2-print-form input { accent-color: var(--v2-gold); }
.v2-print-total { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; border-top: 1px solid var(--v2-line); color: var(--v2-muted); }
.v2-print-total strong { color: var(--v2-cream); font-size: 2rem; font-family: var(--v2-serif); }

.v2-footer { background: #080b0c; border-top: 1px solid var(--v2-line); padding: 52px 0 26px; }
.v2-footer-grid, .v2-footer-bottom { width: var(--v2-content); margin: 0 auto; }
.v2-footer-grid { display: grid; grid-template-columns: 1.4fr 0.8fr 0.9fr 1.3fr; gap: 46px; }
.v2-footer p { color: var(--v2-muted); line-height: 1.7; }
.v2-footer h2 { margin: 0 0 18px; color: var(--v2-gold); font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; }
.v2-footer a, .v2-footer button { display: block; margin: 0 0 12px; color: var(--v2-muted); background: none; border: 0; padding: 0; text-align: left; cursor: pointer; }
.v2-footer a:hover, .v2-footer button:hover { color: var(--v2-gold); }
.v2-footer-logo { margin-bottom: 18px; }
.v2-socials { display: flex; gap: 16px; }
.v2-socials a { color: var(--v2-gold); }
.v2-newsletter label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.v2-newsletter div { display: grid; grid-template-columns: 1fr auto; border: 1px solid var(--v2-line); }
.v2-newsletter input { border: 0; border-radius: 0; }
.v2-newsletter button { margin: 0; padding: 0 18px; background: var(--v2-gold); color: #101010; font-weight: 800; text-transform: uppercase; font-size: 0.78rem; }
.v2-footer-bottom { margin-top: 42px; padding-top: 22px; border-top: 1px solid var(--v2-line); display: flex; justify-content: space-between; gap: 20px; color: var(--v2-muted); font-size: 0.84rem; }
.v2-footer-bottom span:last-child { display: flex; gap: 18px; flex-wrap: wrap; }

@media (max-width: 900px) {
  .v2-menu-button { display: block; }
  .v2-nav { position: absolute; left: 20px; right: 20px; top: 82px; display: none; padding: 20px; background: rgba(7, 9, 10, 0.96); border: 1px solid var(--v2-line); flex-direction: column; align-items: flex-start; }
  .v2-nav.is-open { display: flex; }
  .v2-hero { min-height: 620px; height: auto; }
  .v2-hero h1 { font-size: clamp(4rem, 18vw, 6rem); }
  .v2-category-grid, .v2-photo-grid, .v2-masonry, .v2-journal-grid, .v2-journal-list, .v2-print-promo, .v2-print-shop, .v2-photo-detail, .v2-footer-grid { grid-template-columns: 1fr; }
  .v2-about-grid, .v2-contact-grid, .v2-contact-stack, .v2-rps { grid-template-columns: 1fr; }
  .v2-contact-grid, .v2-contact-stack { max-width: 680px; }
  .v2-photo-card.is-large { grid-column: auto; }
  .v2-section-heading { grid-template-columns: 1fr; }
  .v2-journal-card { grid-template-columns: 112px 1fr; }
  .v2-journal-card img { width: 112px; }
  .v2-print-promo, .v2-print-shop { padding: 24px; }
  .v2-photo-header { display: block; }
  .v2-footer-bottom { flex-direction: column; }
}

@media (max-width: 560px) {
  :root { --v2-content: min(100vw - 28px, 1180px); }
  .v2-nav-shell { height: 70px; }
  .v2-logo img { width: 46px; }
  .v2-logo.logo-version-2 img { width: auto; height: 50px; max-width: 112px; }
  .v2-logo span { font-size: 1.05rem; }
  .v2-hero { padding-top: 70px; background-image: linear-gradient(90deg, rgba(7, 9, 10, 0.9), rgba(7, 9, 10, 0.46)), var(--hero-image); }
  .v2-actions { flex-direction: column; align-items: stretch; }
  .v2-btn { width: 100%; }
  .v2-page-hero { min-height: 390px; padding-top: 110px; padding-bottom: 56px; }
  .v2-journal-card { grid-template-columns: 1fr; }
  .v2-journal-card img { width: 100%; aspect-ratio: 16 / 10; }
  .v2-photo-card, .v2-category-card { min-height: 270px; }
  .v2-newsletter div { grid-template-columns: 1fr; }
  .v2-newsletter button { min-height: 44px; justify-content: center; text-align: center; }
  .v2-contact-grid form, .v2-contact-stack form { padding: 22px; }
  .v2-contact-grid form .v2-btn, .v2-contact-stack form .v2-btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 1ms !important; scroll-behavior: auto !important; transition-duration: 1ms !important; }
}
