/*
Theme Name: ORIENS
Theme URI: https://oriens.example
Author: ORIENS Studio
Description: Light from the East. A bespoke luxury WooCommerce theme for ORIENS — feng shui jewelry & energy alignment décor. Morning-mist white, champagne gold, ink black.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: oriens
Tags: e-commerce, woocommerce, custom-menu, featured-images
*/

/* =========================================================
   1. Tokens & base
   ========================================================= */
:root {
  --bg: #f6f3ec;
  --bg-soft: #efeade;
  --ink: #15171b;
  --ink-soft: #43474e;
  --ink-mute: #7c7f86;
  --gold: #b9995c;
  --gold-deep: #96793f;
  --gold-pale: #e4d5b4;
  --line: #e3dccd;
  --line-dark: #2c2f35;
  --white: #ffffff;
  --danger: #a4442f;
  --font-serif: 'Cormorant Garamond', 'Songti SC', Georgia, serif;
  --font-sans: 'Jost', 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
  --header-h: 76px;
  --radius: 2px;
  --shadow-soft: 0 20px 60px -30px rgba(21, 23, 27, 0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 16.5px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease), opacity .25s var(--ease); }
a:hover { color: var(--gold-deep); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.18;
  margin: 0 0 .5em;
  color: var(--ink);
}
h1 { font-size: clamp(2.6rem, 5.2vw, 4.4rem); }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.9rem); }
h4 { font-size: 1.25rem; }

p { margin: 0 0 1.2em; }
::selection { background: var(--gold); color: var(--white); }

.container { width: min(1280px, calc(100% - 48px)); margin-inline: auto; }
.container-wide { width: min(1440px, calc(100% - 40px)); margin-inline: auto; }

.screen-reader-text {
  border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
  height: 1px; width: 1px; margin: -1px; overflow: hidden;
  padding: 0; position: absolute !important; word-wrap: normal !important;
}

/* Kicker — small uppercase gold label */
.kicker {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 11px; font-weight: 500; letter-spacing: .42em;
  text-transform: uppercase; color: var(--gold-deep);
  margin-bottom: 18px;
}
.kicker::before { content: ""; width: 34px; height: 1px; background: var(--gold); }
.kicker.center::after { content: ""; width: 34px; height: 1px; background: var(--gold); }

.section { padding: clamp(72px, 9vw, 128px) 0; }
.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 64px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .lead { color: var(--ink-soft); font-size: 1.05rem; }

/* Buttons */
.btn, .button, button.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 36px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-sans); font-size: 12px; font-weight: 500;
  letter-spacing: .28em; text-transform: uppercase;
  border: 1px solid var(--ink); border-radius: var(--radius);
  cursor: pointer; transition: all .35s var(--ease);
}
.btn:hover { background: var(--gold-deep); border-color: var(--gold-deep); color: var(--white); }
.btn-gold { background: var(--gold); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-deep); border-color: var(--gold-deep); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--white); }
.btn-ghost-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.55); }
.btn-ghost-light:hover { background: var(--white); color: var(--ink); border-color: var(--white); }

.text-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 500; letter-spacing: .26em; text-transform: uppercase;
  color: var(--gold-deep); border-bottom: 1px solid var(--gold-pale); padding-bottom: 6px;
}
.text-link svg { transition: transform .3s var(--ease); }
.text-link:hover svg { transform: translateX(5px); }

/* Reveal on scroll (JS adds .reveal + stagger delay, removes it after it played) */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
ul.products li.product.reveal {
  transition: opacity .8s var(--ease), transform .8s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}

