:root {
  --ink: #37302a;
  --muted: #7b7268;
  --paper: #fffdf8;
  --soft: #f7f1e8;
  --line: #e9dcc8;
  --gold: #d9b878;
  --teal: #0d7483;
  --teal-dark: #075461;
  --shadow: 0 18px 45px rgba(84, 61, 31, 0.12);
  --serif: "Yu Mincho", "Hiragino Mincho ProN", "Times New Roman", serif;
  --sans: "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.8;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 72px;
  padding: 12px clamp(20px, 6vw, 72px);
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid rgba(217, 184, 120, 0.25);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(18px, 2.1vw, 24px);
  letter-spacing: 0;
  line-height: 1.25;
}

.brand small {
  display: block;
  margin-top: 1px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1;
}

.brand.light small,
.brand.light strong {
  color: #fff7e9;
}

.brand.light .brand-mark-img {
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.28));
}

.footer-bottom .brand {
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.nav {
  display: flex;
  justify-content: flex-end;
  gap: clamp(16px, 2.2vw, 30px);
  font-size: 13px;
  font-weight: 700;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}

.hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav a {
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--teal);
}

.header-cta,
.btn,
.outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 24px;
  border-radius: 6px;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-cta,
.btn.primary {
  color: white;
  background: linear-gradient(180deg, var(--teal), var(--teal-dark));
  box-shadow: 0 12px 22px rgba(13, 116, 131, 0.24);
}

.btn.secondary {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 28px rgba(75, 55, 31, 0.12);
}

.header-cta:hover,
.btn:hover,
.outline:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: clamp(520px, 61vw, 650px);
  padding: clamp(82px, 10vw, 130px) clamp(24px, 7vw, 84px) 70px;
  overflow: hidden;
  color: #fff9ef;
  background: #1a0d06;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0;
  background:
    radial-gradient(circle at 18% 48%, rgba(203, 151, 78, 0.18), transparent 32%),
    linear-gradient(90deg, rgba(18, 10, 6, 0.9), rgba(34, 20, 10, 0.58) 42%, rgba(18, 10, 6, 0.18)),
    url("./assets/hero-generated.png") center / cover no-repeat;
  animation:
    heroReveal 1.15s ease-out forwards,
    heroDrift 18s ease-in-out 1.15s infinite alternate;
  transform: scale(1.04);
  transform-origin: center;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 135px;
  content: "";
  background: linear-gradient(0deg, rgba(39, 22, 10, 0.48), transparent);
  pointer-events: none;
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: scale(1.015) translate3d(0, 10px, 0);
  }

  to {
    opacity: 1;
    transform: scale(1.04) translate3d(0, 0, 0);
  }
}

