/* ============================================
   green hair - Organic Salon
   Premium Quality / Natural & Rounded Design
   ============================================ */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #5B7553;
  --primary-dark: #4A6344;
  --accent: #8FA880;
  --accent-light: rgba(143, 168, 128, .18);
  --bg: #F5F1EB;
  --bg2: #EDE8DF;
  --surface: #FFFFFF;
  --text: #3A3028;
  --text2: #6B6050;
  --text3: #9A9080;
  --white: #fff;
  --font-round: 'Zen Maru Gothic', sans-serif;
  --font-body: 'Noto Sans JP', sans-serif;
  --radius: 20px;
  --radius-pill: 999px;
  --shadow-sm: 0 4px 16px rgba(91, 117, 83, .08);
  --shadow-md: 0 8px 32px rgba(91, 117, 83, .12);
  --shadow-lg: 0 16px 48px rgba(91, 117, 83, .16);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  background: var(--bg);
  color: var(--text);
  line-height: 1.9;
  overflow-x: hidden;
  position: relative;
}

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

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
}

/* ── Scroll Progress Ring ── */
.scroll-progress {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 52px;
  height: 52px;
  z-index: 9990;
  opacity: 0;
  transition: opacity .4s;
}

.scroll-progress.visible {
  opacity: 1;
}

.scroll-progress svg {
  transform: rotate(-90deg);
}

.scroll-progress-bg {
  fill: none;
  stroke: var(--bg2);
  stroke-width: 3;
}

.scroll-progress-bar {
  fill: none;
  stroke: var(--primary);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 138.23;
  stroke-dashoffset: 138.23;
  transition: stroke-dashoffset .1s linear;
}

.scroll-progress-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-round);
  font-size: .6rem;
  font-weight: 500;
  color: var(--primary);
}

/* ── Floating Organic Blobs ── */
.blob-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .12;
  animation: blobFloat 20s ease-in-out infinite;
}

.blob-1 {
  width: 500px;
  height: 500px;
  background: var(--primary);
  top: -10%;
  left: -10%;
  animation-duration: 25s;
}

.blob-2 {
  width: 400px;
  height: 400px;
  background: var(--accent);
  top: 40%;
  right: -8%;
  animation-delay: -8s;
  animation-duration: 22s;
}

.blob-3 {
  width: 350px;
  height: 350px;
  background: #A8C49A;
  bottom: -5%;
  left: 20%;
  animation-delay: -15s;
  animation-duration: 28s;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(40px, -30px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(.95); }
  75% { transform: translate(30px, 40px) scale(1.03); }
}

/* ── Leaf Particles ── */
.leaf-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.leaf {
  position: absolute;
  opacity: 0;
  animation: leafDrift linear infinite;
}

.leaf svg {
  width: 18px;
  height: 18px;
}

@keyframes leafDrift {
  0% {
    opacity: 0;
    transform: translateY(-20px) rotate(0deg) translateX(0);
  }
  10% { opacity: .25; }
  90% { opacity: .25; }
  100% {
    opacity: 0;
    transform: translateY(calc(100vh + 40px)) rotate(360deg) translateX(80px);
  }
}

/* ── Sample Banner ── */
.sample-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  color: var(--white);
  text-align: center;
  font-family: var(--font-round);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  z-index: 99999;
  letter-spacing: .5px;
}

/* ── Header ── */
.header {
  position: fixed;
  top: 33px;
  left: 0;
  right: 0;
  z-index: 9998;
  padding: 12px 0;
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
}

.header.scrolled {
  background: rgba(245, 241, 235, .92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 24px rgba(91, 117, 83, .08);
  padding: 8px 0;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo-leaf {
  width: 38px;
  height: 38px;
  background: var(--primary);
  border-radius: 50% 8px 50% 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-round);
  font-weight: 700;
  font-size: .9rem;
  transition: transform .4s;
}

.logo:hover .logo-leaf {
  transform: rotate(10deg) scale(1.05);
}

.logo-text {
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--primary);
  line-height: 1.2;
}

.logo-text small {
  display: block;
  font-size: .58rem;
  font-weight: 400;
  color: var(--text3);
  letter-spacing: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav a {
  font-family: var(--font-round);
  font-size: .82rem;
  font-weight: 500;
  color: var(--text2);
  transition: color .3s;
  text-decoration: none;
  position: relative;
}

.nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: width .3s;
}

