:root {
  --ivory: #f7f3ec;
  --paper: #fffdf9;
  --ink: #39332d;
  --muted: #746e66;
  --teal: #4f8585;
  --teal-dark: #315f60;
  --teal-pale: #dfeceb;
  --gold: #b99869;
  --line: #d9c8af;
  --line-green: #06c755;
  --serif: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  --sans: "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  --content: 1180px;
  --shadow: 0 16px 42px rgba(67, 54, 41, .10);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: .025em;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
figure, p, h1, h2, h3, dl, dd, ol, ul { margin-top: 0; }
.skip-link {
  position: fixed;
  z-index: 999;
  top: 8px;
  left: 8px;
  transform: translateY(-160%);
  padding: .65rem 1rem;
  color: #fff;
  background: var(--teal-dark);
}
.skip-link:focus { transform: none; }
.preview-bar {
  padding: 5px 16px;
  color: #fff;
  background: var(--teal-dark);
  font-size: 11px;
  text-align: center;
  letter-spacing: .12em;
}

/* Header */
.site-header {
  position: relative;
  z-index: 30;
  border-bottom: 1px solid rgba(185, 152, 105, .28);
  background: rgba(255, 253, 249, .96);
}
.header-inner {
  width: min(var(--content), calc(100% - 36px));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 18px;
  text-decoration: none;
}
.brand img { width: 180px; }
.global-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 23px;
}
.global-nav a {
  position: relative;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .07em;
}
.global-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--teal);
  transform: scaleX(0);
  transition: transform .2s ease;
}
.global-nav a:hover::after, .global-nav a:focus-visible::after { transform: scaleX(1); }
.header-line {
  padding: 10px 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--line-green);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.menu-button { display: none; }

/* Common */
.section {
  position: relative;
  padding: 108px max(24px, calc((100% - var(--content)) / 2));
}
.ornament-heading {
  margin: 0 auto 54px;
  text-align: center;
}
.ornament-heading::before,
.ornament-heading::after {
  content: "";
  display: inline-block;
  width: min(150px, 18vw);
  height: 1px;
  margin: 0 22px 9px;
  background: var(--line);
}
.ornament-heading p {
  margin-bottom: 4px;
  color: var(--teal-dark);
  font-size: 12px;
  letter-spacing: .18em;
}
.ornament-heading h2 {
  display: inline-block;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 500;
  letter-spacing: .16em;
}
.ornament-heading > span {
  display: block;
  margin-top: 7px;
  font-family: var(--serif);
  letter-spacing: .12em;
}
.ornament-heading.compact { margin-bottom: 42px; }
.ornament-heading.compact h2 { font-size: clamp(30px, 3.5vw, 44px); }
.button {
  display: inline-flex;
  min-height: 62px;
  padding: 14px 28px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: 999px;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .08em;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); box-shadow: 0 12px 25px rgba(35, 87, 54, .18); }
.button-line { color: #fff; background: var(--line-green); }
.button-line span {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--line-green);
  background: #fff;
  font-size: 10px;
  letter-spacing: -.03em;
}
.button.narrow { min-width: 360px; margin: 28px auto 0; display: flex; width: fit-content; }
.photo-consult { margin: 10px 0 0; text-align: center; font-size: 14px; }
.photo-consult::before { content: "▣"; margin-right: 8px; }
.section-note { margin: 42px 0 0; text-align: center; font-family: var(--serif); font-size: 16px; letter-spacing: .12em; }
.caption-note { margin: 28px 0 0; color: var(--muted); font-size: 13px; }