@keyframes heroDrift {
  from {
    opacity: 1;
    transform: scale(1.04) translate3d(0, 0, 0);
  }

  to {
    opacity: 1;
    transform: scale(1.1) translate3d(-1.4%, -0.8%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero::before,
  .gallery-track,
  .voice-track {
    animation: none;
    opacity: 1;
  }
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.eyebrow,
.label {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-align: center;
}

.hero .eyebrow {
  text-align: left;
}

.hero h1 {
  margin: 0 0 28px;
  font-family: var(--serif);
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 700;
  line-height: 1.28;
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

.hero p:not(.eyebrow) {
  margin: 0 0 34px;
  font-size: clamp(15px, 1.7vw, 18px);
  font-weight: 700;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
}

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

.phone-btn {
  flex-direction: column;
  gap: 2px;
  min-width: 158px;
  min-height: 54px;
  padding: 8px 22px;
}

.phone-btn span {
  color: #fff;
  font-size: 15px;
  line-height: 1.1;
}

.phone-btn small {
  font-size: 11px;
  line-height: 1.15;
  opacity: 0.92;
}

.hero-badges {
  position: absolute;
  right: clamp(22px, 5vw, 76px);
  bottom: 44px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(104px, 1fr));
  gap: 18px;
  max-width: 440px;
}

.hero-badges div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 94px;
  padding: 18px 14px;
  border: 1px solid rgba(217, 184, 120, 0.72);
  border-radius: 999px;
  color: #fff8ea;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  background: rgba(123, 79, 31, 0.18);
  backdrop-filter: blur(4px);
}

.hero-badges span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.12;
}

.section {
  padding: clamp(48px, 8vw, 80px) clamp(20px, 6vw, 64px);
}

.section h2 {
  margin: 0 0 34px;
  font-family: var(--serif);
  font-size: clamp(26px, 4vw, 36px);
  line-height: 1.35;
  text-align: center;
}

.soft {
  background: linear-gradient(180deg, #fbf8f1, #fffdf8);
}

.intro {
  background: #fffdf8;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1050px;
  margin: 0 auto;
}

.reason-grid article {
  min-height: 158px;
  padding: 10px clamp(18px, 3vw, 42px);
  text-align: center;
  border-right: 1px solid var(--line);
}

.reason-grid article:last-child {
  border-right: 0;
}

.reason-grid h3,
.feature-grid b,
.audience-grid h3,
.flow h3,
.voices h3 {
  margin: 10px 0 6px;
  color: #7b5a31;
  font-size: 16px;
  line-height: 1.5;
}

.reason-grid p,
.feature-grid span,
.audience-grid p,
.flow p,
.voices p,
.note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.line-icon,
.icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 2px solid var(--gold);
  border-radius: 14px;
  background-color: rgba(255, 253, 248, 0.72);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 28px 28px;
}

.line-icon::before,
.icon::before {
  content: none;
}

.focus {
  background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%23d9b878' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 10v4h4l5 4V6L8 10z'/%3E%3Cpath d='M18 9l3 3'/%3E%3Cpath d='M21 9l-3 3'/%3E%3C/svg%3E");
}

.comfort {
  background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%23d9b878' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='5' y='4' width='14' height='16' rx='2'/%3E%3Cpath d='M9 9l1.5 1.5L14 7'/%3E%3Cpath d='M9 15h6'/%3E%3C/svg%3E");
}

.value {
  background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%23d9b878' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='8'/%3E%3Cpath d='M8 7l4 5 4-5'/%3E%3Cpath d='M8 13h8'/%3E%3Cpath d='M8 16h8'/%3E%3Cpath d='M12 12v6'/%3E%3C/svg%3E");
}

.book {
  background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%235aa8b6' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 5.5A2.5 2.5 0 0 1 6.5 3H20v15H7a3 3 0 0 0-3 3z'/%3E%3Cpath d='M4 5.5V21'/%3E%3Cpath d='M8 7h8'/%3E%3C/svg%3E");
}

.wifi {
  background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%235aa8b6' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 9a12 12 0 0 1 16 0'/%3E%3Cpath d='M7 12.5a7.5 7.5 0 0 1 10 0'/%3E%3Cpath d='M10 16a3 3 0 0 1 4 0'/%3E%3Ccircle cx='12' cy='19' r='1' fill='%235aa8b6' stroke='none'/%3E%3C/svg%3E");
}

.plug {
  background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%235aa8b6' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 3v6'/%3E%3Cpath d='M15 3v6'/%3E%3Cpath d='M7 9h10v3a5 5 0 0 1-10 0z'/%3E%3Cpath d='M12 17v4'/%3E%3C/svg%3E");
}

.lock {
  background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%235aa8b6' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='5' y='10' width='14' height='10' rx='2'/%3E%3Cpath d='M8 10V8a4 4 0 0 1 8 0v2'/%3E%3Cpath d='M12 14v2'/%3E%3C/svg%3E");
}

.cup {
  background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%235aa8b6' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 8h10v5a4 4 0 0 1-4 4H10a4 4 0 0 1-4-4z'/%3E%3Cpath d='M16 10h1.5a2.5 2.5 0 0 1 0 5H16'/%3E%3Cpath d='M8 3v2'/%3E%3Cpath d='M12 3v2'/%3E%3Cpath d='M5 20h14'/%3E%3C/svg%3E");
}

.monitor {
  background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%235aa8b6' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='4' y='5' width='16' height='11' rx='2'/%3E%3Cpath d='M9 20h6'/%3E%3Cpath d='M12 16v4'/%3E%3C/svg%3E");
}

.camera {
  background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%235aa8b6' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 8l10-4v16L4 16z'/%3E%3Cpath d='M14 10h4l2-2v8l-2-2h-4'/%3E%3C/svg%3E");
}

.clock {
  background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%235aa8b6' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='8'/%3E%3Cpath d='M12 7v5l3 2'/%3E%3C/svg%3E");
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
}

.feature-grid article {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 4px 14px;
  align-items: center;
  min-height: 112px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(233, 220, 200, 0.76);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(87, 62, 31, 0.05);
}

.feature-grid .icon {
  grid-row: span 2;
  color: #6aa9b4;
  background-color: #f8fbfa;
  border-color: #d4eceb;
}

.feature-grid .icon::before {
  color: #5aa8b6;
}

.audience-grid,
.price-grid,
.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
}

