:root {
  --ink: #1f2a2b;
  --muted: #5b6867;
  --paper: #fffaf3;
  --white: #ffffff;
  --sage: #5f7d66;
  --sage-dark: #31523f;
  --rose: #d9877c;
  --sun: #f2bd4b;
  --mist: #eaf1ee;
  --line: rgba(31, 42, 43, 0.14);
  --shadow: 0 24px 60px rgba(38, 47, 45, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans JP", system-ui, sans-serif;
  line-height: 1.8;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 48px);
  background: rgba(255, 250, 243, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 4px;
  background: var(--white);
  border: 1px solid rgba(49, 82, 63, 0.18);
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(49, 82, 63, 0.12);
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
  line-height: 1.4;
}

.brand small {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a,
.text-link {
  text-decoration: none;
}

.nav-links a:hover,
.text-link:hover {
  color: var(--sage-dark);
}

.instagram-link,
.instagram-profile-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 16px;
  color: var(--sage);
  font-weight: 900;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(38, 47, 45, 0.08);
}

.instagram-link::before,
.instagram-profile-link::before {
  content: "IG";
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--white);
  font-size: 11px;
  letter-spacing: 0;
  background: linear-gradient(135deg, #d98274, #31523f);
  border-radius: 50%;
}

.instagram-link:hover,
.instagram-profile-link:hover {
  color: var(--white);
  background: var(--sage);
  border-color: var(--sage);
}

.instagram-profile-link span {
  color: var(--muted);
  font-weight: 700;
}

.instagram-profile-link:hover span {
  color: rgba(255, 255, 255, 0.78);
}

.header-cta,
.button,
.sticky-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.header-cta,
.button.primary,
.sticky-cta {
  color: var(--white);
  background: var(--sage-dark);
  box-shadow: 0 14px 28px rgba(49, 82, 63, 0.24);
}

.button.secondary {
  color: var(--sage-dark);
  background: var(--white);
  border-color: var(--line);
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 72px) clamp(42px, 6vw, 72px);
}

.hero-copy {
  max-width: 650px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--rose);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p,
figure {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Noto Serif JP", serif;
  line-height: 1.22;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(42px, 7vw, 76px);
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 48px);
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.45;
}

.hero-lead {
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(16px, 1.7vw, 19px);
}

.hero-actions,
.contact-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 34px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--line);
}

.hero-facts div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.72);
}

.hero-facts dt {
  color: var(--muted);
  font-size: 12px;
}

.hero-facts dd {
  margin: 4px 0 0;
  font-weight: 900;
  line-height: 1.5;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 48%, rgba(21, 35, 30, 0.44));
}

.availability-card {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  width: min(320px, calc(100% - 48px));
  padding: 20px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(14px);
}

.availability-card span {
  color: var(--rose);
  font-size: 12px;
  font-weight: 900;
}

.availability-card strong {
  display: block;
  margin: 4px 0 6px;
  font-size: 20px;
}

.availability-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.section {
  padding: clamp(64px, 9vw, 112px) clamp(18px, 5vw, 72px);
}

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

.section-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.split {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

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

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

.promise-grid article {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(38, 47, 45, 0.08);
}

.icon-circle {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  color: var(--sage-dark);
  background: var(--mist);
  border-radius: 50%;
  font-weight: 900;
}

.promise-grid p,
.copy-panel p,
.price-main p,
.upgrade-box p,
.flow-list p,
.profile-copy p,
.inquiry-copy p {
  color: var(--muted);
}

.gallery-section {
  background: var(--white);
}

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

.gallery figure {
  position: relative;
  aspect-ratio: 3 / 2;
  min-height: 0;
  overflow: hidden;
  border-radius: 24px;
  background: var(--mist);
}

.gallery .wide {
  grid-column: auto;
  grid-row: auto;
}

.gallery .tall {
  grid-row: auto;
}

.gallery figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 12px 14px;
  color: var(--white);
  background: rgba(20, 30, 28, 0.58);
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.6;
  backdrop-filter: blur(10px);
}

.insta-section {
  background: #f8fbfa;
}

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

.insta-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 16px 36px rgba(38, 47, 45, 0.08);
}

.insta-media {
  aspect-ratio: 1 / 1;
  background: var(--mist);
}

.insta-body {
  padding: 16px;
}

.insta-body p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.insta-body .insta-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--ink);
  font-weight: 900;
}

.mini-mark {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  padding: 2px;
  background: var(--white);
  border: 1px solid rgba(49, 82, 63, 0.16);
  border-radius: 50%;
  overflow: hidden;
}