.nav a:not(.nav-cta):hover::after {
  width: 100%;
}

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

.nav-cta {
  background: var(--primary) !important;
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-weight: 600 !important;
  transition: all .3s !important;
}

.nav-cta:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 10000;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--primary);
  transition: .3s;
  display: block;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

@media (max-width: 840px) {
  .hamburger { display: flex; }
  .nav {
    position: fixed;
    inset: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    visibility: hidden;
    transition: .4s;
    z-index: 9999;
  }
  .nav.open {
    opacity: 1;
    visibility: visible;
  }
  .nav a { font-size: 1.1rem; }
  .nav a:not(.nav-cta)::after { display: none; }
  .header-inner { padding: 0 20px; }
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 20px 80px;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 8s ease-out;
}

.hero-bg.loaded {
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(91, 117, 83, .55) 0%,
    rgba(58, 48, 40, .45) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-tagline {
  font-family: var(--font-round);
  font-size: .8rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 4px;
  margin-bottom: 20px;
  display: block;
  opacity: 0;
  transform: translateY(20px);
}

.hero h1 {
  font-family: var(--font-round);
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
}

.hero-desc {
  font-size: .92rem;
  font-weight: 300;
  color: rgba(255, 255, 255, .85);
  line-height: 2;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(30px);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  transform: translateY(30px);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-round);
  font-size: .88rem;
  font-weight: 600;
  padding: 14px 34px;
  border-radius: var(--radius-pill);
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-outline-light {
  border: 1.5px solid rgba(255, 255, 255, .45);
  color: var(--white);
  background: transparent;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .7);
}

.btn-outline {
  border: 1.5px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ── Trust Bar ── */
.trust-bar {
  background: var(--surface);
  padding: 48px 0;
  position: relative;
  z-index: 2;
  border-radius: var(--radius) var(--radius) 0 0;
  margin-top: -30px;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, .06);
}

.trust-items {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 0 20px;
}

.trust-item {
  text-align: center;
}

.trust-num {
  font-family: var(--font-round);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
}

.trust-unit {
  font-size: .82rem;
  color: var(--primary);
  font-weight: 500;
}

.trust-label {
  display: block;
  font-family: var(--font-round);
  font-size: .72rem;
  color: var(--text3);
  margin-top: 4px;
  letter-spacing: 1px;
}

.trust-divider {
  width: 1px;
  height: 36px;
  background: var(--bg2);
  align-self: center;
}

/* ── Section Common ── */
.section {
  padding: 100px 0;
  position: relative;
  z-index: 2;
}

.section-alt {
  background: var(--surface);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  font-family: var(--font-round);
  font-size: .7rem;
  color: var(--accent);
  letter-spacing: 4px;
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-round);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: 1px;
}

.section-leaf {
  display: block;
  margin: 18px auto 0;
  width: 28px;
  height: 28px;
  color: var(--accent);
  opacity: .5;
}

.section-sub {
  font-family: var(--font-round);
  font-size: .88rem;
  color: var(--text3);
  margin-top: 16px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 2;
}

/* ── Concept Section ── */
.concept-block {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.concept-text {
  font-family: var(--font-round);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 2.4;
  color: var(--text);
  margin-bottom: 32px;
}

.concept-signature {
  font-family: var(--font-round);
  font-size: .85rem;
  color: var(--text3);
}

.concept-signature strong {
  display: block;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 4px;
}

/* ── Service Pills ── */
.service-pills {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 0 40px;
}

.service-pill {
  background: var(--surface);
  border: 1px solid rgba(91, 117, 83, .1);
  border-radius: 28px;
  padding: 40px 30px;
  text-align: center;
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
  position: relative;
  overflow: hidden;
  /* Spring pop-in animation targets */
  opacity: 0;
  transform: scale(.85) translateY(30px);
}

.service-pill::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--accent);
  border-radius: 0 0 4px 4px;
  opacity: 0;
  transition: opacity .3s;
}