.audience-grid article {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(77, 55, 31, 0.08);
}

.audience-grid img {
  width: 100%;
  height: 165px;
  object-fit: cover;
}

.audience-grid article:nth-child(3) img {
  object-position: center 42%;
}

.audience-grid div {
  position: relative;
  min-height: 116px;
  padding: 22px 24px 22px 74px;
}

.audience-grid div::before {
  position: absolute;
  left: 24px;
  top: 26px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  content: "";
  background: url("data:image/svg+xml,%3Csvg width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%23d9b878' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='8' r='3.5'/%3E%3Cpath d='M5 20a7 7 0 0 1 14 0'/%3E%3C/svg%3E") center / 22px 22px no-repeat;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.price-section {
  background: linear-gradient(180deg, #fffdf8, #faf3e9);
}

.price-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  gap: clamp(26px, 5vw, 62px);
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 44px) 0;
  border-top: 1px solid rgba(217, 184, 120, 0.62);
  border-bottom: 1px solid rgba(217, 184, 120, 0.62);
}

.price-main {
  display: grid;
  align-content: center;
  gap: 12px;
}

.price-kicker {
  margin: 0;
  color: #7b5a31;
  font-family: var(--serif);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  line-height: 1.45;
}

.price-main p:last-child {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.price-details {
  display: grid;
  gap: 0;
  margin: 0;
  border-left: 1px solid var(--line);
}

.price-details div {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 18px;
  padding: 18px 0 18px clamp(20px, 4vw, 36px);
  border-bottom: 1px solid rgba(233, 220, 200, 0.82);
}

.price-details div:last-child {
  border-bottom: 0;
}

.price-details dt {
  color: #7b5a31;
  font-weight: 800;
}

.price-details dd {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 0;
  padding: 28px 30px 22px;
  text-align: center;
  background: #fff;
  border: 1px solid #dfc59b;
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(75, 55, 31, 0.07);
}

.price-card.featured {
  overflow: hidden;
  color: var(--ink);
  background: #fff;
  border-color: #0f7481;
  transform: none;
}

.price-card.featured::before {
  position: absolute;
  inset: 0 0 auto;
  height: 110px;
  content: "";
  background: #0c7482;
}

.price-card > * {
  position: relative;
  z-index: 1;
}

.price-card h3 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.5;
}

.price-card.featured h3 {
  color: #fff;
}

.amount {
  margin: 0 0 10px;
  color: var(--teal);
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 54px);
  font-weight: 700;
  line-height: 1;
}

.price-card.featured .amount {
  margin-top: 54px;
}

.amount span,
.amount small {
  font-size: 0.46em;
}

.price-card ul {
  align-self: stretch;
  margin: 10px 0 auto;
  padding-left: 28px;
  color: var(--muted);
  font-size: 13px;
  text-align: left;
}

