:root {
  --bg: #ffffff;
  --surface: #fcf8f2;
  --surface-2: #f4ece1;
  --text: #2b2621;
  --muted: #7a7064;
  --accent: #c7b198;
  --accent-deep: #a68562;
  --border: #eadfce;
  --shadow: 0 20px 50px rgba(95, 74, 49, 0.08);
  --radius: 16px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 16px;
  top: 12px;
  z-index: 1000;
  background: #000;
  color: #fff;
  padding: 8px 10px;
  border-radius: 8px;
}

.container {
  width: min(var(--container), 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(6px);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 10px;
  width: 40px;
  height: 40px;
  font-size: 1.2rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.main-nav a {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.95rem;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: all 0.2s ease;
}

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

.btn-primary:hover {
  background: #181512;
}

.btn-soft {
  background: var(--surface-2);
  color: var(--text);
  border-color: var(--border);
}

.btn-soft:hover {
  background: var(--surface);
}

section {
  padding: 72px 0;
}

.hero {
  background: radial-gradient(circle at 20% 20%, #fff7ec 0, #fff 55%);
  border-bottom: 1px solid var(--border);
}

.hero-grid {
  display: grid;
  gap: 32px;
  align-items: center;
  grid-template-columns: 1.1fr 0.9fr;
}

.hero-badge {
  display: inline-block;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  border-radius: 999px;
  font-size: 0.85rem;
  padding: 6px 12px;
}

h1,
h2,
h3 {
  margin: 0 0 10px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.35rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0;
}

.lead {
  margin-top: 14px;
  color: var(--muted);
  max-width: 60ch;
}

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

.card-grid {
  margin-top: 28px;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card-grid-3 {
  margin-top: 28px;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.card p {
  color: var(--muted);
}

.surface {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.placeholder {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq {
  margin-top: 24px;
  border-top: 1px solid var(--border);
}

.faq details {
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
}

.faq p {
  margin-top: 8px;
  color: var(--muted);
}

.cta-band {
  background: linear-gradient(120deg, #f8efe3 0%, #fefbf7 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer {
  background: #fff;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  gap: 16px;
  padding: 44px 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.footer-grid p,
.footer-grid a {
  color: var(--muted);
  font-size: 0.95rem;
}

.copy {
  border-top: 1px solid var(--border);
  padding: 12px 0 30px;
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
}

.page-hero {
  padding: 62px 0 24px;
}

.page-hero p {
  color: var(--muted);
  max-width: 72ch;
}

.contact-list,
.expect-list {
  margin-top: 16px;
  padding-left: 18px;
  color: var(--muted);
}

.gallery-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.gallery-grid figure {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: var(--surface);
}

.gallery-grid figcaption {
  padding: 10px 12px;
  font-size: 0.9rem;
  color: var(--muted);
}

.book-inline {
  margin-top: 20px;
  display: inline-flex;
}

.mobile-book {
  display: none;
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .card-grid,
  .card-grid-3,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 72px;
    padding: 12px 4%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    background: #fff;
    border-bottom: 1px solid var(--border);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 8px 0;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .desktop-book {
    display: none;
  }

  .mobile-book {
    display: block;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 60;
  }

  body {
    padding-bottom: 84px;
  }
}
