:root {
  --navy: #14263f;
  --navy-deep: #0d1a2c;
  --blue: #2a5a8c;
  --gold: #a98450;
  --gold-dark: #8a6a3c;
  --bg: #ffffff;
  --tint: #f5f3ee;
  --line: #e2ddd2;
  --text: #24303d;
  --muted: #5d6a78;
  --max: 1080px;
  --sans: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  --serif: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body { font-family: var(--sans); color: var(--text); background: var(--bg); line-height: 1.9; font-size: 16px; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }

/* Top bar */
.topbar { background: var(--navy-deep); color: #e8edf3; font-size: 0.82rem; }
.topbar-inner { max-width: var(--max); margin: 0 auto; padding: 8px 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.topbar strong { color: #e9cf9f; }
.topbar-tel a { font-weight: 700; letter-spacing: 0.05em; color: #fff; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255, 255, 255, 0.97); border-bottom: 1px solid var(--line); backdrop-filter: blur(6px); }
.header-inner { max-width: var(--max); margin: 0 auto; padding: 14px 24px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: flex-end; color: #2b2b2b; line-height: 1; }
.brand-mark { height: 56px; width: auto; flex: none; }
.brand-word { font-family: "Oswald", "Noto Sans JP", sans-serif; font-weight: 600; font-size: 1.62rem; letter-spacing: 0.05em; margin-left: -16px; margin-bottom: 6px; white-space: nowrap; }
.main-nav { display: flex; align-items: center; }
.nav-list { display: flex; align-items: center; gap: 24px; }
.nav-list a { font-size: 0.88rem; font-weight: 500; color: var(--navy); transition: color 0.2s; }
.nav-list a:hover { color: var(--gold-dark); }
.nav-cta { background: var(--navy); color: #fff !important; padding: 10px 20px; border-radius: 4px; font-weight: 700 !important; }
.nav-cta:hover { background: var(--blue); }
.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 32px; height: 32px; background: none; border: none; cursor: pointer; }
.nav-toggle span { display: block; height: 2px; background: var(--navy); }

/* Hero */
.hero { position: relative; color: #fff; overflow: hidden; }
.hero-bg { position: absolute; inset: -3%; animation: heroDrift 40s ease-in-out infinite alternate; }
.hero-slide { position: absolute; inset: 0; background-repeat: no-repeat; background-size: cover; opacity: 0; transition: opacity 1.8s ease; }
.hero-slide-1 { background-image: url("images/hero-house.jpg"); background-position: 60% center; }
.hero-slide-2 { background-image: url("images/hero-house2.jpg"); background-position: 62% center; }
.hero-slide-3 { background-image: url("images/hero-original3.jpg"); background-position: 62% center; }
.hero[data-slide="0"] .hero-slide-1, .hero[data-slide="1"] .hero-slide-2, .hero[data-slide="2"] .hero-slide-3 { opacity: 1; }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8, 30, 20, 0.66) 0%, rgba(8, 30, 20, 0.42) 40%, rgba(8, 30, 20, 0.08) 70%, rgba(8, 30, 20, 0) 100%); pointer-events: none; }
.hero-inner { position: relative; max-width: var(--max); margin: 0 auto; padding: 120px 24px 130px; }
.hero-eyebrow { display: inline-block; font-size: 0.85rem; letter-spacing: 0.25em; padding-bottom: 8px; border-bottom: 1px solid var(--gold); color: #ecd9b5; margin-bottom: 26px; }
.hero h1 { font-family: var(--serif); font-size: clamp(1.9rem, 4.6vw, 3.4rem); font-weight: 700; line-height: 1.6; letter-spacing: 0.06em; margin-bottom: 26px; }
.hero-lead { max-width: 560px; font-size: 1rem; color: #e6ebf1; margin-bottom: 36px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 15px 34px; border-radius: 4px; font-weight: 700; font-size: 0.98rem; border: 2px solid transparent; cursor: pointer; transition: background 0.2s, color 0.2s, border-color 0.2s; font-family: inherit; }
.btn-primary { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.7); }
.btn-ghost span { font-size: 0.8rem; opacity: 0.85; }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.14); }

/* Facts */
.facts { background: #fff; border-bottom: 1px solid var(--line); }
.facts-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); }
.fact { text-align: center; padding: 30px 12px; border-right: 1px solid var(--line); }
.fact:last-child { border-right: none; }
.fact-num { display: block; font-family: var(--serif); font-size: 2.1rem; font-weight: 700; color: var(--navy); line-height: 1.2; }
.fact-num small { font-size: 0.95rem; margin-left: 3px; }
.fact-label { display: block; margin-top: 6px; font-size: 0.78rem; color: var(--muted); line-height: 1.6; }

/* Sections */
.section { padding: 92px 24px; }
.section-tint { background: var(--tint); }
.section-inner { max-width: var(--max); margin: 0 auto; }
.section-eyebrow { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.28em; color: var(--gold-dark); margin-bottom: 10px; }
.section-title { font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 700; color: var(--navy); line-height: 1.6; margin-bottom: 20px; padding-bottom: 18px; position: relative; }
.section-title::after { content: ""; position: absolute; left: 0; bottom: 0; width: 56px; height: 3px; background: var(--gold); }
.section-lead { max-width: 820px; color: var(--muted); margin-bottom: 44px; }
.section-note { margin-top: 24px; color: var(--muted); font-size: 0.92rem; }

/* Reasons */
.reasons { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.reason { background: #fff; border: 1px solid var(--line); border-top: 3px solid var(--navy); padding: 30px 28px; }
.reason-no { display: block; font-family: var(--serif); font-size: 1.8rem; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 12px; }
.reason h3 { font-size: 1.12rem; color: var(--navy); margin-bottom: 8px; line-height: 1.6; }
.reason p { font-size: 0.94rem; color: var(--muted); }

/* Split */
.split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.split-text p { margin-bottom: 1.1em; }
.split-photo img { width: 100%; border-radius: 4px; box-shadow: 0 16px 36px rgba(13, 26, 44, 0.16); }
.photo-note { margin-top: 8px; font-size: 0.78rem; color: var(--muted); text-align: right; }

/* Services */
.service-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.service-grid li { background: #fff; border: 1px solid var(--line); border-left: 3px solid var(--gold); padding: 18px 14px; font-weight: 700; color: var(--navy); font-size: 0.95rem; line-height: 1.5; }
.service-grid small { display: block; margin-top: 4px; font-weight: 400; font-size: 0.74rem; color: var(--muted); }

/* Flow */
.flow { max-width: 860px; position: relative; }
.flow li { display: grid; grid-template-columns: 56px 1fr; gap: 22px; padding-bottom: 32px; position: relative; }
.flow li:not(:last-child)::before { content: ""; position: absolute; left: 27px; top: 56px; bottom: 0; width: 2px; background: var(--line); }
.flow-no { width: 56px; height: 56px; border-radius: 50%; background: var(--navy); color: #fff; font-family: var(--serif); font-size: 1.4rem; font-weight: 700; display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; }
.flow h3 { font-size: 1.1rem; color: var(--navy); margin: 6px 0 4px; }
.flow p { font-size: 0.94rem; color: var(--muted); }

/* Warranty */
.warranty-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.warranty-card { border: 1px solid var(--line); padding: 32px 28px; background: #fff; box-shadow: 0 8px 24px rgba(13, 26, 44, 0.05); }
.warranty-tag { display: inline-block; background: var(--navy); color: #fff; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; padding: 3px 12px; margin-bottom: 12px; }
.warranty-tag-alt { background: var(--gold); }
.warranty-card h3 { font-family: var(--serif); font-size: 1.25rem; color: var(--navy); margin-bottom: 10px; }
.warranty-card p { font-size: 0.93rem; color: var(--muted); }
.warranty-card p + p { margin-top: 10px; }
.warranty-em { font-weight: 700; color: var(--navy) !important; background: var(--tint); padding: 10px 14px; border-left: 3px solid var(--gold); }
.check-list { margin-top: 14px; display: grid; gap: 6px; }
.check-list li { position: relative; padding-left: 22px; font-size: 0.9rem; }
.check-list li::before { content: ""; position: absolute; left: 2px; top: 0.6em; width: 10px; height: 6px; border-left: 2px solid var(--gold-dark); border-bottom: 2px solid var(--gold-dark); transform: rotate(-45deg); }

/* CTA band */
.section-dark { background: linear-gradient(120deg, var(--navy-deep) 0%, var(--navy) 100%); color: #fff; padding: 64px 24px; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-band h2 { font-family: var(--serif); font-size: 1.6rem; margin-bottom: 8px; }
.cta-band p { color: #d5dde7; max-width: 560px; }
.cta-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

/* Company */
.info-table { width: 100%; max-width: 860px; border-collapse: collapse; }
.info-table th, .info-table td { text-align: left; padding: 18px 20px; border-bottom: 1px solid var(--line); vertical-align: top; }
.info-table th { width: 170px; background: var(--tint); color: var(--navy); font-weight: 700; font-size: 0.92rem; }
.info-table a { color: var(--blue); font-weight: 700; }

/* Access */
.access-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 40px; align-items: start; }
.access-name { font-family: var(--serif); font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.access-tel { margin-top: 10px; }
.access-tel a { font-weight: 700; color: var(--blue); }
.map-embed iframe { width: 100%; height: 340px; border: 0; }

/* Contact */
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-ways { display: grid; gap: 12px; margin-top: 26px; }
.contact-way { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 18px 22px; border: 1px solid var(--line); background: #fff; transition: border-color 0.2s, box-shadow 0.2s; }
.contact-way:hover { border-color: var(--gold); box-shadow: 0 8px 20px rgba(13, 26, 44, 0.08); }
.contact-way span { font-size: 0.82rem; color: var(--muted); font-weight: 700; }
.contact-way strong { font-size: 1.15rem; color: var(--navy); }
.contact-form { display: grid; gap: 18px; background: var(--tint); padding: 34px 30px; border: 1px solid var(--line); }
.contact-form label { display: grid; gap: 6px; font-weight: 700; font-size: 0.9rem; color: var(--navy); }
.req { display: inline-block; margin-left: 8px; font-size: 0.68rem; font-weight: 700; color: #fff; background: #b04a3c; padding: 1px 8px; border-radius: 2px; vertical-align: middle; }
.contact-form input, .contact-form textarea { width: 100%; padding: 12px 14px; font: inherit; font-weight: 400; border: 1px solid #cfc8ba; border-radius: 3px; background: #fff; color: var(--text); }
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--blue); outline-offset: 0; border-color: var(--blue); }
.form-note { font-size: 0.85rem; color: #8a3a2f; }

/* Footer */
.site-footer { background: var(--navy-deep); color: #cfd8e3; padding: 52px 24px 0; }
.footer-inner { max-width: var(--max); margin: 0 auto; display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap; padding-bottom: 36px; }
.footer-brand { display: flex; align-items: flex-end; color: #fff; margin-bottom: 14px; }
.footer-brand .brand-mark { height: 44px; }
.footer-brand .brand-word { font-size: 1.28rem; margin-left: -12px; margin-bottom: 4px; }
.footer-address { font-size: 0.86rem; }
.footer-nav { display: grid; grid-template-columns: repeat(2, auto); gap: 8px 40px; font-size: 0.88rem; }
.footer-nav a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.12); text-align: center; padding: 18px 0; font-size: 0.78rem; color: #94a2b3; }

/* Reveal */
.reveal-on .reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal-on .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal-on .reveal { opacity: 1; transform: none; transition: none; }
}

/* Responsive */
@media (max-width: 900px) {
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .split, .contact-inner, .access-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .topbar-inner { justify-content: center; text-align: center; padding: 8px 16px; }
  .nav-toggle { display: flex; }
  .nav-list { position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column; align-items: stretch; gap: 0; border-bottom: 1px solid var(--line); max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
  .nav-list.open { max-height: 520px; }
  .nav-list li { border-top: 1px solid var(--line); }
  .nav-list a { display: block; padding: 15px 24px; }
  .nav-list .nav-cta { margin: 12px 24px; text-align: center; padding: 13px 20px; }
  .header-inner { padding: 12px 20px; }
  .hero-inner { padding: 72px 20px 84px; }
.hero-slide-1 { background-position: 68% center; }
.hero-slide-2 { background-position: 66% center; }
.hero-slide-3 { background-position: 70% center; }
.hero-bg::after { background: linear-gradient(180deg, rgba(8, 30, 20, 0.78) 0%, rgba(8, 30, 20, 0.6) 100%); }
  .facts-inner { grid-template-columns: repeat(2, 1fr); }
  .fact:nth-child(2) { border-right: none; }
  .fact:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section { padding: 64px 20px; }
  .reasons, .warranty-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .flow li { grid-template-columns: 44px 1fr; gap: 16px; }
  .flow-no { width: 44px; height: 44px; font-size: 1.1rem; }
  .flow li:not(:last-child)::before { left: 21px; top: 44px; }
  .info-table th { width: 110px; padding: 14px 12px; font-size: 0.82rem; }
  .info-table td { padding: 14px 12px; font-size: 0.92rem; }
  .contact-form { padding: 24px 18px; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; }
  .hero-actions, .cta-buttons { flex-direction: column; width: 100%; }
}

.hero h1, .section-title, .reason h3, .flow h3, .warranty-card h3, .cta-band h2, .hero-lead {
  word-break: auto-phrase;
}

@media (max-width: 768px) {
  .hero h1 { font-size: clamp(1.5rem, 6.4vw, 2.1rem); line-height: 1.65; }
  .hero-eyebrow { font-size: 0.78rem; letter-spacing: 0.18em; }
  .topbar-tel { display: none; }
}

.topbar-sep { margin: 0 6px; opacity: 0.6; }

/* Hero: gentle natural motion */
@keyframes heroDrift {
  0% { transform: scale(1) translate3d(0, 0, 0); }
  100% { transform: scale(1.07) translate3d(-1.2%, -0.8%, 0); }
}

.hero-rays {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(255, 255, 230, 0) 30%, rgba(255, 255, 230, 0.16) 42%, rgba(255, 255, 230, 0) 54%),
    linear-gradient(115deg, rgba(255, 255, 230, 0) 52%, rgba(255, 255, 230, 0.1) 62%, rgba(255, 255, 230, 0) 72%);
  background-size: 160% 100%;
  animation: raysShift 22s ease-in-out infinite alternate;
  mix-blend-mode: screen;
}

@keyframes raysShift {
  0% { background-position: 0% 0; opacity: 0.55; }
  100% { background-position: 60% 0; opacity: 1; }
}

.hero-leaves {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-leaves span {
  position: absolute;
  top: -30px;
  width: 14px;
  height: 14px;
  background: linear-gradient(135deg, rgba(190, 230, 140, 0.85), rgba(90, 160, 80, 0.75));
  border-radius: 0 100% 0 100%;
  opacity: 0;
  animation: leafFall linear infinite;
}

@keyframes leafFall {
  0% { transform: translate3d(0, 0, 0) rotate(0deg); opacity: 0; }
  10% { opacity: 0.85; }
  50% { transform: translate3d(var(--sway, 40px), 55vh, 0) rotate(160deg); }
  90% { opacity: 0.7; }
  100% { transform: translate3d(calc(var(--sway, 40px) * -0.6), 115vh, 0) rotate(340deg); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg, .hero-rays, .hero-leaves span { animation: none; }
}


/* Desktop: show the supplied hero image as-is (text is part of the picture) */
@media (min-width: 769px) {
  .hero { aspect-ratio: 1683 / 935; }
  .hero-bg { inset: 0; animation: none; }
  .hero-slide { background-size: 100% 100%; background-position: center; }
  .hero-slide-1 { background-image: url("images/hero-original-r3.jpg"); background-position: center; }
  .hero-slide-2 { background-image: url("images/hero-original2-r3.jpg"); background-position: center; }
  .hero-slide-3 { background-position: center; }
  .hero-slide-3::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8, 30, 20, 0.74) 0%, rgba(8, 30, 20, 0.5) 38%, rgba(8, 30, 20, 0.12) 66%, rgba(8, 30, 20, 0) 100%); }
  .hero-bg::after, .hero-rays { display: none; }
  .hero-inner { position: absolute; left: 7.13%; top: 17%; width: 56%; max-width: none; margin: 0; padding: 0; opacity: 0; visibility: hidden; transition: opacity 1.2s ease, visibility 0s 1.2s; }
  .hero[data-slide="2"] .hero-inner { opacity: 1; visibility: visible; transition: opacity 1.4s ease 0.5s, visibility 0s; }
  .hero[data-slide="2"] .hero-hit { visibility: hidden; pointer-events: none; }
  .hero-inner .hero-eyebrow { font-size: 1.05vw; margin-bottom: 1.5vw; }
  .hero-inner h1 { font-size: 3.5vw; line-height: 1.55; margin-bottom: 2vw; }
  .hero-inner .hero-lead { font-size: 1.1vw; max-width: 44vw; margin-bottom: 2.4vw; }
  .hero-inner .btn { padding: 1.05vw 2.4vw; font-size: 1vw; }
  .hero-hit { position: absolute; z-index: 3; top: 67.38%; height: 7.166%; border-radius: 4px; }
  .hero-hit:hover { background: rgba(255, 255, 255, 0.12); }
  .hero-hit:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
  .hero-hit-consult { left: 7.13%; width: 13.904%; }
  .hero-hit-tel1 { left: 22.222%; width: 14.141%; }
  .hero-hit-tel2 { left: 37.552%; width: 14.676%; }
}

@media (max-width: 768px) {
  .hero-hit { display: none; }
}

/* Price table */
.sr-only { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.price-wrap { max-width: 860px; }
.price-table { width: 100%; border-collapse: separate; border-spacing: 0; background: #fff; border: 1px solid var(--line); box-shadow: 0 8px 24px rgba(13, 26, 44, 0.06); }
.price-table thead th { background: var(--navy); color: #fff; font-size: 0.92rem; font-weight: 700; padding: 16px 14px; text-align: center; letter-spacing: 0.06em; }
.price-table thead th:first-child { text-align: left; padding-left: 26px; }
.price-table tbody th { text-align: left; font-weight: 700; color: var(--navy); padding: 18px 14px 18px 26px; background: var(--tint); border-top: 1px solid var(--line); font-size: 1rem; }
.price-table tbody td { text-align: center; padding: 18px 14px; border-top: 1px solid var(--line); font-size: 1.05rem; font-weight: 700; color: var(--text); font-feature-settings: "palt"; }
.price-table tbody td:last-child { color: var(--navy); }
.price-table tbody tr:nth-child(even) td { background: #fbfaf7; }
.price-table small { font-size: 0.78rem; font-weight: 500; color: var(--muted); margin-left: 2px; }
.price-note { margin-top: 18px; color: var(--muted); font-size: 0.92rem; }
.price-cta { margin-top: 22px; }

@media (max-width: 768px) {
  .price-table thead th { font-size: 0.74rem; padding: 12px 6px; letter-spacing: 0; }
  .price-table thead th:first-child { padding-left: 12px; }
  .price-table tbody th { padding: 14px 6px 14px 12px; font-size: 0.86rem; }
  .price-table tbody td { padding: 14px 4px; font-size: 0.86rem; }
  .price-table small { display: block; margin: 0; font-size: 0.68rem; }
}

/* AWP */
.awp-intro { background: linear-gradient(180deg, #ffffff 0%, #f3f8f9 100%); }
.awp-intro-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.awp-catch { font-family: var(--serif); font-size: clamp(1.25rem, 2.3vw, 1.7rem); font-weight: 700; line-height: 1.7; color: var(--blue); margin: 4px 0 18px; }
.awp-intro-text > p { margin-bottom: 1.1em; }
.awp-chips { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 22px 0 28px; }
.awp-chips li { background: #fff; border: 1px solid var(--line); border-left: 3px solid var(--gold); padding: 12px 14px; font-size: 0.8rem; color: var(--muted); line-height: 1.5; }
.awp-chips strong { display: block; font-size: 1.05rem; color: var(--navy); }
.awp-intro-photo img { width: 100%; border-radius: 6px; box-shadow: 0 18px 40px rgba(13, 26, 44, 0.18); }

.awp-worries { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.awp-worry { background: #fff; border: 1px solid var(--line); border-top: 3px solid var(--blue); padding: 28px 24px; }
.awp-worry h3 { font-family: var(--serif); font-size: 1.3rem; color: var(--navy); margin-bottom: 4px; }
.awp-worry-lead { font-weight: 700; font-size: 0.86rem; color: var(--gold-dark); margin-bottom: 10px; line-height: 1.6; }
.awp-worry p:last-child { font-size: 0.92rem; color: var(--muted); }

.awp-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.awp-feature { padding: 30px 28px; background: #fff; border: 1px solid var(--line); box-shadow: 0 8px 24px rgba(13, 26, 44, 0.05); }
.awp-feature-no { display: block; font-family: var(--serif); font-size: 1.9rem; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 10px; }
.awp-feature h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 8px; line-height: 1.6; }
.awp-feature p { font-size: 0.93rem; color: var(--muted); }

.awp-compare { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 32px; }
.awp-compare-card { background: linear-gradient(135deg, #14263f, #1f3f66); color: #fff; padding: 30px 28px; border-radius: 4px; }
.awp-compare-card h3 { font-size: 1rem; margin-bottom: 4px; }
.awp-compare-sub { font-size: 0.8rem; color: #b9c8db; margin-bottom: 18px; }
.awp-compare-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.awp-compare-row > div { flex: 1; background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.25); text-align: center; padding: 14px 8px; border-radius: 3px; }
.awp-compare-row span { display: block; font-size: 0.78rem; color: #cbd6e4; }
.awp-compare-row strong { display: block; font-family: var(--serif); font-size: 2rem; line-height: 1.3; }
.awp-compare-row i { font-style: normal; color: #e9cf9f; }
.awp-compare-row .awp-compare-after { background: rgba(233, 207, 159, 0.2); border-color: #e9cf9f; }
.awp-foot { margin-top: 18px; font-size: 0.8rem; color: var(--muted); }

.awp-tests { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.awp-test { background: #fff; border: 1px solid var(--line); padding: 18px 12px; text-align: center; }
.awp-test strong { display: block; font-size: 0.86rem; color: var(--navy); margin-bottom: 6px; line-height: 1.5; }
.awp-test span { display: block; font-size: 0.76rem; color: var(--muted); line-height: 1.5; }
.awp-test em { display: inline-block; margin-top: 8px; font-style: normal; font-size: 0.74rem; font-weight: 700; color: #fff; background: var(--blue); padding: 2px 10px; border-radius: 999px; }

.awp-assure { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 30px; }
.awp-assure > div { border-left: 3px solid var(--gold); padding: 6px 0 6px 18px; }
.awp-assure h3 { font-size: 1rem; color: var(--navy); margin-bottom: 4px; }
.awp-assure p { font-size: 0.88rem; color: var(--muted); }

.awp-details { margin-top: 36px; display: grid; gap: 12px; }
.awp-details details { background: #fff; border: 1px solid var(--line); }
.awp-details summary { cursor: pointer; padding: 16px 22px; font-weight: 700; color: var(--navy); list-style: none; position: relative; }
.awp-details summary::-webkit-details-marker { display: none; }
.awp-details summary::after { content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%); font-size: 1.3rem; color: var(--gold-dark); }
.awp-details details[open] summary::after { content: "−"; }
.awp-details details > *:not(summary) { margin: 0 22px 20px; }
.awp-spec { width: calc(100% - 44px); border-collapse: collapse; }
.awp-spec th, .awp-spec td { text-align: left; padding: 10px 12px; border-top: 1px solid var(--line); font-size: 0.88rem; vertical-align: top; }
.awp-spec th { width: 190px; background: var(--tint); color: var(--navy); }
.awp-cartridge { display: grid; grid-template-columns: 220px 1fr; gap: 22px; align-items: start; }
.awp-cartridge img { width: 100%; border-radius: 4px; }
.awp-bullets { display: grid; gap: 8px; }
.awp-bullets li { position: relative; padding-left: 16px; font-size: 0.9rem; color: var(--muted); }
.awp-bullets li::before { content: ""; position: absolute; left: 0; top: 0.75em; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

@media (max-width: 900px) {
  .awp-intro-grid { grid-template-columns: 1fr; gap: 32px; }
  .awp-tests { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .awp-worries, .awp-features, .awp-compare, .awp-assure { grid-template-columns: 1fr; }
  .awp-tests { grid-template-columns: repeat(2, 1fr); }
  .awp-cartridge { grid-template-columns: 1fr; }
  .awp-spec { display: block; width: auto; }
  .awp-spec tr { display: block; }
  .awp-spec th, .awp-spec td { display: block; width: auto; }
  .awp-details summary { padding: 14px 16px; }
  .awp-details details > *:not(summary) { margin: 0 16px 16px; }
}

.awp-compare > *, .awp-worries > *, .awp-features > * { min-width: 0; }
@media (max-width: 768px) {
  .awp-compare-card { padding: 24px 18px; }
  .awp-compare-row strong { font-size: 1.5rem; }
  .awp-compare-row { gap: 6px; }
}

.awp-price-note { margin-top: 14px; font-size: 0.8rem; color: var(--muted); }

.message-pair { font-family: var(--serif); font-size: 1.15rem; font-weight: 700; line-height: 1.9; color: var(--navy); padding: 14px 0 14px 20px; border-left: 3px solid var(--gold); margin: 1.6em 0; }

.message-inner { display: block; }
.message-inner .split-text { max-width: 860px; }
.message-banner { margin-top: 44px; }
.message-banner img { width: 100%; border-radius: 6px; box-shadow: 0 16px 36px rgba(13, 26, 44, 0.16); }

/* Logo: keep the wordmark clear of the roof line */
.brand-word { margin-left: -6px; margin-bottom: 2px; font-size: 1.5rem; }
.footer-brand .brand-word { margin-left: -4px; margin-bottom: 2px; font-size: 1.15rem; }
.brand-word { margin-left: 2px; margin-bottom: -1px; }
.footer-brand .brand-word { margin-left: 4px; margin-bottom: -1px; }

/* Logo (single SVG, matches the supplied design) */
.brand { color: #3a3a3a; }
.brand-logo { display: block; height: 60px; width: auto; }
.footer-brand .brand-logo { height: 52px; color: #fff; }
.footer-address a:hover { text-decoration: underline; }
