:root {
  --paper: #fff8ec;
  --paper-2: #f4eddf;
  --ink: #151515;
  --muted: #675f53;
  --green: #07c85c;
  --deep-green: #1c5940;
  --gold: #bc8d34;
  --line: rgba(21, 21, 21, 0.12);
  --shadow: 0 24px 60px rgba(31, 24, 10, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Yu Gothic", "Meiryo", system-ui, sans-serif;
  font-weight: 700;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 86px;
  padding: 14px clamp(22px, 4.8vw, 72px);
  background: rgba(255, 248, 236, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 220px;
}

.brand img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.16);
  object-fit: cover;
}

.brand strong {
  display: block;
  font-size: 28px;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.6vw, 34px);
  margin-left: auto;
  font-size: 14px;
  font-weight: 900;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  font-weight: 900;
  white-space: nowrap;
}

.header-cta,
.button.line {
  color: #fff;
  background: var(--green);
  box-shadow: 0 18px 32px rgba(7, 200, 92, 0.25);
}

.button.insta {
  color: #fff;
  background: linear-gradient(135deg, #ff7a18 0%, #e72b8d 48%, #6046ff 100%);
  box-shadow: 0 18px 34px rgba(231, 43, 141, 0.25);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(600px, 1.18fr);
  gap: clamp(30px, 4vw, 58px);
  min-height: calc(100vh - 86px);
  padding: clamp(48px, 5vw, 78px) clamp(22px, 5vw, 74px) 58px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.28em;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  font-size: clamp(44px, 5.2vw, 72px);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-copy,
.hero-visual {
  min-width: 0;
}

.hero-copy h1 {
  max-width: 760px;
}

.lead {
  max-width: 680px;
  margin-top: 28px;
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.hero-visual {
  align-self: center;
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 16 / 10.5;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: var(--shadow);
  background: #f4eddf;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  background: #fff8ec;
  box-shadow: var(--shadow);
  padding: 10px;
  text-decoration: none;
}

.gallery-main {
  grid-column: span 1;
  min-height: 0;
}

.gallery-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 2.38 / 1;
  object-fit: contain;
  border-radius: 16px;
  background: #fff8ec;
  transition: transform 0.5s ease;
}

.gallery-card:hover img {
  transform: scale(1.035);
}

.gallery-card::after {
  display: none;
}

.gallery-card span {
  position: static;
  align-self: flex-start;
  display: inline-flex;
  margin-top: 8px;
  padding: 10px 15px;
  border-radius: 999px;
  color: #fff;
  background: #123d52;
  font-size: 13px;
  font-weight: 900;
}

.section {
  padding: clamp(62px, 8vw, 108px) clamp(22px, 5vw, 74px);
}

.section-heading {
  max-width: 920px;
  margin-bottom: 34px;
}

.section-heading.split {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(360px, 1.05fr);
  gap: 36px;
  max-width: none;
  align-items: end;
}

.section-heading h2,
.price-card h2,
.voice-copy h2,
.contact-section h2 {
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1.16;
  letter-spacing: 0;
}

.section-heading p,
.price-card p,
.voice-copy p,
.contact-section p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 2;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  overflow: hidden;
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(31, 24, 10, 0.08);
}

.service-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.service-card div {
  padding: 25px;
}

.service-card span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.service-card h3 {
  margin-top: 14px;
  font-size: 26px;
}

.service-card p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.ba-section {
  background: #18251d;
  color: #fff;
}

.ba-section .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.ba-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 32px;
}

.ba-card {
  display: block;
  padding: 16px;
  border-radius: 28px;
  background: #e7f5ff;
  color: #123d52;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.ba-card img {
  width: 100%;
  aspect-ratio: 2.38 / 1;
  object-fit: contain;
  border-radius: 18px;
  background: #d5ecf8;
}

.ba-card span {
  display: inline-flex;
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  color: #fff;
  background: #123d52;
  font-size: 13px;
  font-weight: 900;
}

.price-section {
  background: var(--paper-2);
}

.price-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  gap: 42px;
  align-items: center;
  padding: clamp(28px, 5vw, 56px);
  border-radius: 30px;
  background: #ffea00;
  box-shadow: var(--shadow);
}

.price-card .eyebrow,
.price-card p {
  color: #221a06;
}

.price-card dl {
  margin: 0;
  padding: 0;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
}

.price-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px;
  border-bottom: 1px solid var(--line);
}

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

.price-card dt {
  font-size: 18px;
}

.price-card dd {
  margin: 0;
  font-weight: 900;
  text-align: right;
}

.price-card dd span {
  display: block;
  margin-bottom: 6px;
  color: rgba(21, 21, 21, 0.58);
  font-size: 15px;
  text-decoration: line-through;
}

.price-card dd strong {
  display: block;
  color: #e10020;
  font-size: 34px;
  line-height: 1;
}

.voice-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(420px, 1.1fr);
  gap: 48px;
  align-items: center;
}

.review-panel {
  padding: clamp(28px, 5vw, 52px);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.review-panel p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.16em;
}

.review-panel strong {
  display: block;
  color: #111;
  font-size: clamp(82px, 10vw, 132px);
  line-height: 0.9;
  letter-spacing: 0;
}

.review-panel span {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
}

.review-panel a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.review-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.review-card {
  margin: 0;
  padding: 18px 20px;
  border: 1px solid rgba(18, 44, 61, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
}

.review-card p {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.85;
}

.review-card cite {
  display: block;
  margin-top: 10px;
  color: var(--accent);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 48px;
  align-items: center;
  background: #111;
  color: #fff;
}

.contact-section p {
  color: rgba(255, 255, 255, 0.74);
}

.shop-info {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  color: var(--ink);
}

.shop-info div {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 20px;
  padding: 22px 28px;
  border-bottom: 1px solid var(--line);
}

.shop-info div:last-child {
  border-bottom: 0;
}

.shop-info dt {
  color: var(--muted);
}

.shop-info dd {
  margin: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(22px, 5vw, 74px);
  background: #111;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 1100px) {
  .site-nav {
    display: none;
  }

  .hero,
  .section-heading.split,
  .price-card,
  .voice-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    align-items: flex-start;
    min-height: auto;
  }

  .brand {
    min-width: 0;
  }

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

  .header-cta {
    min-height: 46px;
    padding: 0 18px;
    font-size: 13px;
  }

  h1 {
    font-size: 40px;
  }

  .hero {
    display: block;
    overflow: hidden;
  }

  .ba-showcase {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ba-card {
    padding: 10px;
    border-radius: 22px;
  }

  .ba-card img {
    border-radius: 15px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    margin-top: 34px;
  }

  .hero-visual img {
    border-radius: 24px;
    aspect-ratio: 1.2 / 1;
  }

  .gallery-main {
    grid-column: span 1;
    min-height: 0;
  }

  .gallery-card {
    border-radius: 18px;
    padding: 8px;
  }

  .gallery-card img {
    border-radius: 12px;
  }

  .gallery-card span {
    padding: 8px 10px;
    font-size: 11px;
    line-height: 1.2;
  }

  .section {
    padding: 58px 20px;
  }

  .service-card {
    min-height: 0;
  }

  .price-card {
    padding: 26px 20px;
  }

  .price-card dl div,
  .shop-info div {
    grid-template-columns: 1fr;
  }

  .price-card dl div {
    display: block;
  }

  .price-card dd {
    margin-top: 8px;
  }

  .review-panel {
    padding: 28px 22px;
  }
}