.mini-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.locations,
.photographer,
.inquiry {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.image-panel,
.profile-photo {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.image-panel {
  aspect-ratio: 4 / 3;
}

.profile-photo {
  aspect-ratio: 1 / 1.05;
}

.copy-panel,
.profile-copy,
.inquiry-copy {
  max-width: 640px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.tag-list span {
  padding: 8px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 700;
}

.price-section {
  background: #f3f7f4;
}

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

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(24px, 3vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: 0 18px 42px rgba(38, 47, 45, 0.09);
}

.plan-card.featured {
  border-color: rgba(95, 125, 102, 0.45);
  box-shadow: 0 26px 56px rgba(49, 82, 63, 0.18);
  transform: translateY(-10px);
}

.recommend,
.plan-kicker {
  margin: 0 0 8px;
  font-weight: 900;
}

.recommend {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 5px 12px;
  color: var(--white);
  background: var(--rose);
  border-radius: 999px;
  font-size: 12px;
}

.plan-kicker {
  color: var(--rose);
  font-size: 13px;
  text-transform: uppercase;
}

.plan-price {
  margin: 8px 0 12px;
  font-weight: 900;
}

.plan-price span {
  font-size: clamp(44px, 5vw, 64px);
  line-height: 1;
}

.plan-summary {
  margin-bottom: 20px;
  color: var(--sage-dark);
  font-size: 18px;
  font-weight: 900;
}

.plan-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
}

.plan-list li {
  padding: 12px 14px;
  color: var(--muted);
  background: #f8fbfa;
  border-radius: 13px;
  font-weight: 700;
}

.plan-card .button {
  margin-top: auto;
}

.plan-card .button.secondary.full {
  border: 1px solid var(--line);
}

.plan-note {
  max-width: 860px;
  margin: 22px auto 0;
  color: var(--muted);
  text-align: center;
}

.options-panel {
  max-width: 1160px;
  margin: clamp(42px, 6vw, 72px) auto 0;
  padding: clamp(26px, 4vw, 44px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.options-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

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

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

.option-card {
  min-height: 250px;
  padding: 24px;
  background: #f8fbfa;
  border: 1px solid rgba(31, 42, 43, 0.1);
  border-radius: 22px;
}

.option-card.featured-option {
  background: #fff5e1;
  border-color: rgba(242, 189, 75, 0.5);
}

.option-card h3 {
  min-height: 58px;
  margin-bottom: 12px;
}

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

.option-card p:last-child {
  margin-bottom: 0;
}

.option-copy {
  min-height: 58px;
}

.option-price {
  margin-bottom: 14px;
  color: var(--sage-dark);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.35;
}

.option-action {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.price-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 42px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.plan-name {
  margin-bottom: 4px;
  color: var(--sage-dark);
  font-weight: 900;
}

.price {
  margin-bottom: 16px;
  color: var(--ink);
  font-weight: 900;
}

.price span {
  font-size: clamp(48px, 7vw, 72px);
  line-height: 1;
}

.included-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.included-list li {
  padding: 13px 16px;
  background: var(--mist);
  border-radius: 14px;
  font-weight: 700;
}

.upgrade-box {
  grid-column: 1 / -1;
  padding: 20px;
  background: #fff5e1;
  border: 1px solid rgba(242, 189, 75, 0.5);
  border-radius: 18px;
}

.upgrade-box p {
  margin-bottom: 0;
}

.flow-section {
  background: var(--sage-dark);
  color: var(--white);
}

.flow-section .eyebrow,
.flow-section .section-heading p {
  color: #ffd5c9;
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.flow-list li {
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
}

.flow-list span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  color: var(--sage-dark);
  background: var(--sun);
  border-radius: 50%;
  font-weight: 900;
}

.flow-list p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.profile-sub {
  font-weight: 700;
}

.inquiry {
  background: var(--white);
}

.quick-form {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 4vw, 34px);
  background: #f8fbfa;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(38, 47, 45, 0.08);
}

.quick-form label {
  display: grid;
  gap: 7px;
  font-weight: 700;
}

.quick-form input,
.quick-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  font: inherit;
  resize: vertical;
}

.quick-form input:focus,
.quick-form textarea:focus {
  outline: 3px solid rgba(95, 125, 102, 0.22);
  border-color: var(--sage);
}

.button.full {
  width: 100%;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.form-output {
  display: none;
  padding: 14px;
  color: var(--sage-dark);
  background: var(--mist);
  border-radius: 14px;
  font-weight: 700;
  line-height: 1.7;
  white-space: pre-wrap;
}

.form-output.is-visible {
  display: block;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
}

body.is-scrolled .sticky-cta {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--ink);
}

.footer p {
  margin: 0;
  font-weight: 900;
}

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

  .hero,
  .locations,
  .photographer,
  .inquiry,
  .price-card {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 44px;
  }

  .hero-visual {
    min-height: 420px;
  }

  .promise-grid,
  .flow-list,
  .plans,
  .option-grid,
  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
  }

  .brand small,
  .header-cta {
    display: none;
  }

  h1 {
    font-size: 40px;
  }

  .hero-facts,
  .promise-grid,
  .flow-list,
  .gallery,
  .plans,
  .option-grid,
  .insta-grid {
    grid-template-columns: 1fr;
  }

  .hero-facts div {
    padding: 14px;
  }

  .section-heading.split {
    align-items: flex-start;
    flex-direction: column;
  }

  .gallery .wide,
  .gallery .tall {
    grid-column: auto;
    grid-row: auto;
  }

  .hero-visual {
    min-height: 360px;
    border-radius: 24px;
  }

  .availability-card {
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
    left: auto;
    width: auto;
    min-height: 44px;
    padding: 0 18px;
    font-size: 14px;
  }
}