/* Image fade-in once loaded (pairs with native lazy loading) */
img.lazy-fade { opacity: 0; transition: opacity .7s ease; }
img.lazy-fade.is-loaded { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .reveal, ul.products li.product.reveal { opacity: 1; transform: none; transition: none; }
  img.lazy-fade { opacity: 1; transition: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   2. Announcement bar + header
   ========================================================= */
.announce {
  background: var(--ink); color: rgba(255,255,255,.85);
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  text-align: center; padding: 10px 16px;
}
.announce b, .announce strong { color: var(--gold-pale); font-weight: 500; }

.site-header {
  position: sticky; top: 0; z-index: 500;
  background: rgba(246, 243, 236, .92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 28px; height: var(--header-h);
}

/* Brand */
.brand { display: inline-flex; align-items: center; gap: 13px; }
.brand svg.brand-mark { width: 44px; height: 30px; flex: none; }
.brand .brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand .brand-name {
  font-family: var(--font-serif); font-size: 27px; font-weight: 700;
  letter-spacing: .34em; color: var(--ink); text-indent: .17em;
}
.brand .brand-tag {
  font-size: 8.5px; letter-spacing: .48em; text-transform: uppercase;
  color: var(--gold-deep); margin-top: 6px;
}
.brand-mark .mark-sun { stroke: var(--gold); }
.brand-mark .mark-ray { stroke: var(--gold); }
.brand-mark .mark-horizon { stroke: var(--ink); }

/* Primary nav */
.main-nav { display: flex; align-items: center; }
.main-nav > ul { display: flex; align-items: center; gap: 34px; list-style: none; margin: 0; padding: 0; }
.main-nav a {
  font-size: 12px; font-weight: 400; letter-spacing: .24em; text-transform: uppercase;
  color: var(--ink); padding: 8px 0; position: relative;
}
.main-nav > ul > li > a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: var(--gold-deep); transition: right .35s var(--ease);
}
.main-nav > ul > li > a:hover::after,
.main-nav > ul > li.current-menu-item > a::after,
.main-nav > ul > li.current-menu-ancestor > a::after { right: 0; }

/* Dropdown */
.main-nav li { position: relative; }
.main-nav li.menu-item-has-children > a { padding-right: 16px; }
.main-nav li.menu-item-has-children > a::before {
  content: ""; position: absolute; right: 0; top: 50%;
  width: 6px; height: 6px; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor;
  transform: translateY(-70%) rotate(45deg);
}
.main-nav ul ul {
  position: absolute; top: calc(100% + 14px); left: -26px; min-width: 250px;
  background: var(--white); border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  list-style: none; margin: 0; padding: 14px 0;
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: all .3s var(--ease); z-index: 40;
}
.main-nav li:hover > ul, .main-nav li:focus-within > ul { opacity: 1; visibility: visible; transform: none; }
.main-nav ul ul::before {
  content: ""; position: absolute; top: -15px; left: 0; right: 0; height: 15px;
}
.main-nav ul ul a {
  display: block; padding: 9px 26px; letter-spacing: .16em; font-size: 11.5px;
  color: var(--ink-soft);
}
.main-nav ul ul a:hover { color: var(--gold-deep); background: var(--bg); }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 20px; }
.header-icon {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; color: var(--ink);
}
.header-icon svg { width: 20px; height: 20px; }
.header-icon:hover { color: var(--gold-deep); }
.cart-count {
  position: absolute; top: 1px; right: -1px; min-width: 16px; height: 16px;
  background: var(--gold-deep); color: var(--white);
  font-size: 9.5px; font-weight: 500; line-height: 16px; text-align: center;
  border-radius: 99px; padding: 0 4px;
}

/* Burger */
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span { display: block; height: 1.5px; background: var(--ink); transition: all .3s var(--ease); }

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0 auto 0 0; width: min(400px, 88vw); z-index: 900;
  background: var(--bg); border-right: 1px solid var(--line);
  transform: translateX(-102%); transition: transform .45s var(--ease);
  display: flex; flex-direction: column; overflow-y: auto;
}
.drawer.open { transform: none; }
.drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 26px; border-bottom: 1px solid var(--line);
}
.drawer-close { background: none; border: 0; cursor: pointer; padding: 8px; color: var(--ink); }
.drawer nav { padding: 18px 0; }
.drawer nav ul { list-style: none; margin: 0; padding: 0; }
.drawer nav a {
  display: block; padding: 13px 30px;
  font-size: 13px; letter-spacing: .24em; text-transform: uppercase;
}
.drawer nav ul ul a { padding-left: 48px; font-size: 12px; color: var(--ink-soft); letter-spacing: .18em; }
.drawer-foot { margin-top: auto; padding: 26px 30px; border-top: 1px solid var(--line); font-size: 13px; color: var(--ink-soft); }
.drawer-foot a { display: block; padding: 4px 0; }
.drawer-backdrop {
  position: fixed; inset: 0; z-index: 890; background: rgba(21,23,27,.5);
  opacity: 0; visibility: hidden; transition: all .4s var(--ease);
}
.drawer-backdrop.show { opacity: 1; visibility: visible; }
body.drawer-open { overflow: hidden; }

@media (max-width: 1024px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .brand .brand-tag { display: none; }
  .brand .brand-name { font-size: 23px; }
}

/* =========================================================
   3. Hero
   ========================================================= */
.hero {
  position: relative; min-height: calc(100svh - var(--header-h) - 40px);
  display: flex; align-items: center;
  background: var(--ink);
  color: var(--white); overflow: hidden;
}
.hero-bg { position: absolute; inset: -8% 0; will-change: transform; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 62%;
  animation: heroZoom 12s var(--ease) forwards;
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero-inner > * { animation: heroRise .9s var(--ease) both; }
.hero-inner > *:nth-child(2) { animation-delay: .15s; }
.hero-inner > *:nth-child(3) { animation-delay: .3s; }
.hero-inner > *:nth-child(4) { animation-delay: .45s; }
@keyframes heroRise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .hero-bg img, .hero-inner > * { animation: none; }
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(15,16,20,.62) 0%, rgba(15,16,20,.28) 46%, rgba(15,16,20,.05) 100%);
}
.hero-inner { position: relative; z-index: 2; padding: 120px 0; max-width: 720px; }
.hero .kicker { color: var(--gold-pale); }
.hero .kicker::before { background: var(--gold-pale); }
.hero h1 { color: var(--white); font-weight: 500; margin-bottom: 22px; }
.hero h1 em { font-style: italic; color: var(--gold-pale); }
.hero p.hero-sub { font-size: 1.12rem; color: rgba(255,255,255,.82); max-width: 540px; margin-bottom: 40px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 10px; letter-spacing: .4em; text-transform: uppercase; color: rgba(255,255,255,.65);
}
.hero-scroll::after {
  content: ""; width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--gold-pale), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100% { opacity: .35; } 50% { opacity: 1; } }

