:root {
  --cream: #f4efe6;
  --cream-dark: #e8dfd2;
  --paper: #fffdf9;
  --ink: #2a2118;
  --muted: #65594c;
  --oak: #8c5a32;
  --oak-dark: #6a4122;
  --charcoal: #2c2622;
  --line: rgba(42, 33, 24, 0.12);
  --shadow: 0 18px 40px rgba(44, 38, 34, 0.1);
  --radius: 18px;
  --header-h: 86px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

section[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, Meiryo, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.8;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--oak-dark);
}

h1,
h2,
.brand-text strong {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Iowan Old Style", Palatino, serif;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--oak);
  color: #fff;
  padding: 8px 12px;
  z-index: 1000;
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  isolation: isolate;
  background: rgba(244, 239, 230, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  background: #fffdf9;
  border-radius: 14px;
  border: 1px solid var(--line);
}

.brand-text strong {
  display: block;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
}

.brand-text span {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--oak);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  padding: 8px 10px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  margin: 4px 0;
}

.site-nav ul {
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus {
  background: #fff;
  color: var(--oak-dark);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  place-items: end start;
  color: #fff;
  overflow: hidden;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(44, 38, 34, 0.78), rgba(44, 38, 34, 0.28) 68%, rgba(44, 38, 34, 0.08));
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: 84px 0 76px;
  max-width: 680px;
}

.eyebrow {
  display: inline-block;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.5rem);
  line-height: 1.35;
  margin: 0 0 16px;
  font-weight: 600;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.hero p {
  margin: 0 0 28px;
  font-size: 1.05rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.btn-primary {
  background: var(--oak);
  color: #fff;
}

.btn-primary:hover {
  background: var(--oak-dark);
}

.btn-ghost {
  background: #fff;
  color: var(--oak-dark);
}

.section {
  padding: 88px 0;
}

.section.alt {
  background: var(--cream-dark);
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0 0 12px;
  font-weight: 600;
}

.section-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin-top: 10px;
  background: var(--oak);
}

.lead {
  color: var(--muted);
  max-width: 760px;
  margin: 0 0 36px;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.split img,
.card img,
.contact-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.split > img {
  min-height: 420px;
}

.notice-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.notice-list li {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.card {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.card img {
  height: 250px;
  border-radius: 0;
}

.card-body {
  padding: 22px;
}

.card h3 {
  margin: 0 0 8px;
}

.price {
  display: inline-block;
  margin-top: 10px;
  color: var(--oak-dark);
  font-weight: 800;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0 0 36px;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 16px 8px;
  counter-increment: step;
}

.steps li::before {
  content: counter(step);
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--oak);
  color: #fff;
  font-weight: 700;
  margin-bottom: 8px;
}

.steps p {
  color: var(--muted);
  font-size: 0.95rem;
}

.notes {
  align-items: stretch;
}

.hours,
.legal {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.hours h3,
.legal h3 {
  margin-top: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
}

.contact-card,
form {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--line);
}

.contact-card {
  margin-top: 18px;
}

.contact-card p {
  margin: 8px 0;
}

label {
  display: block;
  font-weight: 700;
  margin: 0 0 6px;
}

input,
select,
textarea {
  width: 100%;
  margin-bottom: 14px;
  border: 1px solid #d7cfc4;
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  background: #fff;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-status {
  min-height: 1.5em;
  color: var(--oak-dark);
  font-weight: 700;
}

.site-footer {
  background: var(--charcoal);
  color: #f4efe6;
  padding: 40px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
}

.site-footer a {
  color: #fff;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.copyright {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.9rem;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: var(--header-h);
    background: #fffdf9;
    padding: 12px 20px 20px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
  }

  .split,
  .cards,
  .contact-grid,
  .footer-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .split > img {
    min-height: 240px;
  }

  .hero {
    min-height: 78vh;
  }
}
