:root {
  --wine: #650d18;
  --wine-dark: #40070f;
  --wine-soft: #8b2633;
  --gold: #b89a5d;
  --gold-light: #d8c79e;
  --ink: #2b2421;
  --muted: #706762;
  --cream: #fffdf8;
  --paper: #f7efe3;
  --paper-deep: #eee0cc;
  --line: rgba(101, 13, 24, 0.16);
  --white: #fff;
  --shadow: 0 24px 70px rgba(69, 32, 22, 0.12);
  --sans: Arial, "PingFang HK", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  --serif: Georgia, "Noto Serif TC", "PMingLiU", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { color: inherit; font: inherit; }
.container { width: min(1160px, calc(100% - 48px)); margin: 0 auto; }
.section { padding: 104px 0; }
.section--soft { background: var(--paper); }
.section--wine { color: var(--white); background: var(--wine-dark); }
.section--tight { padding: 72px 0; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--wine);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.section--wine .eyebrow { color: var(--gold-light); }
.display-title,
.section-title,
.page-title {
  margin: 0;
  color: var(--wine);
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0.01em;
}
.display-title { font-size: clamp(48px, 7vw, 88px); }
.display-title em { color: var(--wine-soft); font-style: normal; }
.page-title { max-width: 840px; font-size: clamp(46px, 6.5vw, 78px); }
.section-title { font-size: clamp(36px, 4.4vw, 58px); }
.section--wine .section-title { color: var(--white); }
.lead { max-width: 720px; margin: 22px 0 0; color: #4f4743; font-size: 18px; }
.section--wine .lead { color: rgba(255,255,255,.76); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 46px; }
.section-heading .lead { max-width: 520px; margin: 0; }
.text-link { color: var(--wine); font-weight: 700; border-bottom: 1px solid currentColor; }

.topbar {
  color: rgba(255,255,255,.88);
  background: var(--wine-dark);
  font-size: 13px;
}
.topbar__inner { display: flex; justify-content: space-between; gap: 24px; padding: 7px 0; }
.topbar a { color: var(--gold-light); }
.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(255,253,248,.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.header-inner { height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; min-width: 280px; align-items: center; gap: 13px; }
.brand-logo { width: 39px; height: 63px; flex: 0 0 auto; object-fit: contain; object-position: center; }
.brand-name { display: flex; flex-direction: column; color: var(--wine); line-height: 1; }
.brand-name strong { font-family: var(--serif); font-size: 21px; letter-spacing: .07em; white-space: nowrap; }
.brand-name small { margin-top: 8px; font-size: 7px; font-weight: 700; letter-spacing: .12em; white-space: nowrap; }
.desktop-nav { display: flex; align-items: center; gap: 28px; }
.desktop-nav a { position: relative; font-size: 14px; }
.desktop-nav a::after { position: absolute; right: 0; bottom: -9px; left: 0; height: 1px; content: ""; background: var(--wine); transform: scaleX(0); transition: transform .2s ease; }
.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav-socials { display: flex; align-items: center; gap: 7px; padding-left: 2px; }
.social-icon { width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 50%; color: var(--wine); transition: color .2s ease, background .2s ease, border-color .2s ease; }
.social-icon svg { width: 15px; height: 15px; fill: currentColor; }
.social-icon::after { display: none !important; }
.social-icon:hover { color: var(--white); background: var(--wine); border-color: var(--wine); }
.lang-switch { min-width: 48px; min-height: 44px; padding: 7px 10px; color: var(--wine); background: transparent; border: 1px solid rgba(101,13,24,.5); border-radius: 999px; cursor: pointer; font-size: 12px; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 0; background: transparent; border: 1px solid var(--line); border-radius: 50%; cursor: pointer; }
.menu-toggle span { display: block; width: 18px; height: 1px; margin: 5px auto; background: var(--wine); transition: .2s ease; }
.mobile-nav { display: none; }
.contents-root { display: contents; }
[hidden] { display: none !important; }

.hero { position: relative; overflow: hidden; min-height: 690px; background: var(--paper); border-bottom: 1px solid var(--line); }
.hero::before { position: absolute; inset: 0; content: ""; background: radial-gradient(circle at 87% 17%, rgba(184,154,93,.22), transparent 31%), linear-gradient(90deg, transparent 0 62%, rgba(255,253,248,.32)); pointer-events: none; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; min-height: 690px; gap: 64px; padding: 72px 0; }
.hero-copy { position: relative; z-index: 2; }
.hero-copy .lead { max-width: 620px; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: 9px; padding: 12px 22px; border: 1px solid var(--wine); transition: .2s ease; font-size: 14px; font-weight: 700; }
.button--primary { color: var(--white); background: var(--wine); }
.button--primary:hover { background: var(--wine-dark); border-color: var(--wine-dark); transform: translateY(-2px); }
.button--outline { color: var(--wine); background: transparent; }
.button--outline:hover { background: rgba(101,13,24,.06); }
.button--light { color: var(--wine-dark); background: var(--white); border-color: var(--white); }
.button--ghost-light { color: var(--white); border-color: rgba(255,255,255,.54); }
.hero-art { position: relative; min-height: 480px; }
.hero-photo { position: absolute; overflow: hidden; inset: 0 0 0 35px; border-radius: 50% 50% 3px 3px / 42% 42% 3px 3px; box-shadow: var(--shadow); background: linear-gradient(145deg,#251915,#80614c); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.75) sepia(.14); }
.hero-photo::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, transparent 45%, rgba(40,8,10,.32)); }
.seal { position: absolute; z-index: 3; right: -14px; bottom: 28px; display: grid; width: 174px; height: 174px; place-content: center; text-align: center; color: var(--wine); background: rgba(255,253,248,.96); border: 1px solid var(--gold); border-radius: 50%; box-shadow: 0 0 0 9px rgba(255,253,248,.8), 0 0 0 10px rgba(184,154,93,.5); }
.seal small { font-size: 9px; font-weight: 700; letter-spacing: .18em; }
.seal strong { display: block; margin: 8px 0; font-family: var(--serif); font-size: 27px; line-height: 1.15; }
.hero-note { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 26px; color: var(--muted); font-size: 13px; }
.hero-note span::before { content: "◆"; margin-right: 8px; color: var(--gold); font-size: 8px; }

.benefit-strip { background: var(--cream); border-bottom: 1px solid var(--line); }
.benefit-grid { display: grid; grid-template-columns: repeat(3,1fr); }
.benefit { padding: 28px 34px; border-left: 1px solid var(--line); }
.benefit:last-child { border-right: 1px solid var(--line); }
.benefit small { display: block; margin-bottom: 5px; color: var(--wine-soft); font-size: 10px; font-weight: 700; letter-spacing: .16em; }
.benefit strong { font-family: var(--serif); font-size: 21px; font-weight: 600; }

.card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.service-card { position: relative; overflow: hidden; min-height: 390px; color: var(--white); background: var(--wine-dark); }
.service-card--wide { grid-column: span 2; min-height: 330px; }
.service-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.service-card::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, rgba(25,9,7,.03) 10%, rgba(38,9,12,.88) 100%); }
.service-card:hover img { transform: scale(1.035); }
.service-card__copy { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; padding: 32px; }
.service-card__copy small { color: var(--gold-light); font-size: 10px; font-weight: 700; letter-spacing: .18em; }
.service-card__copy h3 { margin: 8px 0 4px; font-family: var(--serif); font-size: 31px; font-weight: 600; }
.service-card__copy p { max-width: 520px; margin: 0; color: rgba(255,255,255,.78); font-size: 14px; }
.service-card__arrow { position: absolute; z-index: 3; right: 28px; top: 28px; display: grid; width: 42px; height: 42px; place-content: center; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; }

.steps { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.step { min-height: 245px; padding: 34px 28px; border-left: 1px solid var(--line); }
.step:last-child { border-right: 1px solid var(--line); }
.step__no { color: var(--wine); font-family: var(--serif); font-size: 18px; }
.step h3 { margin: 44px 0 8px; color: var(--wine); font-family: var(--serif); font-size: 24px; }
.step p { margin: 0; color: var(--muted); font-size: 14px; }

.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 78px; }
.feature-list { margin: 34px 0 0; padding: 0; list-style: none; }
.feature-list li { display: grid; grid-template-columns: 52px 1fr; gap: 18px; padding: 22px 0; border-top: 1px solid var(--line); }
.feature-list li:last-child { border-bottom: 1px solid var(--line); }
.feature-list .icon { display: grid; width: 46px; height: 46px; place-content: center; color: var(--wine); background: var(--paper); border-radius: 50%; font-family: var(--serif); }
.feature-list strong { display: block; color: var(--wine); font-family: var(--serif); font-size: 21px; }
.feature-list p { margin: 4px 0 0; color: var(--muted); font-size: 14px; }
.quote-panel { position: relative; overflow: hidden; min-height: 520px; padding: 60px; color: var(--white); background: linear-gradient(155deg,var(--wine),var(--wine-dark)); }
.quote-panel::before,
.quote-panel::after { position: absolute; content: ""; border: 1px solid rgba(216,199,158,.46); border-radius: 50%; }
.quote-panel::before { width: 330px; height: 330px; right: -100px; top: -90px; }
.quote-panel::after { width: 240px; height: 240px; right: -55px; top: -45px; }
.quote-panel blockquote { position: relative; z-index: 1; max-width: 460px; margin: 140px 0 0; font-family: var(--serif); font-size: clamp(31px,4vw,48px); line-height: 1.34; }
.quote-panel p { position: relative; z-index: 1; color: var(--gold-light); font-size: 11px; font-weight: 700; letter-spacing: .2em; }

.term-box { display: grid; grid-template-columns: .8fr 1.2fr; gap: 55px; padding: 48px; background: var(--white); border: 1px solid var(--line); box-shadow: 0 18px 55px rgba(69,32,22,.06); }
.term-box__big { color: var(--wine); font-family: var(--serif); font-size: clamp(46px,6vw,72px); line-height: 1; }
.term-box__big small { display: block; margin-top: 10px; color: var(--muted); font-family: var(--sans); font-size: 13px; letter-spacing: .14em; }
.term-box h3 { margin: 0 0 12px; color: var(--wine); font-family: var(--serif); font-size: 27px; }
.term-box p { margin: 0 0 14px; color: var(--muted); }
.legal-note { padding-left: 16px; border-left: 2px solid var(--gold); font-size: 13px; }

.cta { position: relative; overflow: hidden; padding: 88px 0; color: var(--white); background: var(--wine); }
.cta::after { position: absolute; right: -160px; top: -290px; width: 600px; height: 600px; content: ""; border: 1px solid rgba(216,199,158,.35); border-radius: 50%; box-shadow: 0 0 0 58px rgba(216,199,158,.06), 0 0 0 120px rgba(216,199,158,.04); }
.cta-grid { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.cta h2 { max-width: 650px; margin: 0; font-family: var(--serif); font-size: clamp(38px,5vw,62px); line-height: 1.18; }
.cta p { margin: 16px 0 0; color: rgba(255,255,255,.74); }
.social-section { position: relative; overflow: hidden; background: var(--paper); }
.social-section::before { position: absolute; right: -130px; top: -180px; width: 430px; height: 430px; content: ""; border: 1px solid rgba(101,13,24,.11); border-radius: 50%; box-shadow: 0 0 0 54px rgba(101,13,24,.025),0 0 0 108px rgba(101,13,24,.018); }
.social-grid { position: relative; display: grid; grid-template-columns: 1fr .9fr; gap: 80px; align-items: center; }
.social-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.social-card { min-height: 190px; padding: 28px; display: flex; flex-direction: column; justify-content: space-between; color: var(--white); background: var(--wine-dark); border: 1px solid rgba(101,13,24,.15); transition: transform .2s ease, box-shadow .2s ease; }
.social-card--instagram { color: var(--wine-dark); background: var(--gold-light); }
.social-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.social-card__icon { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; opacity: .9; }
.social-card__icon svg { width: 20px; height: 20px; fill: currentColor; }
.social-card small { display: block; margin-bottom: 5px; font-size: 10px; font-weight: 700; letter-spacing: .16em; opacity: .68; }
.social-card strong { font-family: var(--serif); font-size: 21px; }
.social-note { margin: 20px 0 0; color: var(--muted); font-size: 12px; }

.page-hero { padding: 92px 0 88px; background: var(--paper); border-bottom: 1px solid var(--line); }
.page-hero__grid { display: grid; grid-template-columns: 1fr .38fr; align-items: end; gap: 60px; }
.page-hero__mark { position: relative; display: grid; width: 190px; height: 190px; place-content: center; justify-self: end; text-align: center; color: var(--wine); border: 1px solid var(--gold); border-radius: 50%; }
.page-hero__mark::after { position: absolute; inset: 9px; content: ""; border: 1px solid rgba(184,154,93,.48); border-radius: inherit; }
.page-hero__mark strong { font-family: var(--serif); font-size: 28px; line-height: 1.2; }
.page-hero__mark small { margin-top: 7px; font-size: 9px; font-weight: 700; letter-spacing: .16em; }

.service-detail-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.detail-card { overflow: hidden; background: var(--white); border: 1px solid var(--line); }
.detail-card__media { height: 260px; overflow: hidden; background: linear-gradient(145deg,#321016,#9a6d5e); }
.detail-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.detail-card:hover img { transform: scale(1.03); }
.detail-card__body { padding: 30px; }
.detail-card__body small { color: var(--wine-soft); font-size: 10px; font-weight: 700; letter-spacing: .16em; }
.detail-card__body h2 { margin: 7px 0 10px; color: var(--wine); font-family: var(--serif); font-size: 31px; }
.detail-card__body p { margin: 0; color: var(--muted); }
.detail-card__body ul { margin: 16px 0 0; padding-left: 20px; color: var(--muted); font-size: 14px; }

.check-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.check-card { padding: 32px; background: var(--white); border-top: 3px solid var(--wine); }
.check-card span { color: var(--gold); font-family: var(--serif); font-size: 25px; }
.check-card h3 { margin: 28px 0 8px; color: var(--wine); font-family: var(--serif); font-size: 23px; }
.check-card p { margin: 0; color: var(--muted); font-size: 14px; }

.timeline { position: relative; max-width: 920px; margin: 0 auto; }
.timeline::before { position: absolute; top: 0; bottom: 0; left: 45px; width: 1px; content: ""; background: var(--gold-light); }
.timeline-step { position: relative; display: grid; grid-template-columns: 90px 1fr; gap: 38px; padding-bottom: 56px; }
.timeline-step:last-child { padding-bottom: 0; }
.timeline-no { position: relative; z-index: 1; display: grid; width: 90px; height: 90px; place-content: center; color: var(--wine); background: var(--cream); border: 1px solid var(--gold); border-radius: 50%; font-family: var(--serif); font-size: 25px; }
.timeline-content { padding: 8px 0 0; }
.timeline-content h2 { margin: 0 0 8px; color: var(--wine); font-family: var(--serif); font-size: 31px; }
.timeline-content p { margin: 0; color: var(--muted); }
.timeline-content .tip { display: inline-block; margin-top: 14px; padding: 7px 11px; color: var(--wine); background: var(--paper); font-size: 12px; }

.aftercare-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.aftercare-card { padding: 32px; border: 1px solid rgba(255,255,255,.18); }
.aftercare-card small { color: var(--gold-light); font-weight: 700; letter-spacing: .16em; }
.aftercare-card h3 { margin: 18px 0 8px; font-family: var(--serif); font-size: 26px; }
.aftercare-card p { margin: 0; color: rgba(255,255,255,.7); font-size: 14px; }

.faq-wrap { display: grid; grid-template-columns: .45fr 1fr; gap: 72px; }
.faq-intro { position: sticky; top: 130px; align-self: start; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { position: relative; padding: 27px 48px 27px 0; color: var(--wine); cursor: pointer; list-style: none; font-family: var(--serif); font-size: 22px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { position: absolute; right: 4px; top: 26px; content: "+"; font-family: var(--sans); font-size: 25px; font-weight: 300; }
.faq-item[open] summary::after { content: "−"; }
.faq-answer { padding: 0 55px 28px 0; color: var(--muted); }
.faq-answer p { margin: 0; }

.contact-grid { display: grid; grid-template-columns: 1fr .9fr; gap: 42px; }
.contact-panel { padding: 42px; background: var(--white); border: 1px solid var(--line); }
.contact-panel h2 { margin: 0 0 28px; color: var(--wine); font-family: var(--serif); font-size: 34px; }
.contact-list { margin: 0; }
.contact-row { display: grid; grid-template-columns: 110px 1fr; gap: 22px; padding: 19px 0; border-top: 1px solid var(--line); }
.contact-row:last-child { border-bottom: 1px solid var(--line); }
.contact-row dt { color: var(--wine-soft); font-size: 12px; font-weight: 700; letter-spacing: .08em; }
.contact-row dd { margin: 0; }
.contact-row a { color: var(--wine); font-weight: 700; }
.map-panel { position: relative; overflow: hidden; min-height: 510px; color: var(--white); background: #e8e3d8; border: 1px solid var(--line); }
.google-map { display: block; width: 100%; height: 510px; border: 0; filter: saturate(.82) contrast(.96); }
.map-panel__copy { position: absolute; z-index: 1; right: 18px; bottom: 18px; left: 18px; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 20px 22px; color: var(--white); background: rgba(38,7,11,.94); box-shadow: 0 14px 36px rgba(30,4,7,.2); backdrop-filter: blur(8px); }
.map-panel__copy h3 { margin: 0 0 5px; font-family: var(--serif); font-size: 24px; }
.map-panel__copy p { margin: 0; color: rgba(255,255,255,.7); font-size: 13px; }
.map-external-link { flex: 0 0 auto; padding-bottom: 3px; color: var(--gold-light); border-bottom: 1px solid rgba(216,199,158,.55); font-size: 12px; font-weight: 700; white-space: nowrap; }
.quick-contact { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 20px; }
.quick-contact a { display: flex; min-height: 84px; flex-direction: column; justify-content: center; padding: 15px 20px; color: var(--wine); background: var(--paper); }
.quick-contact small { color: var(--muted); font-size: 10px; letter-spacing: .1em; }
.quick-contact strong { font-family: var(--serif); font-size: 20px; }
.contact-socials { margin: 30px 0 26px; padding: 24px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.contact-socials__title { margin: 0; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .14em; }
.contact-socials .footer-socials { align-items: center; margin-top: 14px; }
.contact-socials .social-icon { color: var(--wine); border-color: var(--line); }
.contact-socials .social-icon:hover { color: var(--white); background: var(--wine); border-color: var(--wine); }
.social-text-link { margin-left: 3px; color: var(--wine); font-family: var(--serif); font-size: 18px; }

.site-footer { padding: 72px 0 24px; color: rgba(255,255,255,.78); background: #26070b; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .7fr; gap: 70px; padding-bottom: 54px; }
.footer-brand { color: var(--white); font-family: var(--serif); font-size: 25px; }
.footer-subbrand { color: var(--gold-light); font-size: 9px; font-weight: 700; letter-spacing: .16em; }
.footer-about { max-width: 430px; margin: 19px 0 0; color: rgba(255,255,255,.58); font-size: 14px; }
.footer-title { margin: 0 0 15px; color: var(--gold-light); font-size: 11px; font-weight: 700; letter-spacing: .16em; }
.footer-links { display: grid; gap: 9px; font-size: 14px; }
.footer-links a:hover { color: var(--white); }
.footer-socials { display: flex; gap: 9px; margin-top: 21px; }
.footer-socials .social-icon { color: var(--gold-light); border-color: rgba(255,255,255,.2); }
.footer-socials .social-icon:hover { color: var(--wine-dark); background: var(--gold-light); border-color: var(--gold-light); }
.mobile-socials { display: flex; gap: 10px; padding-top: 20px; }
.mobile-nav .mobile-socials a { width: 48px; height: 48px; padding: 0; border: 1px solid var(--line); font-family: var(--sans); }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.45); font-size: 12px; }
.mobile-actions { display: none; }
.announcement-bar { padding: 9px 20px; text-align: center; color: var(--wine-dark); background: var(--gold-light); font-size: 13px; font-weight: 700; }
.announcement-bar a { border-bottom: 1px solid currentColor; }
.inquiry-section { background: var(--paper); border-top: 1px solid var(--line); }
.inquiry-grid { display: grid; grid-template-columns: .72fr 1.28fr; align-items: start; gap: 75px; }
.inquiry-form { display: grid; gap: 17px; padding: 38px; background: var(--white); border: 1px solid var(--line); box-shadow: 0 18px 55px rgba(69,32,22,.06); }
.inquiry-form label { display: grid; gap: 7px; color: var(--wine); font-size: 13px; font-weight: 700; }
.inquiry-form input,.inquiry-form select,.inquiry-form textarea { width: 100%; padding: 12px 13px; color: var(--ink); background: var(--cream); border: 1px solid rgba(101,13,24,.24); border-radius: 0; font: inherit; outline: none; }
.inquiry-form input:focus,.inquiry-form select:focus,.inquiry-form textarea:focus { border-color: var(--wine); box-shadow: 0 0 0 3px rgba(101,13,24,.07); }
.inquiry-form small { color: var(--muted); font-weight: 400; }
.form-two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.inquiry-form .consent { display: flex; align-items: flex-start; color: var(--muted); font-weight: 400; }
.inquiry-form .consent input { width: 18px; height: 18px; flex: 0 0 auto; margin-top: 2px; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.inquiry-result { min-height: 22px; margin: 0; font-size: 14px; }
.inquiry-result.success { color: #16663f; }
.inquiry-result.error { color: #a4262c; }
.privacy-link { margin: -5px 0 2px; font-size: 13px; }
.privacy-link a { color: var(--wine); border-bottom: 1px solid currentColor; }
.privacy-content { display: grid; grid-template-columns: .42fr 1fr; gap: 70px; }
.privacy-nav { position: sticky; top: 130px; align-self: start; padding: 28px; background: var(--paper); border-left: 2px solid var(--gold); }
.privacy-nav a { display: block; padding: 8px 0; color: var(--wine); font-weight: 700; }
.privacy-sections { display: grid; gap: 42px; }
.privacy-section { padding-bottom: 38px; border-bottom: 1px solid var(--line); }
.privacy-section h2 { margin: 0 0 13px; color: var(--wine); font-family: var(--serif); font-size: 30px; }
.privacy-section p { margin: 0; color: var(--muted); }

@media (max-width: 980px) {
  .site-header { overflow: visible; }
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .mobile-nav { position: absolute; z-index: 45; top: 100%; right: 0; left: 0; height: calc(100dvh - 72px); overflow-y: auto; display: flex; flex-direction: column; gap: 0; padding: 30px 24px; color: var(--wine); background: var(--cream); visibility: hidden; opacity: 0; transform: translateY(-10px); transition: visibility .2s ease, opacity .2s ease, transform .2s ease; }
  .menu-open .mobile-nav { visibility: visible; opacity: 1; transform: none; }
  .mobile-nav a { padding: 17px 5px; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 25px; }
  .mobile-nav .lang-switch { width: 58px; margin-top: 24px; font-family: var(--sans); font-size: 12px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-art { min-height: 440px; }
  .hero-photo { left: 0; }
  .steps { grid-template-columns: repeat(2,1fr); }
  .step:nth-child(2) { border-right: 1px solid var(--line); }
  .step:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .split { gap: 42px; }
  .quote-panel { padding: 40px; }
  .quote-panel blockquote { margin-top: 170px; }
  .faq-wrap { grid-template-columns: 1fr; gap: 38px; }
  .faq-intro { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .inquiry-grid { grid-template-columns: 1fr; gap: 35px; }
  .privacy-content { grid-template-columns: 1fr; gap: 35px; }
  .privacy-nav { position: static; }
  .social-grid { grid-template-columns: 1fr; gap: 38px; }
}

@media (max-width: 720px) {
  body { padding-bottom: 68px; }
  .container { width: min(100% - 30px, 1160px); }
  .section { padding: 72px 0; }
  .section--tight { padding: 54px 0; }
  .topbar__inner { justify-content: center; text-align: center; }
  .topbar__inner span:last-child { display: none; }
  .header-inner { height: 72px; }
  .brand { min-width: 0; gap: 9px; }
  .brand-logo { width: 33px; height: 54px; }
  .brand-name strong { font-size: 17px; letter-spacing: .04em; }
  .brand-name small { margin-top: 6px; font-size: 6px; letter-spacing: .07em; }
  .hero,
  .hero-grid { min-height: auto; }
  .hero-grid { padding: 60px 0 48px; }
  .hero-art { min-height: 370px; }
  .hero-photo { inset: 0 10px 0 10px; }
  .seal { right: 3px; bottom: -16px; width: 135px; height: 135px; }
  .seal strong { font-size: 21px; }
  .button-row .button { flex: 1; min-width: 145px; }
  .hero-note { gap: 7px 15px; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit { padding: 21px 0; border-left: 0; border-bottom: 1px solid var(--line); }
  .benefit:last-child { border-right: 0; border-bottom: 0; }
  .section-heading { display: block; }
  .section-heading .lead { margin-top: 18px; }
  .card-grid,
  .service-detail-grid,
  .check-grid,
  .aftercare-grid { grid-template-columns: 1fr; }
  .service-card,
  .service-card--wide { grid-column: auto; min-height: 350px; }
  .service-card__copy { padding: 25px; }
  .steps { grid-template-columns: 1fr; }
  .step { min-height: 0; padding: 28px 22px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .step h3 { margin-top: 22px; }
  .split { grid-template-columns: 1fr; }
  .quote-panel { min-height: 440px; }
  .quote-panel blockquote { margin-top: 135px; }
  .term-box { grid-template-columns: 1fr; gap: 27px; padding: 30px 24px; }
  .cta-grid { display: block; }
  .cta .button-row { margin-top: 26px; }
  .social-actions { grid-template-columns: 1fr; }
  .page-hero { padding: 64px 0; }
  .page-hero__grid { grid-template-columns: 1fr; gap: 38px; }
  .page-hero__mark { display: none; }
  .timeline::before { left: 30px; }
  .timeline-step { grid-template-columns: 60px 1fr; gap: 22px; }
  .timeline-no { width: 60px; height: 60px; font-size: 19px; }
  .timeline-content { padding-top: 0; }
  .timeline-content h2 { font-size: 26px; }
  .faq-item summary { font-size: 20px; }
  .contact-panel { padding: 28px 23px; }
  .google-map { height: 470px; }
  .map-panel { min-height: 470px; }
  .map-panel__copy { right: 12px; bottom: 12px; left: 12px; display: block; padding: 17px 18px; }
  .map-panel__copy h3 { font-size: 21px; }
  .map-external-link { display: inline-block; margin-top: 12px; }
  .contact-row { grid-template-columns: 1fr; gap: 4px; }
  .quick-contact { grid-template-columns: 1fr; }
  .inquiry-form { padding: 27px 21px; }
  .form-two { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-bottom { display: block; }
  .footer-bottom span { display: block; margin-top: 7px; }
  .mobile-actions { position: fixed; z-index: 70; right: 0; bottom: 0; left: 0; display: grid; height: 68px; grid-template-columns: 1fr 1fr; box-shadow: 0 -7px 22px rgba(30,4,7,.18); }
  .mobile-actions a { display: flex; align-items: center; justify-content: center; gap: 8px; color: var(--white); background: var(--wine); font-size: 14px; font-weight: 700; }
  .mobile-actions a:last-child { color: var(--wine-dark); background: var(--gold-light); }
}

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