/* =========================================================
   4. USP strip
   ========================================================= */
.usp-strip { background: var(--white); border-bottom: 1px solid var(--line); }
.usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.usp {
  display: flex; align-items: center; gap: 16px;
  padding: 30px 28px; border-left: 1px solid var(--line);
}
.usp:first-child { border-left: 0; }
.usp svg { width: 30px; height: 30px; color: var(--gold-deep); flex: none; }
.usp b { display: block; font-weight: 500; font-size: 13.5px; letter-spacing: .12em; text-transform: uppercase; }
.usp span { font-size: 12.5px; color: var(--ink-mute); }
@media (max-width: 1024px) { .usp-grid { grid-template-columns: 1fr 1fr; } .usp:nth-child(3) { border-left: 0; } .usp { border-top: 1px solid var(--line); } .usp:nth-child(-n+2) { border-top: 0; } }
@media (max-width: 620px) { .usp-grid { grid-template-columns: 1fr; } .usp { border-left: 0 !important; } .usp:nth-child(2) { border-top: 1px solid var(--line); } }

/* =========================================================
   5. Collections mosaic
   ========================================================= */
.collections-grid {
  display: grid; gap: 22px;
  grid-template-columns: repeat(4, 1fr);
  grid-template-areas: "a a b c" "a a d e";
}
.col-card:nth-child(1) { grid-area: a; }
.col-card:nth-child(2) { grid-area: b; }
.col-card:nth-child(3) { grid-area: c; }
.col-card:nth-child(4) { grid-area: d; }
.col-card:nth-child(5) { grid-area: e; }

.col-card {
  position: relative; display: block; overflow: hidden;
  background: var(--ink); min-height: 300px; border-radius: var(--radius);
}
.col-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: .88; transition: transform 1.2s var(--ease), opacity .6s var(--ease);
}
.col-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,16,20,.78) 0%, rgba(15,16,20,.12) 55%, rgba(15,16,20,0) 100%);
}
.col-card:hover img { transform: scale(1.055); opacity: 1; }
.col-card-body {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 26px 28px; color: var(--white);
}
.col-card-body .cc-count {
  font-size: 10px; letter-spacing: .36em; text-transform: uppercase; color: var(--gold-pale);
  display: block; margin-bottom: 8px;
}
.col-card-body h3 { color: var(--white); font-weight: 500; margin: 0 0 4px; font-size: 1.6rem; }
.col-card:nth-child(1) .col-card-body h3 { font-size: 2.2rem; }
.col-card-body .cc-desc { font-size: 13px; color: rgba(255,255,255,.75); margin: 0; max-width: 420px; }
.col-card-body .cc-link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 14px;
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold-pale);
  opacity: 0; transform: translateY(6px); transition: all .4s var(--ease);
}
.col-card:hover .cc-link { opacity: 1; transform: none; }
@media (max-width: 1024px) {
  .collections-grid { grid-template-columns: 1fr 1fr; grid-template-areas: "a a" "b c" "d e"; }
  .col-card { min-height: 260px; }
  .col-card:nth-child(1) { min-height: 380px; }
}
@media (max-width: 620px) {
  .collections-grid { grid-template-columns: 1fr; grid-template-areas: "a" "b" "c" "d" "e"; }
}

/* =========================================================
   6. Story band (dark)
   ========================================================= */
.story-band { background: var(--ink); color: rgba(255,255,255,.8); overflow: hidden; }
.story-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
.story-media { position: relative; }
.story-media img { border-radius: var(--radius); box-shadow: 0 40px 80px -40px rgba(0,0,0,.8); }
.story-media::before {
  content: ""; position: absolute; inset: 24px -24px -24px 24px;
  border: 1px solid rgba(185,153,92,.35); border-radius: var(--radius); z-index: -0;
  pointer-events: none;
}
.story-band .kicker { color: var(--gold-pale); }
.story-band .kicker::before { background: var(--gold-pale); }
.story-band h2 { color: var(--white); font-weight: 500; }
.story-band h2 em { font-style: italic; color: var(--gold-pale); }
.story-band blockquote {
  margin: 28px 0; padding-left: 24px; border-left: 1px solid var(--gold);
  font-family: var(--font-serif); font-size: 1.35rem; font-style: italic; color: var(--gold-pale); line-height: 1.5;
}
@media (max-width: 900px) { .story-grid { grid-template-columns: 1fr; } .story-media::before { display: none; } }

/* =========================================================
   7. Method / rituals
   ========================================================= */
