:root {
  --bg: #f4f0e8;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-soft: rgba(252, 249, 243, 0.96);
  --text: #1b1d24;
  --text-soft: #66605a;
  --line: rgba(177, 146, 102, 0.22);
  --accent: #9a7440;
  --accent-dark: #705129;
  --dark: #14181f;
  --radius-lg: 30px;
  --radius-md: 18px;
  --shadow: 0 24px 80px rgba(19, 24, 32, 0.08);
  --container: 1180px;

  --mv-ivory: #fff9f3;
  --mv-warm-beige: #f4eadf;
  --mv-sand-beige: #e8d8c7;
  --mv-line-beige: #dccbbc;
  --mv-soft-coral: #d88a75;
  --mv-coral-deep: #c77862;
  --mv-brown-gray: #7b665c;
  --mv-deep-brown: #4b3a32;
  --mv-soft-shadow: 0 18px 42px rgba(75, 58, 50, 0.08);
  --mv-elevated-shadow: 0 24px 62px rgba(75, 58, 50, 0.12);
  --mv-radius-sm: 8px;
  --mv-radius-md: 12px;
  --mv-radius-lg: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(214, 188, 146, 0.18), transparent 30%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.85), transparent 24%),
    linear-gradient(180deg, #f7f3ec 0%, #f4f0e8 52%, #f1ece2 100%);
  line-height: 1.85;
}
img { max-width: 100%; height: auto; }
a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 240, 232, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(177, 146, 102, 0.18);
  box-shadow: 0 10px 32px rgba(20, 24, 31, 0.04);
}

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(14px, 1.6vw, 24px);
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 1 auto;
  min-width: 0;
  gap: 10px;
  text-decoration: none;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  gap: 3px;
  line-height: 1.2;
}

.brand-logo {
  display: block;
  width: clamp(205px, 15vw, 236px);
  max-width: 100%;
  max-height: 44px;
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.brand-name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-tag {
  font-size: 10.5px;
  letter-spacing: 0.12em;
  color: rgba(75, 58, 50, 0.78);
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--dark);
  border-radius: 999px;
  padding: 10px 14px;
  cursor: pointer;
}

.primary-nav ul {
  display: flex;
  gap: clamp(14px, 1.4vw, 24px);
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
}

.primary-nav li {
  flex: 0 0 auto;
}

.primary-nav a {
  text-decoration: none;
  color: var(--text-soft);
  font-size: 14px;
  white-space: nowrap;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--accent-dark);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 999px;
  background: var(--dark);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.hero {
  padding: 64px 0 36px;
}

.hero-card {
  background:
    radial-gradient(circle at 12% 18%, rgba(213, 186, 142, 0.24), transparent 20%),
    radial-gradient(circle at 88% 22%, rgba(255, 255, 255, 0.68), transparent 18%),
    linear-gradient(135deg, rgba(251, 246, 237, 0.98) 0%, rgba(255, 255, 255, 0.96) 100%);
  border: 1px solid rgba(177, 146, 102, 0.26);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 90px rgba(19, 24, 32, 0.08);
  padding: 76px 56px;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-title {
  font-size: clamp(38px, 6vw, 66px);
  line-height: 1.1;
  margin: 0 0 22px;
  letter-spacing: -0.02em;
}

.hero-lead {
  max-width: 780px;
  font-size: 18px;
  color: var(--text-soft);
  margin: 0 0 30px;
}

.hero-button-row {
  align-items: center;
}

.hero-subnote {
  margin: 18px 0 0;
  max-width: 780px;
  color: var(--text-soft);
  font-size: 14px;
  letter-spacing: 0.02em;
}

.button-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button,
.wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}
.button:hover,
.wp-block-button__link:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(20, 24, 31, 0.08); }
.button-primary { background: linear-gradient(135deg, #171b23 0%, #232b38 100%); color: #fff; box-shadow: 0 14px 30px rgba(20, 24, 31, 0.16); }
.button-secondary { background: rgba(255,255,255,0.84); color: var(--dark); border: 1px solid rgba(177, 146, 102, 0.2); backdrop-filter: blur(10px); }
.button-accent { background: linear-gradient(135deg, #8f6834 0%, #b08850 100%); color: #fff; box-shadow: 0 14px 28px rgba(154, 116, 64, 0.2); }
.button-luxe { background: linear-gradient(135deg, rgba(255,255,255,0.82) 0%, rgba(247,241,231,0.92) 100%); }
.button-soft { background: rgba(255,255,255,0.7); }

.section {
  padding: 30px 0 48px;
  scroll-margin-top: 110px;
}
