:root {
  --ink: #2f2926;
  --muted: #6f6258;
  --gold: #d3a64e;
  --gold-dark: #b68639;
  --line: #eadfce;
  --paper: #fffdf9;
  --soft: #f6efe6;
  --shadow: 0 16px 36px rgba(97, 70, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
  line-height: 1.8;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 22px 44px;
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.96), rgba(255, 253, 249, 0.72));
  backdrop-filter: blur(10px);
}

.brand {
  display: grid;
  color: #8b735e;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  line-height: 1;
}

.brand span {
  font-size: 28px;
}

.brand small {
  margin-left: 54px;
  font-size: 14px;
}

.nav {
  display: flex;
  gap: 34px;
  margin-left: auto;
  color: #4d4540;
  font-size: 14px;
  font-weight: 700;
}

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

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

.header-cta,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 50px;
  border-radius: 999px;
  background: linear-gradient(135deg, #dcb45f, #c5923a);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 12px 24px rgba(181, 132, 54, 0.22);
}

.header-cta {
  min-width: 126px;
  padding: 0 22px;
  font-size: 14px;
}

.hero {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(40px, 1fr) minmax(360px, 520px) minmax(360px, 540px) minmax(40px, 1fr);
  align-items: center;
  gap: 24px;
  padding-top: 72px;
  background:
    radial-gradient(circle at 75% 40%, rgba(230, 219, 197, 0.42), transparent 34%),
    linear-gradient(90deg, #fffdf9 0%, #fffaf2 58%, #f4ede3 100%);
  overflow: hidden;
}

.hero-copy {
  grid-column: 2;
  padding: 42px 0 38px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-dark);
  font-size: 18px;
  letter-spacing: 0.14em;
}

.hero h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.45;
  letter-spacing: 0.12em;
}

.hero h1 span {
  color: var(--gold);
}

.lead {
  max-width: 480px;
  margin: 22px 0 28px;
  font-size: 16px;
  font-weight: 700;
}

.feature-bubbles {
  display: flex;
  gap: 18px;
  margin: 0 0 28px;
}

.feature-bubbles article {
  width: 126px;
  height: 126px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  text-align: center;
}

.feature-bubbles .icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--gold-dark);
  font-family: Georgia, serif;
  font-size: 24px;
  line-height: 1;
}

.feature-bubbles strong {
  font-size: 12px;
}

.feature-bubbles small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
}

.primary-button {
  min-width: 310px;
  padding: 0 20px 0 34px;
}

.primary-button span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--gold-dark);
  font-size: 24px;
  line-height: 1;
}

.hero-visual {
  grid-column: 3;
  position: relative;
  align-self: end;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 11% -8% 0 12%;
  background: rgba(255, 255, 255, 0.55);
  filter: blur(28px);
}

.hero-visual img {
  position: relative;
  width: min(100%, 510px);
  margin-left: auto;
  mix-blend-mode: multiply;
}

.hero-visual p,
.script {
  color: #d2a35a;
  font-family: "Brush Script MT", "Segoe Script", cursive;
}

.hero-visual p {
  position: absolute;
  left: 2%;
  top: 36%;
  margin: 0;
  transform: rotate(-9deg);
  font-size: 26px;
  line-height: 1.3;
}

.section {
  padding: 76px 7.4vw 68px;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  text-align: center;
}

.section-heading span {
  width: 86px;
  height: 1px;
  background: var(--gold);
}

h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 36px);
  letter-spacing: 0.12em;
  line-height: 1.4;
}

.section-lead {
  margin: 16px 0 36px;
  text-align: center;
  font-weight: 700;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1080px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(77, 54, 33, 0.08);
  text-align: center;
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.22 / 1;
  object-fit: cover;
}

.service-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: -29px auto 12px;
  position: relative;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--gold-dark);
  font-size: 28px;
  box-shadow: var(--shadow);
}

.service-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  letter-spacing: 0.1em;
}

.service-card p {
  min-height: 94px;
  margin: 0;
  padding: 0 22px 28px;
  font-size: 13px;
  font-weight: 700;
}