.method-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.method-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 46px 38px; position: relative; transition: all .4s var(--ease);
}
.method-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); border-color: var(--gold-pale); }
.method-card .m-num {
  font-family: var(--font-serif); font-size: 15px; font-style: italic; color: var(--gold-deep);
  display: block; margin-bottom: 22px;
}
.method-card svg { width: 44px; height: 44px; color: var(--gold-deep); margin-bottom: 24px; stroke-width: 1; }
.method-card h3 { font-size: 1.5rem; margin-bottom: 10px; }
.method-card p { font-size: 14.5px; color: var(--ink-soft); margin: 0; }
@media (max-width: 900px) { .method-grid { grid-template-columns: 1fr; } }

/* =========================================================
   8. Testimonials
   ========================================================= */
.quotes { background: var(--bg-soft); }
.quotes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.quote-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 40px 34px; display: flex; flex-direction: column; gap: 18px;
}
.quote-stars { color: var(--gold); letter-spacing: 4px; font-size: 14px; }
.quote-card p {
  font-family: var(--font-serif); font-size: 1.18rem; font-style: italic;
  line-height: 1.6; color: var(--ink); margin: 0; flex: 1;
}
.quote-who { font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-mute); }
.quote-who b { color: var(--ink); font-weight: 500; }
@media (max-width: 900px) { .quotes-grid { grid-template-columns: 1fr; } }

/* =========================================================
   9. Newsletter band
   ========================================================= */
.newsletter {
  background: var(--ink);
  background-image: radial-gradient(ellipse 70% 90% at 50% 115%, rgba(185,153,92,.28), transparent 60%);
  color: var(--white); text-align: center;
}
.newsletter h2 { color: var(--white); font-weight: 500; }
.newsletter p { color: rgba(255,255,255,.72); max-width: 520px; margin: 0 auto 34px; }
.nl-form { display: flex; max-width: 520px; margin: 0 auto; border: 1px solid rgba(255,255,255,.3); border-radius: var(--radius); overflow: hidden; }
.nl-form input[type="email"] {
  flex: 1; min-width: 0; padding: 16px 22px; background: transparent; border: 0; outline: 0;
  color: var(--white); font-family: var(--font-sans); font-size: 14px; letter-spacing: .06em;
}
.nl-form input::placeholder { color: rgba(255,255,255,.45); }
.nl-form button {
  padding: 16px 30px; background: var(--gold); color: var(--white); border: 0; cursor: pointer;
  font-size: 11px; font-weight: 500; letter-spacing: .3em; text-transform: uppercase;
  transition: background .3s var(--ease);
}
.nl-form button:hover { background: var(--gold-deep); }
.nl-done { margin-top: 16px; color: var(--gold-pale); font-size: 14px; display: none; }

/* =========================================================
   10. Footer
   ========================================================= */
.site-footer { background: #101216; color: rgba(255,255,255,.62); font-size: 14px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: clamp(32px, 5vw, 72px); padding: clamp(56px, 7vw, 88px) 0 56px; }
.footer-brand .brand-name { color: var(--white); }
.footer-brand .brand-mark .mark-horizon { stroke: rgba(255,255,255,.8); }
.footer-brand p.f-tagline {
  font-family: var(--font-serif); font-style: italic; font-size: 1.15rem;
  color: var(--gold-pale); margin: 20px 0 14px;
}
.footer-brand p { font-size: 13.5px; line-height: 1.8; }
.f-social { display: flex; gap: 12px; margin-top: 22px; }
.f-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%;
  color: rgba(255,255,255,.7);
}
.f-social a:hover { border-color: var(--gold); color: var(--gold-pale); }
.f-social svg { width: 15px; height: 15px; }
.footer-col h4 {
  color: var(--white); font-family: var(--font-sans); font-size: 11.5px; font-weight: 500;
  letter-spacing: .34em; text-transform: uppercase; margin-bottom: 24px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 11px; }
.footer-col a { color: rgba(255,255,255,.62); font-size: 13.5px; letter-spacing: .04em; }
.footer-col a:hover { color: var(--gold-pale); }
.footer-contact li { display: flex; gap: 12px; align-items: baseline; margin-bottom: 14px; font-size: 13.5px; }
.footer-contact svg { width: 14px; height: 14px; color: var(--gold); flex: none; transform: translateY(2px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0; display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  font-size: 12px; letter-spacing: .08em; color: rgba(255,255,255,.4);
}
.footer-pay { display: flex; gap: 8px; align-items: center; }
.footer-pay span {
  display: inline-flex; padding: 5px 10px; border: 1px solid rgba(255,255,255,.14); border-radius: 3px;
  font-size: 9.5px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.55);
}
@media (max-width: 1024px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .footer-top { grid-template-columns: 1fr; } }

/* =========================================================
   11. Page hero (inner pages)
   ========================================================= */
.page-hero {
  background: var(--ink); color: var(--white); text-align: center;
  padding: clamp(64px, 8vw, 110px) 0;
  background-image: radial-gradient(ellipse 60% 100% at 50% 130%, rgba(185,153,92,.24), transparent 62%);
}
.page-hero h1 { color: var(--white); font-weight: 500; font-size: clamp(2.2rem, 4vw, 3.4rem); margin-bottom: 8px; }
.page-hero .kicker { justify-content: center; color: var(--gold-pale); }
.page-hero .kicker::before, .page-hero .kicker.center::after { background: var(--gold-pale); }
.page-hero p.ph-sub { color: rgba(255,255,255,.7); max-width: 560px; margin: 10px auto 0; }

