:root {
  color-scheme: light;
  --bg: #f7ece3;
  --paper: rgba(255,248,239,.78);
  --paper-solid: #fff8ef;
  --ink: #3e2b27;
  --muted: #7a625a;
  --soft: #a78478;
  --brown: #b97861;
  --burgundy: #8a3d45;
  --cream: #f4e4d8;
  --line: rgba(62,43,39,.15);
  --shadow: 0 28px 80px rgba(99,54,50,.12);
  --radius: 34px;
  --max: 1100px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 8%, rgba(185,120,97,.24), transparent 25%),
    radial-gradient(circle at 88% 10%, rgba(138,61,69,.16), transparent 26%),
    linear-gradient(180deg, #fff7ee 0%, var(--bg) 54%, #ead9cf 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -3;
  opacity: .32;
  background-image:
    linear-gradient(rgba(62,43,39,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(62,43,39,.055) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, black 0%, transparent 78%);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
p, h1, h2, h3 { margin-top: 0; }
p { color: var(--muted); line-height: 1.7; font-size: .98rem; }
button, input, textarea { font: inherit; }

.skip-link {
  position: fixed;
  left: 14px;
  top: 14px;
  z-index: 999;
  transform: translateY(-160%);
  padding: 10px 13px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
}
.skip-link:focus { transform: translateY(0); }

.background-motion {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  overflow: hidden;
}
.mud {
  position: absolute;
  border-radius: 999px;
  filter: blur(7px);
  opacity: .58;
  animation: drift 18s ease-in-out infinite;
}
.mud-a {
  width: 260px;
  height: 220px;
  left: -80px;
  top: 210px;
  background: rgba(185,120,97,.2);
}
.mud-b {
  width: 340px;
  height: 280px;
  right: -130px;
  bottom: 160px;
  background: rgba(138,61,69,.13);
  animation-delay: -8s;
}
.ring {
  position: absolute;
  border: 1px solid rgba(138,61,69,.16);
  border-radius: 50%;
  animation: ripple 8s ease-out infinite;
}
.ring-a { width: 180px; height: 180px; right: 18%; top: 28%; }
.ring-b { width: 230px; height: 230px; left: 12%; bottom: 15%; animation-delay: -3.5s; }

.site-header {
  width: min(100% - 28px, var(--max));
  margin: 18px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0 18px;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  box-shadow: 0 16px 34px rgba(99,54,50,.12);
}
.brand strong {
  display: block;
  font-size: 1rem;
  letter-spacing: -.025em;
}
.brand small {
  display: block;
  margin-top: 2px;
  color: var(--soft);
  font-size: .76rem;
}
.privacy-link {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,248,239,.56);
  color: var(--burgundy);
  font-weight: 780;
  font-size: .9rem;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.privacy-link:hover, .privacy-link:focus-visible {
  transform: translateY(-2px);
  background: var(--paper-solid);
  box-shadow: 0 14px 34px rgba(99,54,50,.1);
  outline: none;
}

main {
  width: min(100% - 28px, var(--max));
  margin: 0 auto;
}

.hero {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(330px, .78fr);
  gap: clamp(28px, 7vw, 86px);
  align-items: center;
  padding: 46px 0 34px;
}
.label {
  margin-bottom: 14px;
  color: var(--burgundy);
  font-size: .74rem;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}
h1 {
  max-width: 650px;
  margin-bottom: 20px;
  font-size: clamp(2.45rem, 4.5vw, 4.65rem);
  line-height: 1.02;
  letter-spacing: -.06em;
}
h2 {
  margin-bottom: 14px;
  font-size: clamp(1.5rem, 2.6vw, 2.65rem);
  line-height: 1.08;
  letter-spacing: -.045em;
}
h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
  letter-spacing: -.02em;
}
.lead {
  max-width: 610px;
  font-size: clamp(1.02rem, 1.35vw, 1.14rem);
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 17px;
  border: 1px solid rgba(138,61,69,.22);
  border-radius: 999px;
  background: rgba(255,248,239,.62);
  color: var(--ink);
  font-weight: 820;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn.primary {
  background: var(--burgundy);
  color: white;
}
.btn:hover, .btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 15px 34px rgba(99,54,50,.14);
  outline: none;
}

.pond-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 42px;
  background: var(--paper);
  box-shadow: var(--shadow);
  padding: 18px;
  backdrop-filter: blur(18px);
}
.pond-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--soft);
  font-size: .75rem;
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.pond {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  display: grid;
  place-items: center;
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 30%, rgba(244,228,216,.92), transparent 28%),
    linear-gradient(160deg, rgba(255,250,245,.88), rgba(235,211,199,.85));
}
.pond::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px dashed rgba(138,61,69,.18);
  border-radius: 24px;
}
.pond img {
  position: relative;
  z-index: 3;
  width: min(58%, 245px);
  border-radius: 32px;
  filter: drop-shadow(0 24px 34px rgba(99,54,50,.15));
  animation: breathe 7s ease-in-out infinite;
}
.reed {
  position: absolute;
  bottom: 52px;
  width: 2px;
  height: 210px;
  background: linear-gradient(180deg, transparent, rgba(78,52,47,.36));
  transform-origin: bottom;
  animation: sway 6s ease-in-out infinite;
}
.reed-one { left: 22%; height: 185px; animation-delay: -1s; }
.reed-two { left: 51%; height: 235px; }
.reed-three { right: 22%; height: 175px; animation-delay: -2.4s; }
.bubble {
  position: absolute;
  z-index: 4;
  padding: 8px 11px;
  border: 1px solid rgba(138,61,69,.18);
  border-radius: 999px;
  background: rgba(255,248,239,.72);
  color: var(--burgundy);
  font-size: .78rem;
  font-weight: 820;
  box-shadow: 0 12px 30px rgba(99,54,50,.1);
  animation: floatNode 5.8s ease-in-out infinite;
}
.bubble-a { left: 11%; top: 31%; }
.bubble-b { right: 8%; top: 47%; animation-delay: -1.7s; }
.bubble-c { left: 32%; bottom: 15%; animation-delay: -3.1s; }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.cards article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255,248,239,.55);
  box-shadow: 0 18px 52px rgba(99,54,50,.07);
}
.cards span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--burgundy);
  font-size: .76rem;
  font-weight: 900;
}
.cards p { margin-bottom: 0; font-size: .94rem; }

