* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f6f1e8;
  --bg-soft: #fbf8f3;
  --card: #fffdf9;
  --text: #2a241f;
  --muted: #6d6258;
  --accent: #8a6b49;
  --accent-soft: #e8dccd;
  --line: #e6ddd2;
  --shadow: 0 10px 30px rgba(63, 42, 22, 0.08);
  --radius: 24px;
  --max: 1180px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); line-height: 1.7; }

.site-nav { position: sticky; top: 0; z-index: 50; background: rgba(246, 241, 232, 0.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.nav-inner { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.logo { font-family: 'Cormorant Garamond', serif; font-size: 34px; font-weight: 700; color: var(--text); text-decoration: none; line-height: 1; }
.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links a, .mobile-menu a { text-decoration: none; color: var(--text); font-size: 14px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; opacity: 0.8; }
.nav-links a.active, .nav-links a:hover, .mobile-menu a.active { opacity: 1; color: var(--accent); }
.nav-cta { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 20px; border: 1px solid #c9b9a6; border-radius: 999px; color: var(--text); text-decoration: none; font-size: 14px; font-weight: 600; white-space: nowrap; transition: 0.2s ease; }
.nav-cta:hover, .nav-cta.active-cta { background: #efe6db; }
.menu-toggle { display: none; background: none; border: none; width: 42px; height: 42px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; cursor: pointer; }
.menu-toggle span { width: 22px; height: 2px; background: var(--text); display: block; border-radius: 2px; }
.mobile-menu { display: none; width: min(var(--max), calc(100% - 40px)); margin: 0 auto; padding-bottom: 16px; flex-direction: column; gap: 12px; }
.mobile-menu.open { display: flex; }

.page-shell { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.section-first { padding-top: 72px; }
.section { padding-top: 42px; }

.hero-grid, .split, .contact-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 52px; align-items: center; }
.hero-copy h1, .contact-hero-card h1 { font-family: 'Cormorant Garamond', serif; line-height: 0.98; font-weight: 700; letter-spacing: -0.02em; font-size: clamp(58px, 10vw, 112px); margin-bottom: 24px; }
.eyebrow { display: inline-block; margin-bottom: 18px; padding: 8px 14px; background: var(--accent-soft); color: var(--accent); border-radius: 999px; font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; }
.lead { font-size: 20px; color: var(--muted); max-width: 620px; margin-bottom: 28px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-actions.center { justify-content: center; }

.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 0 24px; border-radius: 999px; text-decoration: none; font-size: 15px; font-weight: 600; transition: 0.2s ease; border: 1px solid transparent; cursor: pointer; }
.btn-primary { background: var(--accent); color: white; }
.btn-primary:hover { transform: translateY(-1px); filter: brightness(1.03); }
.btn-secondary { border-color: #c9b9a6; color: var(--text); background: transparent; }
.btn-secondary:hover { background: #efe6db; }
.btn-full { width: 100%; }

.hero-image-wrap, .contact-photo-card { position: relative; }
.hero-image, .soft-photo, .contact-photo-card img { width: 100%; object-fit: cover; display: block; border-radius: 28px; box-shadow: var(--shadow); }
.hero-image { aspect-ratio: 4 / 5; }
.soft-photo { aspect-ratio: 4 / 3; border: 1px solid var(--line); }
.contact-photo-card img { aspect-ratio: 4 / 3.6; }

.hero-note, .contact-photo-note { position: absolute; left: 18px; right: 18px; bottom: 18px; background: rgba(255, 252, 247, 0.9); border: 1px solid rgba(138, 107, 73, 0.15); border-radius: 18px; padding: 16px 18px; box-shadow: var(--shadow); }
.hero-note strong, .contact-photo-note strong { display: block; font-size: 20px; margin-bottom: 4px; }
.hero-note span, .contact-photo-note span { color: var(--muted); font-size: 14px; }

.intro-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.mini-card, .card, .walk-card, .quote-box, .cta-box, .contact-hero-card { background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow); }
.mini-card { border-radius: 20px; padding: 22px; }
.mini-card strong { display: block; color: var(--accent); font-size: 18px; margin-bottom: 8px; }
.mini-card p { color: var(--muted); font-size: 15px; }
.card, .contact-hero-card { border-radius: var(--radius); padding: 34px; }
.card h2, .walks-header h2, .cta-box h2 { font-family: 'Cormorant Garamond', serif; line-height: 0.98; font-weight: 700; letter-spacing: -0.02em; }
.card h2 { font-size: clamp(40px, 5vw, 60px); margin-bottom: 18px; }
.card p { font-size: 17px; color: var(--muted); margin-bottom: 14px; }

.walks-header { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 22px; flex-wrap: wrap; }
.walks-header h2 { font-size: clamp(44px, 6vw, 68px); }
.walks-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.walk-card { border-radius: 24px; overflow: hidden; transition: transform 0.2s ease; }
.walk-card:hover { transform: translateY(-4px); }
.walk-card img { width: 100%; height: 280px; object-fit: cover; display: block; }
.walk-card-body { padding: 24px; }
.walk-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 24px; margin-bottom: 10px; line-height: 1.1; }
.walk-card p { color: var(--muted); font-size: 15px; }

.expect-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 8px; }
.expect-grid.single { grid-template-columns: 1fr; }
.expect-item { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 18px; padding: 18px; }
.expect-item strong { display: block; margin-bottom: 6px; color: var(--text); font-size: 17px; }
.expect-item span { color: var(--muted); font-size: 15px; }

.quote { text-align: center; }
.quote-box { border-radius: 28px; padding: 36px 26px; background: #efe6db; border-color: #ddcfbf; }
.quote-box p { font-family: 'Cormorant Garamond', serif; font-size: clamp(34px, 5vw, 54px); line-height: 1.08; color: #4e3d2c; }

.cta { padding: 60px 0 90px; }
.cta-box { border-radius: 28px; padding: 38px; text-align: center; }
.cta-box h2 { font-size: clamp(42px, 6vw, 64px); margin-bottom: 14px; }
.cta-box p { max-width: 700px; margin: 0 auto 24px; color: var(--muted); font-size: 17px; }

.contact-hero-card { max-width: 840px; }
.contact-grid { align-items: start; }
.contact-side { display: grid; gap: 22px; }
.contact-form { margin-top: 18px; }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.field label { font-size: 14px; font-weight: 600; color: var(--text); }
.field input, .field select, .field textarea { width: 100%; border: 1px solid #d9cfbf; background: #fff; border-radius: 16px; padding: 14px 16px; font: inherit; color: var(--text); outline: none; transition: 0.2s ease; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(138, 107, 73, 0.08); }
.field textarea { min-height: 150px; resize: vertical; }
.contact-list { display: grid; gap: 18px; }
.contact-item strong { display: block; font-size: 16px; margin-bottom: 6px; }
.contact-item a, .contact-item span { color: var(--muted); text-decoration: none; }
.form-success { display: none; margin-top: 16px; background: #efe6db; color: #6f563d; border: 1px solid #ddcfbf; border-radius: 16px; padding: 14px 16px; font-size: 14px; font-weight: 600; }

.site-footer { border-top: 1px solid var(--line); padding: 24px 0 36px; color: var(--muted); font-size: 14px; }
.footer-inner, .footer-bottom { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.footer-inner { display: grid; grid-template-columns: 1.2fr 0.8fr 0.9fr; gap: 20px; padding-bottom: 20px; }
.footer-title { font-family: 'Cormorant Garamond', serif; font-size: 28px; color: var(--text); margin-bottom: 8px; }
.footer-subtitle { font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.site-footer ul { list-style: none; }
.site-footer a { color: var(--muted); text-decoration: none; }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 18px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }

.reveal-stagger, .reveal-soft, .reveal-card { opacity: 0; transform: translateY(18px); }
.animate-in { animation: fadeUpSoft 0.7s ease forwards; }
.reveal-stagger:nth-child(1) { animation-delay: 0.08s; }
.reveal-stagger:nth-child(2) { animation-delay: 0.16s; }
.reveal-stagger:nth-child(3) { animation-delay: 0.24s; }
.reveal-stagger:nth-child(4) { animation-delay: 0.32s; }
.reveal-soft.animate-in { animation: fadeSoft 0.8s ease forwards; }
.reveal-card.animate-in { animation: fadeUpSoft 0.7s ease forwards; }

@keyframes fadeUpSoft {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSoft {
  from { opacity: 0; transform: translateY(12px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 980px) {
  .hero-grid, .split, .walks-grid, .intro-strip, .contact-grid, .footer-inner, .expect-grid { grid-template-columns: 1fr; }
  .section-first { padding-top: 42px; }
  .nav-links, .nav-cta { display: none; }
  .menu-toggle { display: inline-flex; }
}

@media (max-width: 640px) {
  .logo { font-size: 28px; max-width: 180px; line-height: 0.95; }
  .nav-inner { min-height: 68px; width: min(var(--max), calc(100% - 24px)); }
  .mobile-menu, .page-shell, .footer-inner, .footer-bottom { width: min(var(--max), calc(100% - 24px)); }
  .card, .cta-box, .contact-hero-card { padding: 24px; }
  .hero-note, .contact-photo-note { left: 12px; right: 12px; bottom: 12px; }
  .walk-card img { height: 240px; }
  .form-row { grid-template-columns: 1fr; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: 0.22s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow: 0 10px 24px rgba(138, 107, 73, 0.18);
}

.btn-secondary {
  border-color: #c9b9a6;
  color: var(--text);
  background: transparent;
}

.btn-secondary:hover {
  background: #efe6db;
  transform: translateY(-1px);
}

.walk-card,
.mini-card,
.card,
.cta-box,
.quote-box {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.walk-card:hover,
.mini-card:hover,
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(63, 42, 22, 0.12);
}

.contact-form-card,
.contact-side .card {
  min-height: 100%;
}

.contact-side {
  display: grid;
  gap: 22px;
  align-content: start;
}

.contact-item a:hover,
.site-footer a:hover {
  color: var(--accent);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 32px 0 40px;
  color: var(--muted);
  font-size: 14px;
  background: rgba(255, 253, 249, 0.55);
}

.footer-inner,
.footer-bottom {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr;
  gap: 28px;
  padding-bottom: 22px;
}

.footer-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--text);
  margin-bottom: 8px;
}

.footer-subtitle {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

.contact-grid {
  align-items: start;
}

.contact-form-card {
  min-height: unset;
}

.contact-form-card .contact-form {
  margin-top: 20px;
}

.contact-side {
  display: grid;
  gap: 20px;
  align-content: start;
}

.contact-info-card,
.contact-extra-card,
.contact-cta-card {
  padding: 30px;
}

.contact-info-card h2,
.contact-extra-card h2,
.contact-cta-card h2 {
  margin-bottom: 16px;
}

.contact-list {
  display: grid;
  gap: 18px;
}

.contact-item {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.contact-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-item strong {
  display: block;
  font-size: 15px;
  margin-bottom: 6px;
  color: var(--text);
}

.contact-item a,
.contact-item span {
  color: var(--muted);
  text-decoration: none;
  font-size: 16px;
  line-height: 1.7;
}

.contact-item a:hover {
  color: var(--accent);
}

.contact-points {
  display: grid;
  gap: 14px;
}

.contact-point {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px 18px;
}

.contact-point strong {
  display: block;
  font-size: 16px;
  margin-bottom: 6px;
  color: var(--text);
}

.contact-point p {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-form-card p {
  max-width: 560px;
}