.breadcrumbs { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-mute); padding: 20px 0; }
.breadcrumbs a { color: var(--ink-mute); }
.breadcrumbs a:hover { color: var(--gold-deep); }
.breadcrumbs .sep { margin: 0 10px; color: var(--gold); }

/* Generic entry content */
.entry-content { max-width: 820px; }
.entry-content.wide { max-width: none; }
.entry-content h2 { font-size: 1.9rem; margin-top: 1.6em; }
.entry-content h3 { font-size: 1.4rem; margin-top: 1.4em; }
.entry-content ul, .entry-content ol { padding-left: 1.3em; margin-bottom: 1.2em; }
.entry-content li { margin-bottom: .45em; }
.entry-content a { color: var(--gold-deep); border-bottom: 1px solid var(--gold-pale); }
.entry-content blockquote {
  margin: 1.8em 0; padding: 6px 0 6px 26px; border-left: 2px solid var(--gold);
  font-family: var(--font-serif); font-size: 1.25rem; font-style: italic; color: var(--ink-soft);
}
.entry-content img { border-radius: var(--radius); }

/* =========================================================
   12. About page
   ========================================================= */
.about-intro { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.about-intro .dropcap::first-letter {
  font-family: var(--font-serif); font-size: 4.4em; float: left; line-height: .78;
  padding: 6px 14px 0 0; color: var(--gold-deep);
}
.about-figures { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; text-align: center; }
.fig { padding: 38px 20px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.fig b { display: block; font-family: var(--font-serif); font-size: 2.6rem; font-weight: 600; color: var(--gold-deep); line-height: 1; margin-bottom: 10px; }
.fig span { font-size: 12px; letter-spacing: .24em; text-transform: uppercase; color: var(--ink-mute); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) {
  .about-intro { grid-template-columns: 1fr; }
  .about-figures { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   13. Contact page
   ========================================================= */
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(36px, 5vw, 72px); align-items: start; }
.contact-info-card { background: var(--ink); color: rgba(255,255,255,.75); border-radius: var(--radius); padding: 44px 40px; }
.contact-info-card h3 { color: var(--white); font-weight: 500; }
.contact-info-card ul { list-style: none; margin: 26px 0 0; padding: 0; }
.contact-info-card li { display: flex; gap: 16px; margin-bottom: 22px; font-size: 14.5px; line-height: 1.6; }
.contact-info-card svg { width: 18px; height: 18px; color: var(--gold); flex: none; transform: translateY(4px); }
.contact-info-card b { display: block; color: var(--white); font-weight: 500; font-size: 12px; letter-spacing: .24em; text-transform: uppercase; margin-bottom: 3px; }
.contact-hours { border-top: 1px solid rgba(255,255,255,.12); margin-top: 8px; padding-top: 22px; font-size: 13px; }

.oriens-form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(30px, 4vw, 52px); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.oriens-form p.form-field { margin-bottom: 18px; }
.oriens-form label {
  display: block; font-size: 11px; font-weight: 500; letter-spacing: .26em; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 8px;
}
.oriens-form label .req { color: var(--gold-deep); }
.oriens-form input[type="text"], .oriens-form input[type="email"], .oriens-form input[type="tel"],
.oriens-form select, .oriens-form textarea {
  width: 100%; padding: 13px 16px; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  font-family: var(--font-sans); font-size: 14.5px; color: var(--ink); outline: none;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.oriens-form input:focus, .oriens-form textarea:focus, .oriens-form select:focus { border-color: var(--gold); background: var(--white); }
.oriens-form textarea { min-height: 150px; resize: vertical; }
.form-notice { padding: 14px 18px; border-radius: var(--radius); font-size: 14px; margin-bottom: 22px; }
.form-notice.ok { background: #eef3e9; border: 1px solid #cfdec2; color: #4a6438; }
.form-notice.err { background: #f7ece9; border: 1px solid #e4c7bf; color: var(--danger); }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } }

/* =========================================================
   14. FAQ accordion
   ========================================================= */
.faq-list { max-width: 860px; margin-inline: auto; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 14px; overflow: hidden; }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 22px 28px; background: none; border: 0; cursor: pointer; text-align: left;
  font-family: var(--font-serif); font-size: 1.22rem; font-weight: 600; color: var(--ink);
}
.faq-q .faq-icon { position: relative; width: 14px; height: 14px; flex: none; }
.faq-q .faq-icon::before, .faq-q .faq-icon::after {
  content: ""; position: absolute; inset: 0; margin: auto; background: var(--gold-deep); transition: transform .35s var(--ease);
}
.faq-q .faq-icon::before { width: 14px; height: 1.5px; }
.faq-q .faq-icon::after { width: 1.5px; height: 14px; }
.faq-item.open .faq-icon::after { transform: rotate(90deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.faq-a-inner { padding: 0 28px 24px; color: var(--ink-soft); font-size: 15px; }

/* =========================================================
   15. Blog / archive fallback
   ========================================================= */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.post-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; }
.post-card .pc-thumb { aspect-ratio: 16/10; overflow: hidden; background: var(--bg-soft); }
.post-card .pc-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.post-card:hover .pc-thumb img { transform: scale(1.05); }
.post-card .pc-body { padding: 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-card h3 { font-size: 1.3rem; margin: 0; }
.post-card .pc-meta { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-mute); }
@media (max-width: 900px) { .post-grid { grid-template-columns: 1fr; } }

.pagination, .woocommerce-pagination { margin-top: 48px; text-align: center; }
.pagination .nav-links, .woocommerce-pagination ul.page-numbers {
  display: inline-flex; gap: 8px; list-style: none; margin: 0; padding: 0; border: 0;
}
.page-numbers li { margin: 0; }
.page-numbers .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 42px; height: 42px; padding: 0 12px;
  border: 1px solid var(--line); border-radius: var(--radius);
  font-size: 13px; letter-spacing: .08em; color: var(--ink); background: var(--white);
}
.page-numbers .page-numbers.current, .page-numbers .page-numbers:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }

/* =========================================================
   16. 404
   ========================================================= */
.error-404 { text-align: center; padding: clamp(80px, 12vw, 160px) 0; }
.error-404 .e-num { font-family: var(--font-serif); font-size: clamp(6rem, 14vw, 11rem); line-height: 1; color: var(--gold-pale); }

/* =========================================================
   17. Floating buttons
   ========================================================= */
.float-stack { position: fixed; right: 22px; bottom: 26px; z-index: 700; display: flex; flex-direction: column; gap: 12px; }
.float-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--ink); color: var(--white); box-shadow: 0 12px 28px -10px rgba(21,23,27,.5);
  border: 0; cursor: pointer; transition: all .3s var(--ease);
}
.float-btn:hover { background: var(--gold-deep); color: var(--white); transform: translateY(-3px); }
.float-btn svg { width: 21px; height: 21px; }
.float-btn.whatsapp { background: #1fa855; }
.float-btn.whatsapp:hover { background: #17853f; }
#to-top { opacity: 0; visibility: hidden; transform: translateY(8px); }
#to-top.show { opacity: 1; visibility: visible; transform: none; }

/* =========================================================
   18. Feng Shui page — cinematic hero, elements, rooms
   ========================================================= */

/* Home entry band ------------------------------------------------------- */
.fs-band {
  position: relative; overflow: hidden;
  background: #0d0f12; color: var(--white);
  padding: clamp(96px, 13vw, 190px) 0;
  isolation: isolate;
}
.fs-band-bg { position: absolute; inset: 0; z-index: -1; }
.fs-band-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; }
.fs-band-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(9,10,13,.88) 0%, rgba(9,10,13,.62) 48%, rgba(9,10,13,.2) 100%);
}
.fs-band-inner { max-width: 660px; }
.fs-band .kicker { color: var(--gold-pale); }
.fs-band .kicker::before { background: var(--gold-pale); }
.fs-band h2 { color: var(--white); font-weight: 500; margin-bottom: 20px; }
.fs-band h2 em { font-style: italic; color: var(--gold-pale); }
.fs-band p { color: rgba(255,255,255,.76); max-width: 520px; }
.fs-band-glyphs {
  display: flex; gap: 10px; flex-wrap: wrap; list-style: none; margin: 0 0 34px; padding: 0;
}
.fs-band-glyphs li {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 16px; border: 1px solid rgba(255,255,255,.2); border-radius: 99px;
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.7);
}
.fs-band-glyphs b { font-family: var(--font-serif); font-size: 17px; color: var(--gold-pale); font-weight: 600; }
@media (max-width: 700px) { .fs-band-glyphs li:nth-child(n+4) { display: none; } }