.service-pill:hover {
  transform: translateY(-8px) scale(1);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.service-pill:hover::before {
  opacity: 1;
}

.service-pill.animated {
  opacity: 1;
  transform: scale(1) translateY(0);
  transition: transform .6s cubic-bezier(.34, 1.56, .64, 1), opacity .5s ease;
}

.service-icon {
  width: 64px;
  height: 64px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  color: var(--primary);
  transition: transform .3s;
}

.service-pill:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-pill h3 {
  font-family: var(--font-round);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.service-pill .service-price {
  font-family: var(--font-round);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.service-pill p {
  font-size: .84rem;
  color: var(--text2);
  line-height: 1.9;
}

@media (max-width: 840px) {
  .service-pills {
    grid-template-columns: 1fr;
    padding: 0 20px;
    max-width: 480px;
  }
}

/* ── Reasons ── */
.reasons-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 0 40px;
}

.reason-card {
  text-align: center;
  padding: 36px 20px;
  background: var(--bg);
  border-radius: var(--radius);
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
  opacity: 0;
  transform: scale(.85) translateY(30px);
}

.reason-card.animated {
  opacity: 1;
  transform: scale(1) translateY(0);
  transition: transform .6s cubic-bezier(.34, 1.56, .64, 1), opacity .5s ease;
}

.reason-card:hover {
  transform: translateY(-6px) scale(1);
  box-shadow: var(--shadow-md);
}

.reason-num {
  font-family: var(--font-round);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
  opacity: .2;
  display: block;
  margin-bottom: 10px;
  line-height: 1;
}

.reason-card h3 {
  font-family: var(--font-round);
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.reason-card p {
  font-size: .8rem;
  color: var(--text2);
  line-height: 1.9;
}

@media (max-width: 840px) {
  .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .reasons-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Photo Divider ── */
.photo-divider {
  position: relative;
  z-index: 2;
  padding: 80px 20px;
  text-align: center;
  background: var(--primary);
  overflow: hidden;
}

.photo-divider::before,
.photo-divider::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
}

.photo-divider::before {
  width: 400px;
  height: 400px;
  top: -200px;
  left: -100px;
}

.photo-divider::after {
  width: 300px;
  height: 300px;
  bottom: -150px;
  right: -50px;
}

.photo-divider-text {
  position: relative;
  z-index: 1;
  font-family: var(--font-round);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.8;
}

.photo-divider-text small {
  display: block;
  font-size: .82rem;
  font-weight: 300;
  opacity: .7;
  margin-top: 10px;
  letter-spacing: 2px;
}

/* ── Owner Section ── */
.owner-block {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: center;
  padding: 0 40px;
}

.owner-visual {
  position: relative;
}

.owner-img-placeholder {
  width: 100%;
  height: 380px;
  background: linear-gradient(135deg, var(--accent-light), var(--bg2));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-family: var(--font-round);
  font-size: .85rem;
  font-weight: 500;
}

.owner-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-round);
  font-size: .72rem;
  font-weight: 500;
  padding: 12px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  line-height: 1.5;
}

.owner-content {}

.owner-msg {
  font-family: var(--font-round);
  font-size: .95rem;
  font-weight: 400;
  line-height: 2.3;
  margin-bottom: 28px;
}

.owner-sign strong {
  font-family: var(--font-round);
  display: block;
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.owner-sign span {
  font-size: .8rem;
  color: var(--text3);
}

@media (max-width: 768px) {
  .owner-block {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
  .owner-img-placeholder { height: 260px; }
  .owner-badge { bottom: -12px; right: 12px; }
}

/* ── Testimonials ── */
.testimonial-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 0 40px;
}

.testimonial-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 32px;
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
  opacity: 0;
  transform: scale(.85) translateY(30px);
}

.testimonial-card.animated {
  opacity: 1;
  transform: scale(1) translateY(0);
  transition: transform .6s cubic-bezier(.34, 1.56, .64, 1), opacity .5s ease;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px) scale(1);
}

.testimonial-stars {
  color: #D4A84B;
  font-size: .9rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-family: var(--font-round);
  font-size: .88rem;
  line-height: 2;
  margin-bottom: 20px;
  color: var(--text);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-round);
  font-size: .8rem;
  font-weight: 700;
  color: var(--primary);
}

.testimonial-author-info strong {
  display: block;
  font-family: var(--font-round);
  font-size: .85rem;
  font-weight: 500;
}