/* Hero */
.hero {
  position: relative;
  min-height: 790px;
  overflow: hidden;
  background: var(--paper);
}
.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  height: 16%;
  background: linear-gradient(to bottom, transparent, var(--paper));
  pointer-events: none;
}
.hero-image {
  position: absolute;
  inset: 0 0 0 34%;
  margin: 0;
}
.hero-image::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0 auto 0 0;
  width: 46%;
  background: linear-gradient(to right, var(--paper) 8%, rgba(255,253,249,.92) 45%, transparent);
}
.hero-image img { height: 100%; object-fit: cover; object-position: 50% 49%; }
.hero-image figcaption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 34px;
  padding: 4px 9px;
  background: rgba(255,253,249,.82);
  font-size: 10px;
}
.hero-copy {
  position: relative;
  z-index: 3;
  width: min(var(--content), calc(100% - 48px));
  min-height: 790px;
  margin: 0 auto;
  padding: 82px 56% 48px 0;
}
.hero-area {
  margin-bottom: 24px;
  color: var(--teal-dark);
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: .18em;
}
.hero h1 {
  margin-bottom: 30px;
  font-family: var(--serif);
  font-size: clamp(44px, 5.2vw, 72px);
  font-weight: 500;
  line-height: 1.42;
  letter-spacing: .08em;
}
.hero h1 em { color: var(--teal); font-style: normal; }
.hero-lead { margin-bottom: 28px; font-family: var(--serif); font-size: 18px; line-height: 2; }
.hero-facts {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 52px;
  left: 0;
  display: flex;
  width: min(var(--content), calc(100% - 48px));
  margin: 0 auto;
  padding: 0;
  flex-wrap: wrap;
  row-gap: 6px;
  justify-content: center;
  list-style: none;
}
.hero-facts li { padding: 3px 30px; border-right: 1px solid var(--line); font-family: var(--serif); font-size: 15px; white-space: nowrap; }
.hero-facts li:last-child { border: 0; }
.hero-cta { min-width: 360px; }

/* Service collage */
.services { background: var(--ivory); }
.service-collage {
  display: grid;
  grid-template-columns: 1.1fr .88fr;
  grid-template-rows: 248px 248px;
  gap: 18px;
  max-width: 1000px;
  margin: 0 auto;
}
.service-collage figure { position: relative; margin: 0; overflow: hidden; border-radius: 10px; }
.service-collage img { height: 100%; object-fit: cover; transition: transform .6s ease; }
.service-collage figure:hover img { transform: scale(1.015); }
.service-collage figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 10px 20px;
  border-radius: 4px;
  background: rgba(255,253,249,.9);
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: .1em;
}
.service-floor { grid-row: 1 / 3; }

/* Works */
.works { background: var(--paper); }
.works-heading { margin-bottom: 58px; text-align: center; }
.works-heading p { margin-bottom: 12px; color: var(--muted); font-size: 14px; }
.works-heading h2 { margin: 0; font-family: var(--serif); font-size: clamp(32px, 4vw, 50px); font-weight: 500; letter-spacing: .13em; }
.work-case { margin: 0; }
.work-case header { margin-bottom: 13px; }
.work-case header span { color: var(--teal); font-size: 11px; letter-spacing: .15em; }
.work-case h3 { margin: 3px 0 0; font-family: var(--serif); font-size: 23px; font-weight: 500; letter-spacing: .1em; }
.before-after { display: grid; grid-template-columns: 1fr 28px 1fr; align-items: center; }
.before-after figure { margin: 0; }
.before-after figcaption { padding: 5px 0; border-bottom: 1px solid var(--teal); color: var(--teal); font-family: Georgia, var(--serif); font-size: 14px; letter-spacing: .05em; }
.before-after img { margin-top: 10px; aspect-ratio: 1.48; object-fit: cover; border-radius: 6px; }
.before-after .crop-top img { object-position: 50% 0%; }
.before-after i { color: var(--gold); font-family: var(--serif); font-size: 22px; font-style: normal; text-align: center; }
.work-feature { max-width: 1050px; margin: 0 auto 64px; }
.work-feature .before-after img { aspect-ratio: 1.45; }
.work-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; max-width: 1050px; margin: 0 auto; }