/* Cinematic hero -------------------------------------------------------- */
.fs-hero {
  position: relative; overflow: hidden;
  min-height: calc(100svh - var(--header-h));
  display: flex; align-items: center;
  background: #0a0b0e; color: var(--white);
}
.fs-hero-media { position: absolute; inset: 0; }
.fs-hero-video { width: 100%; height: 100%; object-fit: cover; }
.fs-stills { position: absolute; inset: 0; }
.fs-still {
  position: absolute; inset: 0; margin: 0; overflow: hidden;
  opacity: 0; transition: opacity 1.8s var(--ease);
}
.fs-still.is-active { opacity: 1; }
.fs-still img { width: 100%; height: 100%; object-fit: cover; object-position: center 55%; }
.fs-still.is-active img { animation: fsKenBurns 11s linear both; }
@keyframes fsKenBurns {
  from { transform: scale(1.03); }
  to   { transform: scale(1.15) translate3d(0, -1.6%, 0); }
}
.fs-vignette {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(8,9,12,.86) 0%, rgba(8,9,12,.5) 44%, rgba(8,9,12,.12) 100%),
    radial-gradient(ellipse 92% 78% at 50% 50%, transparent 42%, rgba(6,7,10,.72) 100%);
}
.fs-grain {
  position: absolute; inset: -60px; pointer-events: none;
  opacity: .13; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23g)'/%3E%3C/svg%3E");
  animation: fsGrain 1.05s steps(3) infinite;
}
@keyframes fsGrain {
  0%   { transform: translate3d(0, 0, 0); }
  33%  { transform: translate3d(-18px, 12px, 0); }
  66%  { transform: translate3d(14px, -16px, 0); }
  100% { transform: translate3d(0, 0, 0); }
}
.fs-bar {
  position: absolute; left: 0; right: 0; height: clamp(22px, 4.2vh, 46px);
  background: #06070a; z-index: 3;
  animation: fsBar 1.5s var(--ease) both;
}
.fs-bar-top { top: 0; }
.fs-bar-bottom { bottom: 0; }
@keyframes fsBar { from { height: 42vh; } }