.price-card b {
  display: block;
  width: calc(100% + 60px);
  margin: 20px -30px -22px;
  padding: 14px 16px;
  color: #7b5a31;
  background: #fbf6ee;
  border-radius: 0 0 8px 8px;
}

.ribbon {
  position: absolute;
  left: 18px;
  top: 14px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.note {
  margin-top: 18px;
  text-align: center;
}

.gallery {
  padding-left: clamp(14px, 3vw, 32px);
  padding-right: clamp(14px, 3vw, 32px);
  overflow: hidden;
}

.gallery-track-wrap {
  overflow: hidden;
}

.gallery-track {
  display: flex;
  width: max-content;
  gap: 10px;
  animation: galleryScroll 34s linear infinite;
}

.gallery-track figure {
  flex: 0 0 clamp(138px, 18vw, 182px);
  margin: 0;
}

.gallery-track img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
  border-radius: 6px;
}

@keyframes galleryScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 5px));
  }
}

.flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1.25fr;
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
  align-items: stretch;
}

.flow article,
.flow aside,
.voice-grid article,
.faq details {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(233, 220, 200, 0.78);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(75, 55, 31, 0.06);
}

.flow article {
  position: relative;
  padding: 28px 24px;
  text-align: center;
}

.flow article:not(:last-of-type)::after {
  position: absolute;
  top: 50%;
  right: -17px;
  color: var(--gold);
  content: "›";
  font-size: 42px;
  transform: translateY(-50%);
}

.flow span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 26px;
}

.flow aside {
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 26px;
  text-align: center;
  background: linear-gradient(135deg, #fff, #fbf2e1);
}

.flow aside h3 {
  margin-top: 0;
  font-family: var(--serif);
  font-size: 20px;
}

.mini-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.mini-actions .btn {
  min-width: 148px;
  min-height: 44px;
  padding: 0 18px;
}

.mini-actions .phone-btn {
  min-width: 148px;
  min-height: 46px;
  padding: 6px 18px;
}

.mini-actions .phone-btn span {
  font-size: 14px;
}

.mini-actions .phone-btn small {
  font-size: 10px;
}

.access-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) 1.35fr;
  gap: clamp(24px, 5vw, 70px);
  max-width: 1120px;
  margin: 0 auto;
  align-items: center;
}

address {
  color: var(--muted);
  font-style: normal;
  font-weight: 700;
}

.map-frame {
  width: 100%;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(75, 55, 31, 0.06);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  border: 0;
}

.voices {
  background: #fbf8f2;
}

.voice-marquee {
  overflow: hidden;
  max-width: 100%;
}

.voice-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: voiceScroll 46s linear infinite;
}

.voice-track article,
.voice-grid article {
  position: relative;
  flex: 0 0 min(360px, calc(100vw - 48px));
  min-height: 150px;
  padding: 24px 24px 20px 78px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(233, 220, 200, 0.78);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(75, 55, 31, 0.06);
}

.avatar {
  position: absolute;
  left: 24px;
  top: 28px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--teal);
  font-weight: 800;
  background: #eff8f6;
  border: 1px solid #cfe8e7;
  border-radius: 50%;
  overflow: hidden;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.voice-track b,
.voice-grid b {
  color: #d7a73e;
  letter-spacing: 0.12em;
}

@keyframes voiceScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 9px));
  }
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 36px;
  max-width: 1120px;
  margin: 0 auto;
}

.faq details {
  padding: 0 18px;
}

.faq summary {
  position: relative;
  min-height: 48px;
  padding: 12px 30px 12px 0;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  position: absolute;
  right: 0;
  content: "+";
  color: var(--teal);
  font-size: 20px;
}

.faq details[open] summary::after {
  content: "−";
}

.faq p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 13px;
}

.outline {
  width: min(100%, 300px);
  min-height: 38px;
  color: var(--teal);
  border: 1px solid #8dc1c8;
  background: #fff;
}