/* Grades */
.grades { background: linear-gradient(145deg, #f5f1e9, #fffdf9); }
.grade-list { max-width: 920px; margin: 0 auto; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.grade-list article {
  position: relative;
  display: grid;
  grid-template-columns: 60px 1fr 1fr auto;
  min-height: 92px;
  padding: 20px 30px;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.62);
}
.grade-list article:last-child { border: 0; }
.grade-list article > span { color: var(--gold); font-family: Georgia, serif; font-size: 17px; }
.grade-list h3 { margin: 0; font-family: var(--serif); font-size: 21px; font-weight: 500; letter-spacing: .06em; }
.grade-list p { margin: 0; font-size: 14px; }
.grade-list b { padding: 5px 16px; border-radius: 999px; background: rgba(29,70,70,.25); font-size: 12px; font-weight: 500; }
.grade-list .recommended { color: #fff; background: var(--teal); }
.grade-list .recommended > span { color: #fff; }
.thick-note { margin: 22px 0 0; text-align: center; font-family: var(--serif); }

/* Price */
.price { background: var(--paper); }
.price-header { margin-bottom: 52px; text-align: center; }
.price-header h2 { margin-bottom: 14px; font-family: var(--serif); font-size: clamp(34px, 4.6vw, 56px); font-weight: 500; letter-spacing: .08em; }
.price-header h2 em { color: var(--teal); font-style: normal; }
.price-header p { margin: 0; }
.price-header strong { font-family: var(--serif); font-weight: 500; }
.price-layout { display: grid; grid-template-columns: 1.2fr .9fr; gap: 42px; max-width: 1020px; margin: 0 auto; }
.floor-price { position: relative; min-height: 490px; overflow: hidden; border-radius: 10px; }
.floor-price::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(247,243,236,.9), transparent 70%); }
.floor-price img { height: 100%; object-fit: cover; }
.floor-price div { position: absolute; z-index: 1; right: 38px; bottom: 32px; left: 38px; }
.floor-price span, .water-prices span { display: block; font-family: var(--serif); font-size: 20px; }
.floor-price strong { display: block; color: var(--teal); font-family: Georgia, var(--serif); font-size: clamp(60px, 7vw, 92px); font-weight: 400; line-height: 1.12; }
.floor-price small, .water-prices small { color: var(--ink); font-family: var(--serif); font-size: .3em; font-weight: 500; }
.water-prices { display: flex; flex-direction: column; justify-content: center; }
.water-prices article { padding: 22px 8px; border-bottom: 1px solid var(--line); }
.water-prices strong { display: block; color: var(--teal); font-family: Georgia, var(--serif); font-size: 42px; font-weight: 400; line-height: 1.25; }
.price-note { max-width: 1020px; margin: 28px auto 0; color: var(--muted); font-size: 13px; line-height: 1.9; }

/* Shop and flow */
.shop { background: var(--ivory); }
.shop-list { display: grid; grid-template-columns: repeat(4, 1fr); max-width: 1100px; margin: 0 auto; padding: 0; list-style: none; }
.shop-list li { min-height: 230px; padding: 24px 25px; border-right: 1px solid var(--line); }
.shop-list li:last-child { border: 0; }
.shop-list b { color: var(--teal); font-family: Georgia, serif; font-size: 28px; font-weight: 400; }
.shop-list h3 { margin: 28px 0 12px; font-family: var(--serif); font-size: 18px; font-weight: 500; line-height: 1.6; }
.shop-list p { margin: 0; color: var(--muted); font-size: 14px; }
.flow { background: var(--paper); }
.flow-list { display: grid; grid-template-columns: repeat(4, 1fr); max-width: 1050px; margin: 0 auto; padding: 0; list-style: none; }
.flow-list li { position: relative; padding: 0 30px; text-align: center; }
.flow-photo { margin: 0 0 20px; overflow: hidden; border-radius: 10px; }
.flow-photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.flow-list b { position: relative; display: block; color: var(--teal); font-family: Georgia, serif; font-size: 54px; font-weight: 400; line-height: 1; }
.flow-list li:not(:last-child) b::after { content: ""; position: absolute; top: 50%; left: 100%; width: 32px; height: 1px; margin-left: 14px; background: var(--gold); }
.flow-list h3 { margin: 22px 0 8px; font-family: var(--serif); font-size: 19px; font-weight: 500; }
.flow-list p { margin: 0; color: var(--muted); font-size: 14px; }

/* FAQ */
.faq { background: var(--ivory); }
.faq-header { margin-bottom: 42px; text-align: center; }
.faq-header h2 { margin: 0; font-family: var(--serif); font-size: clamp(34px, 4vw, 48px); font-weight: 500; letter-spacing: .15em; }
.faq-list { max-width: 930px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  position: relative;
  padding: 24px 56px 24px 72px;
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.65;
  list-style: none;
  cursor: pointer;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::before { content: "Q."; position: absolute; left: 18px; color: var(--teal); font-family: Georgia, serif; font-size: 22px; }
.faq-list summary::after { content: "+"; position: absolute; right: 18px; color: var(--teal); font-family: Georgia, serif; font-size: 26px; font-weight: 300; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { position: relative; margin: 0; padding: 0 56px 24px 72px; color: var(--muted); }
.faq-list details p::before { content: "A."; position: absolute; left: 18px; color: var(--gold); font-family: Georgia, serif; font-size: 21px; }

/* Contact */
.contact { padding-bottom: 124px; background: var(--paper); }
.contact-lead { max-width: 840px; margin: 0 auto 78px; text-align: center; }
.contact-lead h2 { margin-bottom: 22px; font-family: var(--serif); font-size: clamp(34px, 4.4vw, 52px); font-weight: 500; line-height: 1.55; letter-spacing: .1em; }
.contact-lead > p:not(.photo-consult):not(.contact-hours) { max-width: 700px; margin: 0 auto 28px; }
.contact-lead .button { min-width: 460px; }
.direct-contact { display: flex; justify-content: center; gap: 40px; margin: 30px 0 0; }
.direct-contact div { display: flex; gap: 12px; }
.direct-contact dt { color: var(--muted); }
.direct-contact dd { margin: 0; }
.contact-hours { margin: 18px 0 0; color: var(--muted); font-size: 14px; line-height: 1.9; }
.contact-form-wrap { max-width: 850px; margin: 0 auto; padding-top: 35px; border-top: 1px solid var(--line); }
.contact-form-wrap h3 { margin-bottom: 4px; font-family: var(--serif); font-size: 30px; font-weight: 500; text-align: center; letter-spacing: .12em; }
.required-note { margin-bottom: 26px; color: var(--muted); font-size: 12px; text-align: right; }
.contact-form .req, .required-note .req { color: #a45546; font-size: 11px; }
.contact-form { display: grid; gap: 20px; }
.contact-form > label:not(.honeypot), .contact-form fieldset { display: grid; grid-template-columns: 230px 1fr; align-items: start; gap: 24px; }
.contact-form .field-label { grid-column: 1; }
.contact-form input[type="text"], .contact-form select, .contact-form textarea {
  width: 100%;
  min-height: 42px;
  padding: 9px 12px;
  border: 1px solid #c8b89f;
  border-radius: 3px;
  color: var(--ink);
  background: #fff;
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: 2px solid rgba(79,133,133,.45); outline-offset: 2px; }
.contact-form fieldset { margin: 0; padding: 0; border: 0; }
.contact-form legend { float: left; width: 230px; }
.check-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px 16px; }
.check-grid label { display: flex; align-items: center; gap: 8px; }
.check-grid input, .privacy-check input { width: 18px; height: 18px; accent-color: var(--teal); }
.contact-form .privacy-check { display: block; grid-template-columns: none; text-align: center; }
.contact-form .privacy-check input { vertical-align: middle; margin-right: 6px; }
.contact-form button {
  width: min(460px, 100%);
  min-height: 62px;
  margin: 4px auto 0;
  border: 0;
  border-radius: 4px;
  color: #fff;
  background: var(--teal);
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: .12em;
  cursor: pointer;
}
.form-fallback { margin: 0; color: var(--muted); font-size: 12px; text-align: center; }
.form-error { margin: 0; padding: 10px 14px; color: #792d26; background: #f8e5e2; text-align: center; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px; height: 1px; overflow: hidden; }

/* Footer */
.site-footer { padding: 58px 24px 90px; color: #fff; background: var(--teal-dark); }
.footer-inner { display: flex; max-width: var(--content); margin: 0 auto; align-items: center; gap: 48px; }
.footer-brand { display: flex; align-items: center; justify-content: center; gap: 24px; }
.footer-brand img { width: 164px; filter: brightness(0) invert(1); }
.footer-brand .footer-area { padding-left: 24px; border-left: 1px solid rgba(255,255,255,.4); font-family: var(--sans); font-size: 14px; text-align: center; }
.footer-contact { display: flex; margin-left: auto; flex-direction: column; }
.footer-inner > a { font-size: 13px; }
.mobile-cta { display: none; }

/* Tablet */
@media (max-width: 1023px) {
  .header-inner { min-height: 70px; }
  .global-nav, .header-line { display: none; }
  .menu-button {
    display: flex;
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 9px;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    border: 0;
    background: transparent;
  }
  .menu-button span { width: 100%; height: 1px; background: var(--ink); }
  .menu-button b { margin-top: 1px; font-size: 8px; font-weight: 500; }
  .global-nav.is-open {
    position: fixed;
    top: 99px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    padding: 40px 30px 110px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow-y: auto;
    background: rgba(255,253,249,.98);
  }
  .global-nav.is-open a { padding: 16px 8px; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 17px; }
  .hero-copy { padding-right: 48%; }
  .hero-image { left: 42%; }
  .hero h1 { font-size: 48px; }
  .shop-list { grid-template-columns: repeat(2, 1fr); }
  .shop-list li:nth-child(even) { border-right: 0; }
  .shop-list li:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .flow-list { grid-template-columns: repeat(2, 1fr); gap: 48px 0; }
  .flow-list li:nth-child(2) b::after { display: none; }
  .footer-inner { flex-wrap: wrap; }
  .footer-contact { margin-left: 0; }
}

/* Mobile */
@media (max-width: 767px) {
  body { padding-bottom: 72px; font-size: 16px; }
  .preview-bar { font-size: 9px; }
  .site-header { position: sticky; top: 0; }
  .header-inner { width: calc(100% - 28px); }
  .brand { gap: 10px; }
  .brand img { width: 142px; }
  .global-nav.is-open { top: 94px; }
  .section { padding: 76px 20px; }
  .ornament-heading { margin-bottom: 34px; }
  .ornament-heading::before, .ornament-heading::after { width: 34px; margin: 0 8px 7px; }
  .ornament-heading p { margin-bottom: 1px; font-size: 10px; }
  .ornament-heading h2, .ornament-heading.compact h2 { font-size: 29px; letter-spacing: .1em; }
  .ornament-heading > span { font-size: 14px; }
  .button { min-height: 56px; padding: 12px 20px; }
  .button.narrow { min-width: 0; width: 100%; }

  .hero { min-height: 790px; }
  .hero-image { inset: 0; }
  .hero-image::before { width: 100%; background: linear-gradient(90deg, rgba(255,253,249,.8) 0%, rgba(255,253,249,.5) 40%, rgba(255,253,249,.05) 70%), linear-gradient(0deg, var(--paper) 0%, transparent 25%); }
  .hero-image img { object-position: 54% center; }
  .hero-image figcaption { right: 12px; bottom: 145px; font-size: 9px; }
  .hero-copy { width: calc(100% - 32px); min-height: 790px; padding: 64px 15% 160px 0; }
  .hero-area { margin-bottom: 14px; font-size: 10px; text-shadow: 0 1px 10px rgba(255,253,249,.9), 0 0 4px rgba(255,253,249,.9); }
  .hero h1 { margin-bottom: 20px; font-size: clamp(30px, 9.5vw, 42px); line-height: 1.48; letter-spacing: .035em; text-shadow: 0 2px 14px rgba(255,253,249,.85), 0 0 6px rgba(255,253,249,.85); }
  .hero-lead { margin-bottom: 18px; font-size: 15px; line-height: 1.9; text-shadow: 0 1px 10px rgba(255,253,249,.9), 0 0 4px rgba(255,253,249,.9); }
  .hero-facts { bottom: 105px; width: calc(100% - 24px); }
  .hero-facts li { padding: 2px 8px; font-size: 11px; text-align: center; }
  .hero-cta { position: absolute; right: 0; bottom: 36px; left: 0; width: calc(100vw - 40px); min-width: 0; margin: auto; }
  .hero-copy > .photo-consult { position: absolute; right: 0; bottom: 9px; left: 0; width: calc(100vw - 40px); }

  .service-collage { grid-template-columns: 1.15fr .9fr; grid-template-rows: 170px 170px; gap: 10px; }
  .service-collage figcaption { left: 8px; bottom: 8px; padding: 6px 10px; font-size: 14px; }
  .section-note { margin-top: 28px; font-size: 15px; }

  .works-heading { margin-bottom: 36px; }
  .works-heading p { font-size: 11px; }
  .works-heading h2 { font-size: 28px; line-height: 1.55; letter-spacing: .07em; }
  .work-feature { margin-bottom: 50px; }
  .work-grid { grid-template-columns: 1fr; gap: 48px; }
  .work-case h3 { font-size: 19px; }
  .before-after { grid-template-columns: 1fr 18px 1fr; }
  .before-after figcaption { font-size: 12px; }
  .before-after img { margin-top: 7px; aspect-ratio: .95; }
  .work-feature .before-after img { aspect-ratio: 1; }

  .grade-list article { grid-template-columns: 34px 1fr; min-height: 0; padding: 18px; gap: 4px 10px; }
  .grade-list article > span { grid-row: 1 / 3; }
  .grade-list h3 { font-size: 17px; }
  .grade-list p { grid-column: 2; font-size: 13px; }
  .grade-list b { position: absolute; right: 12px; bottom: 10px; padding: 3px 9px; font-size: 9px; }
  .thick-note { font-size: 14px; }

  .price-header { margin-bottom: 34px; }
  .price-header h2 { font-size: 31px; line-height: 1.5; }
  .price-header p { font-size: 14px; }
  .price-layout { grid-template-columns: 1fr; gap: 22px; }
  .floor-price { min-height: 350px; }
  .floor-price div { right: 22px; bottom: 22px; left: 22px; }
  .floor-price strong { font-size: 59px; }
  .water-prices article { display: flex; padding: 16px 4px; align-items: baseline; justify-content: space-between; }
  .water-prices span { font-size: 16px; }
  .water-prices strong { font-size: 31px; }
  .price-note { margin-top: 20px; font-size: 13px; }

  .shop-list { grid-template-columns: 1fr; }
  .shop-list li { display: grid; grid-template-columns: 48px 1fr; min-height: 0; padding: 22px 4px; gap: 12px; border-right: 0; border-bottom: 1px solid var(--line); }
  .shop-list li:last-child { border-bottom: 0; }
  .shop-list h3 { margin: 0 0 5px; font-size: 17px; }
  .shop-list p { font-size: 14px; }

  .flow-list { grid-template-columns: 1fr; gap: 0; text-align: left; }
  .flow-list li { display: grid; grid-template-columns: 52px 1fr; grid-template-rows: auto auto; padding: 20px 0; text-align: left; border-bottom: 1px solid var(--line); }
  .flow-list li b::after { display: none; }
  .flow-photo { grid-column: 1 / -1; grid-row: 1; margin-bottom: 14px; }
  .flow-list li > b { grid-column: 1; grid-row: 2; }
  .flow-list li > div { grid-column: 2; grid-row: 2; }
  .flow-list b { font-size: 42px; }
  .flow-list h3 { margin: 0 0 4px; font-size: 17px; }
  .flow-list p { font-size: 14px; }

  .faq-header { margin-bottom: 25px; }
  .faq-header h2 { font-size: 29px; }
  .faq-list summary { padding: 19px 40px 19px 43px; font-size: 16px; }
  .faq-list summary::before, .faq-list details p::before { left: 5px; }
  .faq-list summary::after { right: 6px; }
  .faq-list details p { padding: 0 8px 20px 43px; font-size: 15px; }

  .contact { padding-bottom: 80px; }
  .contact-lead { margin-bottom: 55px; }
  .contact-lead h2 { font-size: 30px; }
  .contact-lead > p:not(.photo-consult) { font-size: 15px; text-align: left; }
  .contact-lead .button { width: 100%; min-width: 0; font-size: 14px; }
  .direct-contact { flex-direction: column; gap: 5px; align-items: center; font-size: 14px; }
  .contact-form-wrap h3 { font-size: 25px; }
  .contact-form > label:not(.honeypot), .contact-form fieldset { display: block; }
  .contact-form > label:not(.honeypot) > input, .contact-form > label > select, .contact-form > label > textarea { margin-top: 6px; }
  .contact-form legend { float: none; width: auto; margin-bottom: 8px; }
  .check-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-form input[type="text"], .contact-form select, .contact-form textarea { font-size: 15px; min-height: 52px; padding: 11px 14px; }
  .contact-form textarea { min-height: 150px; }
  .contact-form .privacy-check { font-size: 12px; }
  .contact-form button { font-size: 16px; }

  .site-footer { padding: 45px 22px 38px; }
  .footer-inner { display: block; text-align: center; }
  .footer-brand { justify-content: center; }
  .footer-brand img { width: 130px; }
  .footer-brand .footer-area { font-size: 14px; text-align: center; }
  .footer-contact { margin: 25px 0 14px; font-size: 13px; }
  .mobile-cta {
    position: fixed;
    z-index: 80;
    right: 8px;
    bottom: 8px;
    left: 8px;
    display: grid;
    grid-template-columns: .75fr 1.45fr .9fr;
    min-height: 58px;
    padding: 5px;
    border: 1px solid rgba(255,255,255,.38);
    border-radius: 999px;
    background: #203f46;
    box-shadow: 0 10px 30px rgba(0,0,0,.24);
  }
  .mobile-cta a { display: flex; align-items: center; justify-content: center; border-radius: 999px; color: #fff; font-size: 13px; font-weight: 700; text-decoration: none; }
  .mobile-cta .line { background: var(--line-green); font-size: 15px; }
}

@media (min-width: 1024px) {
  .site-header { position: sticky; top: 0; }
  .mobile-cta { display: none; }
}

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

/* Privacy and thanks */
.legal-page, .thanks-page { min-height: 100vh; background: var(--ivory); }
.legal-content { width: min(760px, calc(100% - 40px)); margin: 0 auto; padding: 70px 0 100px; }
.legal-back, .thanks-back { color: var(--teal-dark); font-size: 14px; }
.legal-content h1, .thanks-content h1 { margin: 38px 0; font-family: var(--serif); font-size: clamp(32px, 5vw, 48px); font-weight: 500; letter-spacing: .1em; }
.legal-content h2 { margin: 42px 0 12px; padding-bottom: 8px; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 21px; font-weight: 500; }
.legal-content p { margin-bottom: 16px; }
.legal-content ul { margin: 0 0 20px; padding-left: 1.4em; }
.legal-content li + li { margin-top: 7px; }
.legal-date { margin-top: 48px; color: var(--muted); font-size: 14px; }
.thanks-content { width: min(620px, calc(100% - 40px)); margin: 0 auto; padding: 100px 0; text-align: center; }
.thanks-content > img { width: 170px; margin: 0 auto; }
.thanks-shop { margin-top: 10px; font-family: var(--serif); }
.thanks-content > p:not(.thanks-shop) { margin-bottom: 35px; }
.thanks-content .button { margin-bottom: 25px; }
.thanks-back { display: block; }