.fs-hero-inner { position: relative; z-index: 4; max-width: 760px; padding: clamp(96px, 13vh, 150px) 0; }
.fs-hero-inner > * { animation: heroRise 1s var(--ease) both; }
.fs-hero-inner > *:nth-child(2) { animation-delay: .5s; }
.fs-hero-inner > *:nth-child(3) { animation-delay: .68s; }
.fs-hero-inner > *:nth-child(4) { animation-delay: .86s; }
.fs-hero .kicker { color: var(--gold-pale); }
.fs-hero .kicker::before { background: var(--gold-pale); }
.fs-hero h1 {
  color: var(--white); font-weight: 500; margin-bottom: 22px;
  font-size: clamp(2.7rem, 6vw, 5.2rem); letter-spacing: -.01em;
  text-shadow: 0 18px 60px rgba(0,0,0,.45);
}
.fs-hero h1 em { font-style: italic; color: var(--gold-pale); }
.fs-hero .fs-hero-sub {
  font-size: 1.08rem; color: rgba(255,255,255,.8); max-width: 560px; margin-bottom: 40px;
}
.fs-hero-foot {
  position: absolute; z-index: 4; left: 0; right: 0; bottom: clamp(40px, 7vh, 76px);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  width: min(1280px, calc(100% - 48px)); margin-inline: auto;
}
.fs-hero-meta { font-size: 10px; letter-spacing: .38em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.fs-dots { display: flex; gap: 10px; }
.fs-dot { background: none; border: 0; padding: 8px 0; cursor: pointer; }
.fs-dot span {
  display: block; width: 42px; height: 2px; background: rgba(255,255,255,.25);
  transition: background .4s var(--ease);
}
.fs-dot.is-active span, .fs-dot:hover span { background: var(--gold-pale); }
@media (max-width: 700px) {
  .fs-hero-meta { display: none; }
  .fs-hero-foot { justify-content: center; }
}

/* Manifesto ------------------------------------------------------------- */
.fs-manifesto {
  background: var(--ink); color: rgba(255,255,255,.72);
  padding: clamp(76px, 10vw, 140px) 0;
  background-image: radial-gradient(ellipse 70% 100% at 12% 0%, rgba(185,153,92,.16), transparent 60%);
}
.fs-lede {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(1.55rem, 3.1vw, 2.5rem); line-height: 1.35;
  color: var(--white); max-width: 960px; margin: 0 0 clamp(48px, 7vw, 84px);
}
.fs-lede em { font-style: italic; color: var(--gold-pale); }
.fs-manifesto-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 4vw, 56px); }
.fs-manifesto-grid h3 { color: var(--white); font-weight: 500; font-size: 1.42rem; margin-bottom: 12px; }
.fs-manifesto-grid p { font-size: 14.8px; margin: 0; }
.fs-num {
  display: block; font-family: var(--font-serif); font-size: 13px; letter-spacing: .3em;
  color: var(--gold); margin-bottom: 16px;
  padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,.12);
}
@media (max-width: 860px) { .fs-manifesto-grid { grid-template-columns: 1fr; } }

/* Element selector ------------------------------------------------------ */
.fs-elements { padding: clamp(72px, 9vw, 128px) 0; background: var(--bg-soft); }
.fs-tabs {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px;
  margin-bottom: clamp(40px, 5vw, 68px);
}
.fs-tab {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  padding: 26px 12px 22px; cursor: pointer;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.fs-tab::before {
  content: ""; position: absolute; inset: auto 0 0 0; height: 3px;
  background: linear-gradient(90deg, var(--el-1, var(--gold)), var(--el-2, var(--gold-pale)));
  transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease);
}
.fs-tab:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.fs-tab.is-active { border-color: var(--gold); box-shadow: var(--shadow-soft); }
.fs-tab.is-active::before, .fs-tab:hover::before { transform: scaleX(1); }
.fs-tab-cn {
  font-family: var(--font-serif); font-size: 30px; font-weight: 600; line-height: 1;
  color: var(--ink); transition: color .4s var(--ease);
}
.fs-tab.is-active .fs-tab-cn { color: var(--gold-deep); }
.fs-tab-name { font-size: 12px; font-weight: 500; letter-spacing: .28em; text-transform: uppercase; color: var(--ink); }
.fs-tab-dir { font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-mute); }
@media (max-width: 860px) {
  .fs-tabs { grid-template-columns: repeat(3, 1fr); }
  .fs-tab { padding: 18px 8px 16px; }
  .fs-tab-cn { font-size: 24px; }
  .fs-tab-dir { display: none; }
}
@media (max-width: 460px) { .fs-tabs { grid-template-columns: repeat(2, 1fr); } }

