:root {
  --paper: #fbfaf6;
  --ivory: #f4efe6;
  --linen: #ebe2d5;
  --stone: #d8d0c4;
  --ink: #151917;
  --muted: #626b64;
  --green: #26362c;
  --green-soft: #405847;
  --olive: #7e8d73;
  --champagne: #b99667;
  --white: #fffdf8;
  --shadow-soft: 0 18px 46px rgba(30, 33, 29, 0.08);
  --shadow-product: 0 12px 32px rgba(44, 45, 39, 0.07);
  --radius: 24px;
  --max: 1460px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 34px;
  min-height: 96px;
  padding: 18px clamp(24px, 4.5vw, 78px);
  background: rgba(251, 250, 246, 0.94);
  border-bottom: 1px solid rgba(216, 208, 196, 0.62);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: 18px; min-width: 0; }
.brand-mark {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  color: var(--champagne);
  border: 2px solid var(--champagne);
  border-right-color: transparent;
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  letter-spacing: 0;
}
.brand-copy { display: grid; gap: 2px; text-transform: uppercase; }
.brand-name { font-size: 1.08rem; font-weight: 700; letter-spacing: 0.2em; }
.brand-sub { text-align: center; color: var(--muted); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.34em; }
.desktop-nav { display: flex; justify-content: center; gap: clamp(22px, 3vw, 56px); font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; }
.desktop-nav a { position: relative; padding: 12px 0; }
.desktop-nav a::after { position: absolute; left: 0; bottom: 7px; width: 100%; height: 1px; content: ""; background: var(--champagne); transform: scaleX(0); transform-origin: right; transition: transform 180ms ease; }
.desktop-nav a:hover::after, .desktop-nav a.is-active::after { transform: scaleX(1); transform-origin: left; }

.quote-button, .outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 50px;
  padding: 0 27px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}
.quote-button { color: var(--white); background: var(--green); border: 1px solid var(--green); box-shadow: 0 14px 28px rgba(38, 54, 44, 0.14); }
.outline-button { color: var(--ink); background: rgba(255, 253, 248, 0.78); border: 1px solid rgba(21, 25, 23, 0.28); }
.quote-button:hover, .outline-button:hover { transform: translateY(-2px); box-shadow: 0 18px 36px rgba(38, 54, 44, 0.16); }
.outline-button:hover { color: var(--white); background: var(--green); }
.menu-toggle { display: none; width: 48px; height: 48px; padding: 0; background: var(--white); border: 1px solid var(--stone); border-radius: 999px; }
.menu-toggle span { display: block; width: 18px; height: 2px; margin: 4px auto; background: var(--ink); transition: transform 180ms ease, opacity 180ms ease; }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-menu { position: fixed; left: 18px; right: 18px; top: 104px; z-index: 45; display: grid; gap: 4px; padding: 14px; background: var(--white); border: 1px solid var(--stone); border-radius: 22px; box-shadow: var(--shadow-soft); opacity: 0; pointer-events: none; transform: translateY(-10px); transition: opacity 180ms ease, transform 180ms ease; }
.mobile-menu.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.mobile-menu a { padding: 13px 14px; border-radius: 14px; font-weight: 800; text-transform: uppercase; font-size: 0.82rem; }
.mobile-menu a:hover { background: var(--ivory); }