.testimonial-author-info span {
  font-size: .75rem;
  color: var(--text3);
}

@media (max-width: 840px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
    max-width: 480px;
  }
}

/* ── Access / Info ── */
.access-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 0 40px;
}

.access-map {
  background: var(--bg2);
  border-radius: var(--radius);
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-round);
  font-size: .85rem;
  color: var(--text3);
  overflow: hidden;
}

.access-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: var(--radius);
}

.info-table {}

.info-row {
  display: flex;
  border-bottom: 1px solid var(--bg2);
  padding: 16px 0;
}

.info-label {
  min-width: 100px;
  font-family: var(--font-round);
  font-size: .85rem;
  font-weight: 700;
  color: var(--text);
}

.info-value {
  font-size: .85rem;
  color: var(--text2);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .access-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
  .access-map { height: 260px; }
  .info-row { flex-direction: column; gap: 4px; }
  .info-label { min-width: auto; }
}

/* ── FAQ ── */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
}

.faq-item {
  border-bottom: 1px solid var(--bg2);
  overflow: hidden;
}

.faq-q {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  cursor: pointer;
  transition: color .3s;
}

.faq-q:hover {
  color: var(--primary);
}

.faq-q-marker {
  font-family: var(--font-round);
  font-weight: 700;
  color: var(--primary);
  font-size: .95rem;
  min-width: 28px;
}

.faq-q h3 {
  flex: 1;
  font-family: var(--font-round);
  font-size: .92rem;
  font-weight: 600;
}

.faq-icon {
  width: 28px;
  height: 28px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--primary);
  transition: transform .3s, background .3s;
  flex-shrink: 0;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
  padding: 0;
}

.faq-a-inner {
  display: flex;
  gap: 16px;
  padding: 0 0 22px 0;
}

.faq-a-marker {
  font-family: var(--font-round);
  font-weight: 700;
  color: var(--accent);
  font-size: .95rem;
  min-width: 28px;
}

.faq-a p {
  font-size: .86rem;
  color: var(--text2);
  line-height: 2;
}

.faq-item.open .faq-a {
  max-height: 300px;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--primary);
  color: var(--white);
}

/* ── Contact ── */
.contact-box {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-info {
  text-align: center;
  margin-bottom: 40px;
}

.contact-tel {
  margin-bottom: 8px;
}

.contact-tel span {
  font-family: var(--font-round);
  font-size: .75rem;
  color: var(--text3);
  margin-right: 8px;
  letter-spacing: 2px;
}

.contact-tel a {
  font-family: var(--font-round);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

.contact-info p {
  font-size: .8rem;
  color: var(--text3);
}

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

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid var(--bg2);
  border-radius: var(--radius);
  font-size: .9rem;
  font-family: var(--font-body);
  background: var(--surface);
  color: var(--text);
  transition: border-color .3s, box-shadow .3s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-light);
}

/* ── Footer ── */
.footer {
  background: #2A2A25;
  color: #999;
  padding: 64px 0 32px;
  position: relative;
  z-index: 2;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
}

.footer-brand {
  font-family: var(--font-round);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-desc {
  font-size: .8rem;
  line-height: 1.9;
}

.footer h4 {
  font-family: var(--font-round);
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--white);
}

.footer ul {
  list-style: none;
}

.footer li {
  margin-bottom: 10px;
}

.footer li a {
  font-size: .8rem;
  transition: color .3s;
}

.footer li a:hover {
  color: var(--accent);
}

.footer-bottom {
  max-width: 1100px;
  margin: 48px auto 0;
  padding: 20px 40px 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
  text-align: center;
  font-size: .72rem;
  color: #666;
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
  .footer-bottom { padding: 20px 20px 0; }
}

/* ── Breathing Glow ── */
.breathing-glow {
  animation: breatheGlow 4s ease-in-out infinite;
}

@keyframes breatheGlow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(143, 168, 128, 0);
  }
  50% {
    box-shadow: 0 0 24px 4px rgba(143, 168, 128, .2);
  }
}

/* ── Utility ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive refinements ── */
@media (max-width: 768px) {
  .concept-block { padding: 0 20px; }
  .concept-text { font-size: .95rem; }
}