.footer {
  position: relative;
  color: #fff7e9;
  background:
    linear-gradient(90deg, rgba(28, 18, 12, 0.95), rgba(28, 18, 12, 0.82)),
    url("./assets/hero-generated.png") center 68% / cover no-repeat;
}

.footer-cta {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 52px 22px 34px;
  text-align: center;
}

.footer-cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(24px, 4vw, 34px);
}

.footer-cta p {
  margin: 0 0 14px;
  color: #dbcbb5;
}

.footer-cta div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 22px clamp(20px, 6vw, 72px);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: #e7dccb;
  font-size: 12px;
  font-weight: 700;
}

.to-top {
  position: fixed;
  right: 24px;
  bottom: 22px;
  z-index: 10;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.contact-hero {
  padding-top: clamp(64px, 9vw, 96px);
  padding-bottom: clamp(34px, 6vw, 58px);
  text-align: center;
  background: linear-gradient(180deg, #fffdf8, #fbf5eb);
}

.contact-hero h1 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 48px);
}

.contact-hero p {
  margin: 0 auto;
  max-width: 660px;
  color: var(--muted);
  font-weight: 700;
}

.contact-section {
  background: #fbf8f2;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 28px;
  max-width: 1040px;
  margin: 0 auto;
}

.contact-form,
.contact-side {
  padding: clamp(24px, 4vw, 38px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(75, 55, 31, 0.06);
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: #7b5a31;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-side h2 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 24px;
}

.contact-side p {
  margin: 0 0 18px;
  color: var(--muted);
}

.contact-side dl {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
}

.contact-side dl div {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.contact-side dt {
  color: #7b5a31;
  font-weight: 800;
}

.contact-side dd {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero-badges {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 52px;
  }

  .reason-grid,
  .audience-grid,
  .price-grid,
  .voice-grid {
    grid-template-columns: 1fr;
  }

  .reason-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .reason-grid article:last-child {
    border-bottom: 0;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flow,
  .access-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .flow article:not(:last-of-type)::after {
    display: none;
  }

  .price-card.featured {
    transform: none;
  }

  .to-top {
    display: none;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 14px;
  }

  .site-header {
    min-height: auto;
    padding: 12px 16px;
    grid-template-columns: 1fr auto auto;
  }

  .hamburger {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(255, 253, 248, 0.98);
    border-bottom: 1px solid rgba(217, 184, 120, 0.3);
    box-shadow: 0 8px 24px rgba(75, 55, 31, 0.12);
    padding: 8px 0;
    backdrop-filter: blur(18px);
  }

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

  .nav a {
    padding: 14px 24px;
    font-size: 15px;
    border-bottom: 1px solid rgba(217, 184, 120, 0.15);
  }

  .nav a:last-child {
    border-bottom: none;
  }

  .brand-mark-img {
    width: 34px;
    height: 34px;
  }

  .brand strong {
    font-size: 17px;
  }

  .brand small {
    font-size: 8px;
  }


  .hero {
    min-height: 620px;
    padding: 74px 18px 42px;
    background-position: 58% center;
  }

  .hero h1 {
    font-size: clamp(30px, 8.3vw, 34px);
  }

  .hero-actions,
  .footer-cta div {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-badges {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    max-width: none;
  }

  .hero-badges div {
    min-height: 82px;
    padding: 14px 8px;
    font-size: 10px;
  }

  .section {
    padding: 44px 16px;
  }

  .gallery-track {
    animation-duration: 55s;
  }

  .feature-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid article {
    min-height: 98px;
  }

  .price-panel,
  .price-details div {
    grid-template-columns: 1fr;
  }

  .price-details {
    border-left: 0;
  }

  .price-details div {
    gap: 4px;
    padding-left: 0;
  }

  .footer-bottom {
    display: grid;
    justify-items: start;
  }

  .footer-bottom nav {
    justify-content: flex-start;
  }

}