.fs-panel[hidden] { display: none; }
.fs-panel { animation: fsPanelIn .7s var(--ease) both; }
@keyframes fsPanelIn { from { opacity: 0; transform: translateY(20px); } }
.fs-panel-top {
  display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(32px, 5vw, 72px);
  align-items: center; margin-bottom: clamp(48px, 6vw, 84px);
}
.fs-panel-media { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--bg); }
.fs-panel-media img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.fs-panel-cn {
  position: absolute; right: 22px; bottom: 10px;
  font-family: var(--font-serif); font-size: clamp(66px, 9vw, 118px); font-weight: 600; line-height: 1;
  color: rgba(255,255,255,.9); text-shadow: 0 14px 40px rgba(0,0,0,.5);
}
.fs-panel-copy h3 { font-size: clamp(1.8rem, 3.2vw, 2.7rem); margin-bottom: 18px; }
.fs-panel-copy h3 em { font-style: italic; color: var(--gold-deep); }
.fs-panel-copy > p { color: var(--ink-soft); max-width: 620px; }
.fs-facts {
  display: grid; grid-template-columns: repeat(3, auto); gap: 26px 40px;
  margin: 30px 0 26px; padding: 26px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  justify-content: start;
}
.fs-facts dt { font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 8px; }
.fs-facts dd { margin: 0; font-size: 14.5px; color: var(--ink); }
.fs-swatches { display: flex; gap: 7px; }
.fs-swatches span { width: 24px; height: 24px; border-radius: 50%; border: 1px solid rgba(0,0,0,.08); }
.fs-ritual {
  font-family: var(--font-serif); font-size: 1.2rem; font-style: italic; color: var(--ink-soft);
  padding-left: 22px; border-left: 2px solid var(--gold); margin: 0;
}
@media (max-width: 900px) {
  .fs-panel-top { grid-template-columns: 1fr; }
  .fs-facts { grid-template-columns: 1fr 1fr; gap: 22px 28px; }
}

.fs-picks-head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  padding-bottom: 18px; margin-bottom: 34px; border-bottom: 1px solid var(--line);
}
.fs-picks-head h4 {
  font-family: var(--font-serif); font-size: 1.6rem; font-weight: 600; margin: 0;
}
.fs-picks-head span { font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--ink-mute); }

/* Rooms ----------------------------------------------------------------- */
.fs-rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(22px, 3vw, 40px); }
.fs-room-media { overflow: hidden; border-radius: var(--radius); margin-bottom: 24px; background: var(--bg-soft); }
.fs-room-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform 1s var(--ease); }
.fs-room:hover .fs-room-media img { transform: scale(1.05); }
.fs-room-label {
  display: block; font-size: 10px; letter-spacing: .32em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 10px;
}
.fs-room h3 { font-size: 1.5rem; margin-bottom: 10px; }
.fs-room p { color: var(--ink-soft); font-size: 14.8px; margin: 0; }
@media (max-width: 900px) { .fs-rooms-grid { grid-template-columns: 1fr; } }

/* Quote band ------------------------------------------------------------ */
.fs-quote {
  position: relative; overflow: hidden; isolation: isolate;
  background: #0d0f12; color: var(--white); text-align: center;
  padding: clamp(88px, 12vw, 168px) 0;
}
.fs-quote-bg { position: absolute; inset: 0; z-index: -1; }
.fs-quote-bg img { width: 100%; height: 100%; object-fit: cover; }
.fs-quote-bg::after { content: ""; position: absolute; inset: 0; background: rgba(8,9,12,.7); }
.fs-quote blockquote {
  font-family: var(--font-serif); font-weight: 500; font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.4rem); line-height: 1.4;
  color: var(--white); max-width: 900px; margin: 0 auto 26px;
}
.fs-quote-who { font-size: 11px; letter-spacing: .28em; text-transform: uppercase; color: var(--gold-pale); }

@media (prefers-reduced-motion: reduce) {
  .fs-still.is-active img, .fs-grain, .fs-bar, .fs-hero-inner > *, .fs-panel { animation: none; }
  .fs-bar { height: clamp(22px, 4.2vh, 46px); }
}

/* =========================================================
   19. Forms / misc
   ========================================================= */
input, textarea, select, button { font-family: inherit; }
.wp-block-search .wp-block-search__input, .search-form .search-field {
  padding: 12px 16px; border: 1px solid var(--line); background: var(--white); border-radius: var(--radius);
  font-size: 14.5px; outline: none;
}
.search-form { display: flex; gap: 10px; }