.about {
  display: grid;
  grid-template-columns: minmax(280px, 430px) minmax(320px, 560px);
  justify-content: center;
  align-items: center;
  gap: 70px;
  padding: 0 7.4vw 72px;
  background: linear-gradient(90deg, #f8f3ec 0%, #fffdf9 46%, #fffdf9 100%);
}

.about > img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.script {
  margin: 0 0 4px;
  font-size: 24px;
}

.about h2 {
  margin-bottom: 18px;
}

.about p:not(.script) {
  margin: 0 0 20px;
  font-weight: 700;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 22px 28px;
  border-radius: 6px;
  background: #f7f1ec;
  list-style: none;
  font-weight: 700;
}

.check-list li {
  position: relative;
  padding-left: 32px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-dark);
  font-family: sans-serif;
  font-size: 13px;
  line-height: 1;
}

.voices {
  background: #fff;
}

.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 1080px;
  margin: 34px auto 18px;
}

.voice-grid article {
  position: relative;
  min-height: 168px;
  padding: 28px 28px 24px 86px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(77, 54, 33, 0.06);
}

.avatar {
  position: absolute;
  left: 28px;
  top: 30px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #f1e0cc, #fff8f0);
  color: var(--gold-dark);
  font-family: Georgia, serif;
  font-weight: 700;
}

.voice-grid .meta {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.voice-grid h3 {
  margin: 0 0 10px;
  color: var(--gold-dark);
  font-size: 18px;
}

.voice-grid p:last-child {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 7px;
}

.dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d8d2ca;
}

.dots span:first-child {
  background: var(--gold);
}

.bottom-cta {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(220px, 330px);
  align-items: center;
  gap: 28px;
  padding: 42px 9.6vw;
  background: linear-gradient(90deg, #f5efe8, #fffaf3);
  overflow: hidden;
}

.bottom-cta h2 {
  margin-bottom: 8px;
  font-size: clamp(24px, 3vw, 32px);
}

.bottom-cta p {
  margin: 0 0 22px;
  font-weight: 700;
  text-align: center;
}

.bottom-cta > div {
  text-align: center;
}

.bottom-cta img {
  width: 100%;
  mix-blend-mode: multiply;
}

.site-footer {
  padding: 24px 7.4vw 30px;
  background: #fff;
  text-align: center;
}

.footer-points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1080px;
  margin: 0 auto 22px;
  color: #6a5645;
  font-size: 12px;
  font-weight: 700;
}

.site-footer p {
  margin: 0;
  color: #8c8178;
  font-size: 11px;
}

@media (max-width: 900px) {
  .site-header {
    position: sticky;
    padding: 14px 20px;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 88px 22px 0;
  }

  .hero-copy,
  .hero-visual {
    grid-column: 1;
  }

  .hero-copy {
    padding: 0;
  }

  .hero h1 {
    font-size: 42px;
  }

  .feature-bubbles {
    flex-wrap: wrap;
  }

  .hero-visual img {
    width: min(100%, 430px);
  }

  .hero-visual p {
    left: 8%;
    top: 28%;
  }

  .service-grid,
  .voice-grid,
  .footer-points {
    grid-template-columns: repeat(2, 1fr);
  }

  .about,
  .bottom-cta {
    grid-template-columns: 1fr;
  }

  .about {
    gap: 28px;
    padding-top: 42px;
  }

  .bottom-cta img {
    max-width: 320px;
    margin: 0 auto;
  }
}

@media (max-width: 560px) {
  .brand span {
    font-size: 23px;
  }

  .brand small {
    margin-left: 42px;
  }

  .header-cta {
    min-width: auto;
    min-height: 42px;
    padding: 0 16px;
    font-size: 12px;
  }

  .eyebrow {
    font-size: 14px;
    letter-spacing: 0.08em;
  }

  .hero h1 {
    font-size: 34px;
    letter-spacing: 0.08em;
  }

  .lead {
    font-size: 14px;
  }

  .feature-bubbles article {
    width: 104px;
    height: 104px;
  }

  .feature-bubbles strong {
    font-size: 10px;
  }

  .primary-button {
    min-width: 0;
    width: 100%;
  }

  .section {
    padding: 56px 20px;
  }

  .section-heading {
    gap: 14px;
  }

  .section-heading span {
    width: 36px;
  }

  h2 {
    font-size: 25px;
  }

  .service-grid,
  .voice-grid,
  .footer-points {
    grid-template-columns: 1fr;
  }

  .about {
    padding: 0 20px 56px;
  }

  .about > img {
    height: 260px;
  }

  .voice-grid article {
    padding-left: 78px;
  }

  .bottom-cta {
    padding: 40px 20px;
  }
}
