:root {
  --bg: #f3f5f2;
  --ink: #14331c;
  --paper: #ffffff;
  --fg: #1c2a20;
  --muted: #5f6b64;
  --red: #c31f1a;
  --red-2: #dc3a32;
  --green: #1f6b3a;
  --silver: #9aa39c;
  --silver-2: #d5dbd6;
  --line: rgba(20, 51, 28, 0.12);
  --on-photo: #f7faf6;
  --serif: "Newsreader", "Times New Roman", serif;
  --sans: "Zen Kaku Gothic New", "Outfit", sans-serif;
  --max: 1080px;
  --pad: clamp(1.15rem, 4.5vw, 2.8rem);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 1.04rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { cursor: pointer; background: none; border: 0; }

.skip {
  position: absolute; left: 1rem; top: -4rem;
  background: var(--ink); color: #fff; padding: 0.6rem 1rem; z-index: 80;
}
.skip:focus { top: 1rem; }
.wrap {
  width: min(var(--max), calc(100% - var(--pad) * 2));
  margin-inline: auto;
}

.topbar {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  padding: 0.55rem 0;
}
.topbar a { color: var(--red); font-weight: 600; }

.header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(243, 245, 242, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 74px;
}
.logo { display: flex; align-items: center; gap: 0.7rem; color: var(--ink); }
.logo svg { width: 28px; height: 28px; flex: 0 0 28px; }
.logo strong {
  display: block; font-family: var(--serif); font-size: 1.12rem; letter-spacing: 0.04em;
}
.logo em {
  display: block; font-style: normal; font-size: 0.64rem;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted);
}
.nav { display: none; gap: 1.25rem; }
.nav a { font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500; color: var(--ink); }
.nav a:hover, .nav a.active { color: var(--red); }
.header-cta { display: flex; gap: 0.45rem; align-items: center; margin-left: auto; }
.menu-btn {
  width: 44px; height: 44px; border: 1px solid var(--red);
  display: grid; place-items: center; flex: 0 0 44px;
}
.menu-btn::before {
  content: ""; width: 16px; height: 1.5px; background: var(--ink);
  box-shadow: 0 -5px 0 var(--ink), 0 5px 0 var(--ink);
}
.mobile { display: none; padding: 0.4rem var(--pad) 1rem; background: #fff; }
.mobile.open { display: grid; }
.mobile a {
  padding: 0.9rem 0; border-bottom: 1px solid var(--line);
  letter-spacing: 0.12em; text-transform: uppercase; font-size: 0.85rem;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 3rem; padding: 0.7rem 1.25rem;
  letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.7rem; font-weight: 700;
}
.btn-fill { background: var(--red); color: #fff; }
.btn-fill:hover { background: var(--red-2); }
.btn-line {
  border: 1px solid var(--silver);
  color: var(--ink);
  background: #fff;
}
.hero .btn-line,
.band .btn-line {
  border-color: rgba(255,255,255,0.72);
  color: var(--on-photo);
  background: rgba(12, 32, 20, 0.35);
}

.hero { padding: 1.1rem 0 0.4rem; }
.hero-frame {
  position: relative;
  min-height: min(74vh, 660px);
  background: #14331c;
  isolation: isolate;
  border: 1px solid var(--silver-2);
}
.hero-media {
  position: absolute; inset: 0; overflow: hidden;
}
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  animation: ken 28s ease-in-out infinite alternate;
}
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(12,32,20,0.18) 0%, rgba(12,32,20,0.48) 48%, rgba(12,32,20,0.9) 100%),
    linear-gradient(90deg, rgba(12,32,20,0.55), transparent 64%);
}
.enso {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 2; opacity: 0.45;
}
.enso circle {
  fill: none; stroke: #e8ece8; stroke-width: 1.6;
  stroke-dasharray: 900; stroke-dashoffset: 900;
  animation: draw 3.8s ease forwards;
}
.leaves { position: absolute; inset: 0; pointer-events: none; z-index: 2; overflow: hidden; }
.leaf {
  position: absolute; top: -6%;
  width: 11px; height: 13px;
  background: #3d8a4a;
  border-radius: 0 70% 0 70%;
  animation: fall linear infinite;
  opacity: 0.88;
}
.hero-copy {
  position: relative; z-index: 3;
  max-width: 36rem;
  min-height: min(74vh, 660px);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(2.2rem, 6vh, 4rem) clamp(1.15rem, 3vw, 2rem) 2.1rem;
  color: var(--on-photo);
  text-shadow: 0 1px 16px rgba(12,32,20,0.55);
}
.hero-copy .kicker { color: #d7ddd8; }
.hero-copy .lead { color: #f4f7f4; }
.hero-copy .italic { color: #ffd4d0; }
.kicker {
  display: flex; align-items: center; gap: 0.55rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  font-size: 0.66rem; color: var(--green); font-weight: 600; margin-bottom: 0.7rem;
}
h1 {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(2.6rem, 6.2vw, 4.6rem);
  line-height: 0.96; letter-spacing: -0.02em;
}
.italic {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  color: var(--red); margin: 0.65rem 0 0.85rem;
}
.lead { max-width: 32rem; font-weight: 500; }
.hero-meta {
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 0.8rem; margin-top: 1.35rem; padding-top: 1rem;
  border-top: 1px solid rgba(213, 219, 214, 0.45);
}
.stat strong { display: block; font-family: var(--serif); font-style: italic; font-size: 1.35rem; color: #fff; }
.stat span { color: #c5cdc8; font-size: 0.78rem; font-weight: 500; }

.rise { opacity: 0; animation: rise 0.85s ease forwards; }
.d1 { animation-delay: .08s; } .d2 { animation-delay: .18s; }
.d3 { animation-delay: .3s; } .d4 { animation-delay: .42s; }
.d5 { animation-delay: .54s; } .d6 { animation-delay: .66s; }
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes ken { from { transform: scale(1); } to { transform: scale(1.07) translate3d(-1.2%, .8%, 0); } }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes fall { to { transform: translateY(110vh) rotate(260deg); opacity: .15; } }

.proof {
  display: grid; grid-template-columns: repeat(4, minmax(0,1fr));
  margin-top: 0.7rem;
  border: 1px solid var(--silver-2);
  background: var(--paper);
}
.proof div {
  padding: 1.15rem 0.8rem; text-align: center;
  border-right: 1px solid var(--line);
}
.proof div:last-child { border-right: 0; }
.proof strong {
  display: block; font-family: var(--serif); font-style: italic;
  color: var(--green); font-size: 1.2rem;
}
.proof span { display: block; margin-top: 0.2rem; font-size: 0.78rem; color: var(--muted); font-weight: 500; }

.inset {
  background: var(--paper);
  color: var(--ink);
  overflow: hidden;
  border: 1px solid var(--silver-2);
}
.inset-pad { padding: clamp(1.6rem, 4vw, 2.8rem); }
.inset.split > div:last-child {
  padding: clamp(1.6rem, 4vw, 2.6rem) clamp(1.4rem, 3vw, 2.2rem);
}
.inset .kicker { color: var(--red); }
.inset p, .inset .lead, .inset .section-head p { color: #33443a; font-weight: 500; }
.inset h2 { color: var(--ink); }
.inset .btn-line {
  color: var(--ink);
  border-color: var(--red);
  background: transparent;
}
.inset .faq details { border-bottom-color: var(--line); }
.inset .faq p { color: #33443a; }
.inset .faq summary { color: var(--ink); }

.section { padding: clamp(3rem, 7vw, 5.6rem) 0; }
.section-head { margin-bottom: 1.8rem; }
.section-head p { max-width: 36rem; color: var(--muted); font-weight: 500; }
h2 {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(1.95rem, 4vw, 3.15rem); line-height: 1.05;
  color: var(--ink);
}
h3 { letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.78rem; color: var(--green); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 0.8rem; }
.card {
  min-height: 230px; position: relative; overflow: hidden;
  display: grid; align-items: end; color: var(--on-photo);
}
.card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.card:hover img { transform: scale(1.05); }
.card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(transparent 25%, rgba(12,32,20,0.9));
}
.card .body { position: relative; z-index: 1; padding: 1.2rem 1.15rem 1.3rem; }
.card h3 { color: #d7ddd8; }
.card p { margin-top: 0.35rem; font-size: 0.92rem; color: #e8eee9; font-weight: 500; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; }
.split img { width: 100%; height: 100%; min-height: 380px; object-fit: cover; }
.split p { color: var(--muted); font-weight: 500; }
.inset.split p,
.inset p,
.inset .lead,
.inset .section-head p { color: #33443a; font-weight: 500; }

.license {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.license article {
  border: 1px solid var(--silver-2);
  padding: 1.4rem 1.3rem;
  background: var(--paper);
}
.license strong {
  display: block; font-family: var(--serif); font-style: italic;
  font-size: 1.8rem; color: var(--red); margin: 0.35rem 0 0.5rem;
}
.license p { color: var(--muted); font-weight: 500; }

.band {
  width: min(var(--max), calc(100% - var(--pad) * 2));
  margin: 0 auto 2rem; min-height: 360px; position: relative; overflow: hidden;
  display: grid; align-items: end;
  color: var(--on-photo);
}
.band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.band::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(transparent, rgba(12,32,20,0.9));
}
.band-copy { position: relative; z-index: 1; padding: 2rem; max-width: 34rem; }
.band .kicker { color: #d7ddd8; }
.band h2 { color: var(--on-photo); }

.mosaic { display: grid; grid-template-columns: 1fr 1fr; gap: 0.55rem; }
.mosaic a { display: block; position: relative; overflow: hidden; min-height: 200px; }
.mosaic img { width: 100%; height: 240px; object-fit: cover; }
.mosaic a:first-child { grid-column: span 2; }
.mosaic a:first-child img { height: 340px; }
.mosaic .cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 0.8rem 1rem;
  font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: #e8ece8;
  background: linear-gradient(transparent, rgba(12,32,20,0.85));
}

.service-block {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 1.2rem;
  padding: 1.8rem 0; border-bottom: 1px solid var(--line); align-items: center;
}
.service-block:last-child { border-bottom: 0; }
.service-block img { width: 100%; height: 250px; object-fit: cover; }
.service-block p { color: var(--muted); font-weight: 500; margin-top: 0.55rem; }

.form { display: grid; gap: 0.8rem; position: relative; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
label {
  display: grid; gap: 0.3rem;
  font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted);
}
input, select, textarea {
  background: #fff; border: 1px solid var(--silver-2);
  padding: 0.85rem 0.9rem; color: var(--fg); width: 100%; outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--green); }
textarea { min-height: 120px; resize: vertical; }
.success { display: none; border: 1px solid var(--green); color: var(--green); padding: 1.1rem; background: #fff; }
.success.show { display: block; }
.honey {
  position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden;
}
.note { font-size: 0.84rem; color: var(--muted); font-weight: 500; }
.panel {
  background: var(--paper);
  border: 1px solid var(--silver-2);
  padding: 1.4rem;
}
.visit { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 1rem; }
.cities { columns: 2; gap: 1.2rem; color: var(--muted); font-weight: 500; }
.cities li { break-inside: avoid; padding: 0.18rem 0; }

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}
.faq summary { cursor: pointer; font-weight: 600; }
.faq p { margin-top: 0.55rem; color: var(--muted); font-weight: 500; }

.footer {
  border-top: 1px solid var(--silver-2);
  background: #fff;
  padding: 2.1rem 0 1.4rem; color: var(--muted); font-size: 0.92rem;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 1.2rem; margin-bottom: 1.3rem; }
.footer h3 { color: var(--green); margin-bottom: 0.55rem; }
.footer a:hover { color: var(--red); }
.footer a[href^="mailto"] { word-break: break-all; }
.footer p, .footer li { font-weight: 500; }
.legal {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  border-top: 1px solid var(--line); padding-top: 1rem; font-size: 0.78rem;
}

#lightbox {
  display: none; position: fixed; inset: 0; background: rgba(12,32,20,0.94);
  z-index: 90; align-items: center; justify-content: center; padding: 2rem;
}
#lightbox.open { display: flex; }
#lightbox img { max-width: min(1100px,100%); max-height: 90vh; object-fit: contain; }

@media (min-width: 900px) {
  .nav { display: flex; }
  .menu-btn { display: none; }
  .grid-3 { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 899px) {
  .header-cta .btn { display: none; }
  .split, .grid-2, .license, .visit, .form-row, .footer-grid, .service-block, .proof {
    grid-template-columns: 1fr;
  }
  .proof div { border-right: 0; border-bottom: 1px solid var(--line); }
  .hero-meta { grid-template-columns: 1fr 1fr; }
  .mosaic a:first-child { grid-column: auto; }
  .cities { columns: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-media img, .rise, .leaf, .enso circle { animation: none !important; }
  .rise { opacity: 1; }
}