.hero { background: linear-gradient(90deg, var(--paper) 0%, var(--paper) 43%, #eee7df 43%, #f8f4ed 100%); overflow: hidden; }
.hero-shell { width: min(100%, var(--max)); min-height: 530px; margin: 0 auto; display: grid; grid-template-columns: 0.84fr 1.16fr; align-items: stretch; }
.hero-copy { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center; padding: clamp(58px, 6vw, 92px) clamp(24px, 4vw, 54px); }
.section-kicker { margin: 0 0 24px; color: var(--ink); font-size: 0.78rem; font-weight: 900; letter-spacing: 0.22em; text-transform: uppercase; }
h1, h2, h3, p { overflow-wrap: break-word; }
h1 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(3.5rem, 6.8vw, 7.45rem); line-height: 0.95; font-weight: 500; letter-spacing: 0; }
h1 span { color: #9a805e; font-style: italic; font-weight: 400; }
.hero-copy h1 { max-width: 620px; color: var(--green); font-family: inherit; font-size: clamp(1.05rem, 1.5vw, 1.35rem); line-height: 1.35; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; }
.hero-display { margin: 14px 0 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(3.5rem, 6.8vw, 7.45rem); line-height: 0.95; font-weight: 500; letter-spacing: 0; color: var(--ink); }
.hero-display span { color: #9a805e; font-style: italic; font-weight: 400; }
.hero-rule { width: 64px; height: 2px; margin: 32px 0 28px; background: var(--champagne); }
.hero-copy p:not(.section-kicker):not(.hero-display) { max-width: 560px; margin: 0 0 13px; color: #424944; font-size: 1rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 28px; }
.hero-image { position: relative; min-height: 530px; display: grid; align-items: stretch; padding: 0; overflow: hidden; }
.hero-photo { width: 100%; height: 100%; min-height: 530px; object-fit: cover; object-position: center; }
.hero-image svg { display: none; }
.soft-blob { fill: #e9e0d6; opacity: 0.9; }
.room path, .room circle, .room ellipse { fill: none; stroke: rgba(119, 99, 74, 0.22); stroke-width: 4; stroke-linecap: round; }
.room circle { fill: rgba(126, 141, 115, 0.12); }
.room ellipse { fill: rgba(185, 150, 103, 0.16); stroke: none; }
.chair path { stroke: rgba(48, 51, 46, 0.35); stroke-width: 5; stroke-linecap: round; fill-rule: evenodd; }
.chair rect { stroke: rgba(48, 51, 46, 0.2); stroke-width: 4; }

.advantage-bar { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); background: linear-gradient(90deg, #233229, #34483a); color: var(--white); }
.advantage-bar article { display: grid; grid-template-columns: 72px 1fr; gap: 18px; align-items: center; min-height: 118px; padding: 25px clamp(20px, 3vw, 56px); border-right: 1px solid rgba(255, 253, 248, 0.22); }
.advantage-bar article:last-child { border-right: 0; }
.line-icon { display: grid; width: 58px; height: 58px; place-items: center; color: #e8c996; border: 1px solid rgba(232, 201, 150, 0.65); border-radius: 50%; font-weight: 900; }
.advantage-bar h3 { margin: 0 0 6px; font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.12em; }
.advantage-bar p { margin: 0; color: rgba(255, 253, 248, 0.76); font-size: 0.95rem; }

.section-pad { padding: clamp(74px, 8vw, 124px) clamp(20px, 4.5vw, 78px); }
.section-inner { width: min(100%, var(--max)); margin: 0 auto; }
.about-section, .applications-section { background: var(--paper); }
.product-section, .contact-section { background: radial-gradient(circle at 50% 0, #fffdf8 0, var(--ivory) 64%); }
.wholesale-section, .enquiry-section { background: #f7f2eb; }
.about-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(34px, 8vw, 120px); align-items: center; }
h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.25rem, 4.6vw, 4.4rem); line-height: 1.02; font-weight: 500; letter-spacing: 0; }
.about-copy { display: grid; gap: 18px; max-width: 720px; padding: clamp(24px, 4vw, 42px); background: rgba(255, 253, 248, 0.72); border: 1px solid rgba(216, 208, 196, 0.74); border-radius: var(--radius); }
.about-copy p, .split-heading > p, .enquiry-intro p, .contact-copy p { margin: 0; color: var(--muted); font-size: 1.06rem; }

.center-heading { max-width: 920px; margin: 0 auto 42px; text-align: center; }
.center-heading h2 { display: flex; align-items: center; justify-content: center; gap: 22px; font-size: clamp(2rem, 3.4vw, 3.2rem); }
.center-heading h2 span { display: block; width: 46px; height: 1px; background: var(--champagne); }
.product-showcase { display: grid; grid-template-columns: repeat(8, minmax(134px, 1fr)); gap: 18px; }
.product-card { display: grid; grid-template-rows: auto 1fr auto; min-height: 292px; overflow: hidden; background: rgba(255, 253, 248, 0.86); border: 1px solid rgba(216, 208, 196, 0.82); border-radius: 999px 999px 10px 10px; box-shadow: var(--shadow-product); transition: transform 220ms ease, box-shadow 220ms ease; }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 22px 48px rgba(44, 45, 39, 0.1); }
.product-image { aspect-ratio: 1 / 1.08; margin: 8px 8px 0; overflow: hidden; background: linear-gradient(145deg, #f5efe6, #fffaf2); border-radius: 999px 999px 8px 8px; }
.product-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 350ms ease; }
.product-card:hover img { transform: scale(1.045); }
.product-content { display: grid; align-content: start; justify-items: center; gap: 12px; padding: 14px 12px 18px; text-align: center; }
.product-content h3 { margin: 0; min-height: 42px; font-size: 0.94rem; line-height: 1.18; }
.product-content p { display: none; }
.circle-link { display: grid; width: 36px; height: 36px; place-items: center; border: 1px solid rgba(21, 25, 23, 0.5); border-radius: 50%; transition: background 180ms ease, color 180ms ease; }
.circle-link:hover { color: var(--white); background: var(--green); }

.split-heading { display: grid; grid-template-columns: 1fr 0.72fr; gap: 42px; align-items: end; margin-bottom: 34px; }
.feature-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.info-card, .application-card, .enquiry-form, .contact-visual { background: rgba(255, 253, 248, 0.82); border: 1px solid rgba(216, 208, 196, 0.82); border-radius: var(--radius); box-shadow: var(--shadow-product); }
.info-card { min-height: 230px; padding: 28px; }
.info-card span { color: var(--champagne); font-weight: 900; letter-spacing: 0.12em; }
.info-card h3, .application-card h3 { margin: 22px 0 10px; font-size: 1.18rem; }
.info-card p, .application-card p { margin: 0; color: var(--muted); }
.application-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 34px; }
.application-card { min-height: 156px; padding: 26px; }
.application-card h3 { margin-top: 0; }

.enquiry-layout { display: grid; grid-template-columns: 0.86fr 1.14fr; gap: clamp(34px, 7vw, 96px); align-items: start; }
.enquiry-intro { position: sticky; top: 124px; }
.process-mini { display: grid; gap: 10px; margin-top: 30px; }
.process-mini span { padding: 14px 16px; color: var(--green); background: rgba(255, 253, 248, 0.72); border: 1px solid rgba(216, 208, 196, 0.72); border-radius: 999px; font-size: 0.86rem; font-weight: 800; text-transform: uppercase; }
.enquiry-form { display: grid; gap: 16px; padding: clamp(24px, 4vw, 42px); }
.enquiry-form label { display: grid; gap: 8px; font-weight: 800; }
.enquiry-form label span { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; }
.enquiry-form input, .enquiry-form select, .enquiry-form textarea { width: 100%; min-height: 52px; padding: 13px 15px; color: var(--ink); background: #fffaf2; border: 1px solid var(--stone); border-radius: 16px; outline: none; }
.enquiry-form textarea { resize: vertical; }
.enquiry-form input:focus, .enquiry-form select:focus, .enquiry-form textarea:focus { border-color: var(--olive); box-shadow: 0 0 0 4px rgba(126, 141, 115, 0.15); }
.form-button { justify-self: start; }
.form-status { min-height: 28px; margin: 0; color: var(--green-soft); font-weight: 800; }

.contact-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(34px, 7vw, 92px); align-items: center; }
.contact-copy { display: grid; gap: 16px; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 12px; }
.contact-visual { min-height: 330px; position: relative; overflow: hidden; padding: 36px; }
.contact-visual::before { position: absolute; inset: 30px 34px; content: ""; border: 1px solid rgba(185, 150, 103, 0.3); border-radius: 999px 999px 20px 20px; }
.contact-visual::after { position: absolute; right: 12%; bottom: 18%; width: 42%; height: 44%; content: ""; background: linear-gradient(145deg, #eee2d4, #cfc0b0); border-radius: 44% 56% 12px 12px; box-shadow: 0 20px 40px rgba(30, 33, 29, 0.12); }
.contact-visual h3, .contact-visual p, .contact-visual a, .contact-visual dl { position: relative; z-index: 1; }
.contact-visual p { max-width: 390px; color: var(--muted); }
.contact-visual dl, .contact-info-card dl { position: relative; z-index: 1; display: grid; gap: 16px; margin: 24px 0 0; }
.contact-visual dl div, .contact-info-card dl div { display: grid; gap: 4px; padding-top: 14px; border-top: 1px solid rgba(216, 208, 196, 0.78); }
.contact-visual dt, .contact-info-card dt { color: var(--muted); font-size: 0.78rem; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; }
.contact-visual dd, .contact-info-card dd { margin: 0; color: var(--ink); font-size: 1.08rem; font-weight: 750; }
.contact-visual dd a, .contact-info-card dd a { color: var(--green); text-decoration: underline; text-decoration-color: rgba(38, 54, 44, 0.26); text-underline-offset: 4px; }

.contact-page-hero { position: relative; overflow: hidden; background: radial-gradient(circle at 78% 20%, rgba(185, 150, 103, 0.16), transparent 34%), linear-gradient(135deg, var(--paper), #f1e8dc); }
.contact-page-hero::after { position: absolute; right: clamp(20px, 9vw, 150px); bottom: -76px; width: min(38vw, 520px); aspect-ratio: 1.55; content: ""; background: url("../assets/hero-massage-chair.png") center / cover no-repeat; border: 1px solid rgba(216, 208, 196, 0.7); border-radius: 999px 999px 26px 26px; box-shadow: var(--shadow-soft); opacity: 0.92; }
.contact-page-heading { position: relative; z-index: 1; max-width: 900px; padding-right: min(36vw, 480px); }
.contact-page-heading h1 span { color: #9a805e; font-style: italic; font-weight: 400; }
.contact-page-heading p { max-width: 690px; margin: 24px 0 0; color: var(--muted); font-size: 1.14rem; }
.contact-page-main { background: #f7f2eb; }
.contact-page-grid { display: grid; grid-template-columns: 0.86fr 1.14fr; gap: clamp(28px, 6vw, 82px); align-items: start; }
.contact-info-stack { display: grid; gap: 18px; }
.contact-info-card, .contact-note-card, .contact-form-card { background: rgba(255, 253, 248, 0.88); border: 1px solid rgba(216, 208, 196, 0.82); border-radius: var(--radius); box-shadow: var(--shadow-product); }
.contact-info-card, .contact-note-card { padding: clamp(24px, 4vw, 38px); }
.contact-info-card h3, .contact-note-card h2, .contact-form-card h2 { margin: 0 0 14px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.5rem, 2.5vw, 2.1rem); font-weight: 500; }
.contact-info-card p, .contact-note-card p { margin: 0; color: var(--muted); }
.contact-form-card { padding: clamp(24px, 4vw, 42px); }

.site-footer { padding: 56px clamp(20px, 4.5vw, 78px) 28px; color: rgba(255, 253, 248, 0.76); background: #202b24; }
.footer-inner { width: min(100%, var(--max)); margin: 0 auto; display: grid; grid-template-columns: 1.25fr 0.7fr 0.7fr; gap: 46px; }
.footer-brand { color: var(--white); margin-bottom: 18px; }
.site-footer p { max-width: 470px; margin: 14px 0 0; color: rgba(255, 253, 248, 0.7); }
.site-footer h2 { margin: 0 0 16px; font-family: inherit; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.14em; }
.site-footer a { display: block; margin: 8px 0; color: rgba(255, 253, 248, 0.72); }
.footer-contact { margin-top: 18px; padding-top: 16px; border-top: 1px solid rgba(255, 253, 248, 0.14); }
.footer-contact p { margin: 6px 0; }
.footer-bottom { width: min(100%, var(--max)); margin: 38px auto 0; padding-top: 22px; border-top: 1px solid rgba(255, 253, 248, 0.16); font-size: 0.92rem; }
.back-to-top { position: fixed; right: 20px; bottom: 20px; z-index: 40; display: grid; width: 48px; height: 48px; place-items: center; color: var(--white); background: var(--green); border: 0; border-radius: 50%; box-shadow: var(--shadow-soft); cursor: pointer; opacity: 0; pointer-events: none; transform: translateY(10px); transition: opacity 180ms ease, transform 180ms ease; }
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 540ms ease var(--stagger, 0ms), transform 540ms ease var(--stagger, 0ms); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.policy-page { min-height: 100vh; }
.policy-hero { padding: 74px clamp(20px, 4.5vw, 78px) 48px; }
.policy-content { display: grid; gap: 24px; max-width: 900px; }
.policy-content article { padding: 28px; background: var(--white); border: 1px solid var(--stone); border-radius: var(--radius); }
.policy-content h1 { font-size: clamp(3rem, 6vw, 5.4rem); }
.policy-content h2 { font-size: clamp(1.7rem, 3vw, 2.35rem); }

@media (max-width: 1220px) {
  .site-header { grid-template-columns: auto 1fr auto; min-height: 82px; }
  .desktop-nav, .header-quote { display: none; }
  .menu-toggle { display: block; justify-self: end; }
  .hero-shell { grid-template-columns: 1fr; }
  .hero { background: var(--paper); }
  .hero-copy { padding-bottom: 34px; }
  .hero-image { min-height: 430px; padding: 0 18px 20px; background: #eee7df; }
  .hero-image svg { min-height: 430px; }
  .advantage-bar, .product-showcase, .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .advantage-bar article:nth-child(2) { border-right: 0; }
  .product-card { border-radius: 160px 160px 10px 10px; }
}

@media (max-width: 820px) {
  .site-header { padding: 14px 18px; }
  .brand-mark { width: 52px; height: 52px; font-size: 1.18rem; }
  .brand-name { font-size: 0.9rem; letter-spacing: 0.16em; }
  .brand-sub { font-size: 0.6rem; letter-spacing: 0.24em; }
  .mobile-menu { top: 86px; }
  .hero-copy { padding: 48px 20px 28px; }
  h1 { font-size: clamp(3.05rem, 15vw, 5rem); }
  .hero-actions, .quote-button, .outline-button { width: 100%; }
  .hero-image, .hero-image svg { min-height: 350px; }
  .advantage-bar, .product-showcase, .feature-grid, .application-grid, .about-layout, .split-heading, .enquiry-layout, .contact-layout, .footer-inner { grid-template-columns: 1fr; }
  .advantage-bar article { border-right: 0; border-bottom: 1px solid rgba(255, 253, 248, 0.18); }
  .advantage-bar article:last-child { border-bottom: 0; }
  .section-pad { padding: 66px 18px; }
  .center-heading h2 { display: block; }
  .center-heading h2 span { display: none; }
  .product-card { min-height: 260px; }
  .product-image { aspect-ratio: 1.45; border-radius: 120px 120px 8px 8px; }
  .enquiry-intro { position: static; }
  .form-button { justify-self: stretch; }
}

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