.section {
  padding: clamp(64px, 8vw, 108px) 0;
}
.note {
  display: grid;
  grid-template-columns: .8fr 1fr;
  gap: clamp(24px, 6vw, 72px);
  align-items: end;
}
.note > p { margin-bottom: 10px; }

.company,
.contact,
.policy-card {
  border: 1px solid var(--line);
  border-radius: 38px;
  background: rgba(255,248,239,.62);
  box-shadow: var(--shadow);
}
.company {
  display: grid;
  grid-template-columns: .75fr 1fr;
  gap: 32px;
  padding: clamp(24px, 5vw, 50px);
}
.company dl {
  margin: 0;
  display: grid;
  gap: 12px;
}
.company dl div {
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,248,239,.48);
}
dt {
  margin-bottom: 6px;
  color: var(--soft);
  font-size: .74rem;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
}
dd {
  margin: 0;
  color: var(--ink);
  line-height: 1.58;
}
dd a {
  color: var(--burgundy);
  font-weight: 820;
}

.contact {
  display: grid;
  grid-template-columns: .75fr 1fr;
  gap: 32px;
  padding: clamp(24px, 5vw, 50px);
  margin-bottom: 72px;
}
form {
  display: grid;
  gap: 13px;
}
label {
  display: grid;
  gap: 7px;
}
label span {
  color: var(--ink);
  font-size: .86rem;
  font-weight: 780;
}
input, textarea {
  width: 100%;
  border: 1px solid rgba(138,61,69,.22);
  border-radius: 18px;
  padding: 13px 14px;
  background: rgba(255,248,239,.74);
  color: var(--ink);
  outline: none;
  transition: box-shadow .16s ease, border-color .16s ease, background .16s ease;
}
textarea { min-height: 124px; resize: vertical; }
input:focus, textarea:focus {
  background: white;
  border-color: rgba(138,61,69,.45);
  box-shadow: 0 0 0 4px rgba(138,61,69,.12);
}

.site-footer {
  width: min(100% - 28px, var(--max));
  margin: 0 auto 36px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1.4fr auto;
  gap: 18px;
  color: var(--soft);
  font-size: .88rem;
}
.site-footer p { margin: 0; color: var(--soft); }
.site-footer address {
  font-style: normal;
  line-height: 1.55;
}
.site-footer a {
  color: var(--burgundy);
  font-weight: 820;
}

/* privacy */
.policy-main {
  width: min(100% - 28px, 880px);
  margin: 0 auto;
}
.policy-hero {
  padding: clamp(58px, 8vw, 96px) 0 28px;
}
.policy-hero h1 {
  max-width: none;
  font-size: clamp(2.3rem, 4.3vw, 4.25rem);
}
.policy-hero span {
  display: inline-flex;
  margin-top: 10px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,248,239,.6);
  color: var(--burgundy);
  font-size: .86rem;
  font-weight: 780;
}
.policy-card {
  margin-bottom: 72px;
  padding: clamp(24px, 5vw, 48px);
}
.policy-card section + section {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.policy-card h2 {
  font-size: clamp(1.35rem, 2.1vw, 2.05rem);
}
.policy-card address {
  color: var(--muted);
  line-height: 1.75;
  font-style: normal;
}
.policy-card a {
  color: var(--burgundy);
  font-weight: 820;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  max-width: 320px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,248,239,.84);
  color: var(--ink);
  box-shadow: 0 18px 48px rgba(99,54,50,.12);
  backdrop-filter: blur(14px);
  transition: .18s ease;
}
.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .62s ease, transform .62s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes drift {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(28px,-18px) scale(1.06); }
}
@keyframes ripple {
  0% { transform: scale(.84); opacity: .42; }
  70% { opacity: .11; }
  100% { transform: scale(1.25); opacity: 0; }
}
@keyframes breathe {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.015); }
}
@keyframes sway {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(4deg); }
}
@keyframes floatNode {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

@media (max-width: 900px) {
  .hero,
  .cards,
  .note,
  .company,
  .contact,
  .site-footer {
    grid-template-columns: 1fr;
  }
  .hero { min-height: auto; }
  .pond-card { max-width: 460px; }
}

@media (max-width: 620px) {
  .site-header { align-items: flex-start; }
  .brand img { width: 42px; height: 42px; }
  .brand small { display: none; }
  .privacy-link { min-height: 38px; padding: 0 12px; font-size: .82rem; }
  h1 { font-size: clamp(2.35rem, 11vw, 3.35rem); }
  h2 { font-size: clamp(1.55rem, 8vw, 2.35rem); }
  .pond { min-height: 330px; }
  .bubble { display: none; }
  .actions { align-items: stretch; }
  .btn { width: 100%; }
}

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