/* =====================================================
   岩崎内装 LP — style.css
   ===================================================== */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:wght@400;500;600;700;800&family=Source+Serif+4:ital,opsz,wght@0,8..60,400;0,8..60,600;0,8..60,700;0,8..60,800;1,8..60,400&display=swap');

/* ---------- Custom Properties ---------- */
:root {
  --brand-primary:    #1a2744;
  --brand-primary-dk: #0c1527;
  --brand-dark:       #04122e;
  --brand-bg:         #faf9f5;
  --brand-text:       #2d2d2d;
  --amber-500:        #f59e0b;
  --amber-400:        #fbbf24;
  --amber-300:        #fcd34d;
  --font-sans:        'Hanken Grotesk', ui-sans-serif, system-ui, sans-serif;
  --font-serif:       'Source Serif 4', ui-serif, Georgia, serif;
  --max-w:            80rem; /* 1280px */
  --header-h:         72px;
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  background: var(--brand-bg);
  color: var(--brand-text);
  font-size: 14px;
  line-height: 1.75;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* ---------- Utility ---------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 640px)  { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.16,1,.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: .10s; }
.reveal.d2 { transition-delay: .20s; }
.reveal.d3 { transition-delay: .30s; }

/* ---------- Section Header (共通) ---------- */
.sec-header { text-align: center; max-width: 40rem; margin: 0 auto 4rem; }
.sec-label {
  display: block;
  font-family: var(--font-sans);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--amber-500);
  margin-bottom: .4rem;
}
.sec-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--brand-primary);
  line-height: 1.25;
}
.sec-title-white { color: #fff; }
.sec-rule {
  display: block;
  width: 3rem;
  height: .25rem;
  background: var(--amber-500);
  margin: 1rem auto 0;
}
.sec-lead {
  margin-top: 1rem;
  font-size: .9rem;
  color: #6b7280;
}

/* =====================================================
   HEADER
   ===================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .3s, padding .3s, box-shadow .3s;
  padding: 1.5rem 0;
}
.site-header.scrolled {
  background: var(--brand-primary);
  padding: .75rem 0;
  box-shadow: 0 2px 16px rgba(0,0,0,.25);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
/* Logo */
.header-logo {
  display: flex;
  align-items: center;
  gap: .625rem;
  flex-shrink: 0;
}
.header-logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(245,158,11,.12);
  border-radius: .25rem;
}
.header-logo-icon svg { color: var(--amber-500); }
.header-logo-text { display: flex; flex-direction: column; }
.header-logo-name {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}
.header-logo-en {
  font-size: .55rem;
  letter-spacing: .15em;
  color: rgba(255,255,255,.55);
  line-height: 1;
  margin-top: 2px;
}
/* Desktop Nav */
.header-nav { display: none; }
@media (min-width: 1024px) {
  .header-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
  .header-nav a {
    font-size: .8125rem;
    font-weight: 500;
    color: rgba(255,255,255,.85);
    letter-spacing: .03em;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
    transition: color .2s, border-color .2s;
  }
  .header-nav a:hover { color: var(--amber-500); border-color: rgba(245,158,11,.5); }
}
/* Header Actions */
.header-actions { display: none; }
@media (min-width: 768px) {
  .header-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-shrink: 0;
  }
}
.header-tel {
  display: flex;
  align-items: center;
  gap: .625rem;
}
.header-tel-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: rgba(245,158,11,.2);
  border-radius: 50%;
  transition: background .2s;
}
.header-tel:hover .header-tel-icon { background: var(--amber-500); }
.header-tel-icon svg { color: var(--amber-500); transition: color .2s; }
.header-tel:hover .header-tel-icon svg { color: var(--brand-primary); }
.header-tel-info { display: flex; flex-direction: column; }
.header-tel-note { font-size: .625rem; color: rgba(255,255,255,.5); line-height: 1; margin-bottom: 2px; }
.header-tel-num { font-size: 1rem; font-weight: 700; color: #fff; letter-spacing: .05em; }
/* Estimate button */
.btn-estimate {
  display: flex;
  align-items: center;
  gap: .375rem;
  padding: .5rem .875rem;
  border: 1px solid var(--amber-500);
  background: rgba(245,158,11,.1);
  color: var(--amber-400);
  font-size: .75rem;
  font-weight: 700;
  border-radius: .125rem;
  transition: background .2s, color .2s;
}
.btn-estimate:hover { background: var(--amber-500); color: var(--brand-primary); }
/* Contact button */
.btn-contact-header {
  display: inline-flex;
  align-items: center;
  padding: .625rem 1.25rem;
  background: var(--amber-500);
  color: var(--brand-primary);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  border-radius: .125rem;
  transition: background .2s, transform .15s;
}
.btn-contact-header:hover { background: var(--amber-400); transform: scale(1.02); }
/* Mobile menu button */
.mobile-menu-btn {
  display: flex;
  align-items: center;
  gap: .5rem;
}
@media (min-width: 1024px) { .mobile-menu-btn { display: none; } }
.btn-estimate-mobile {
  display: flex;
  align-items: center;
  gap: .25rem;
  padding: .375rem .625rem;
  background: var(--amber-500);
  color: var(--brand-primary);
  font-size: .7rem;
  font-weight: 700;
  border-radius: .25rem;
}
.hamburger-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  color: rgba(255,255,255,.85);
  border-radius: .25rem;
  transition: background .2s;
}
.hamburger-btn:hover { background: rgba(255,255,255,.1); }

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 99;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s;
}
.mobile-drawer.open { pointer-events: auto; opacity: 1; }
.drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(4px);
}
.drawer-panel {
  position: absolute;
  top: 0; right: 0;
  width: min(80%, 22rem);
  height: 100%;
  background: var(--brand-bg);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.16,1,.3,1);
}
.mobile-drawer.open .drawer-panel { transform: translateX(0); }
.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}
.drawer-head-title {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--brand-primary);
}
.drawer-close {
  padding: .375rem;
  color: var(--brand-primary);
  border-radius: .25rem;
  transition: background .2s;
}
.drawer-close:hover { background: rgba(26,39,68,.08); }
.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 2rem 1.5rem;
}
.drawer-nav { display: flex; flex-direction: column; gap: 1.25rem; }
.drawer-nav a {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--brand-primary);
  padding-bottom: .75rem;
  border-bottom: 1px solid #f3f4f6;
  transition: color .2s;
}
.drawer-nav a:hover { color: var(--amber-500); }
.drawer-ctas { margin-top: 3rem; display: flex; flex-direction: column; gap: 1rem; }
.drawer-tel {
  display: flex;
  align-items: center;
  gap: .875rem;
  background: var(--brand-primary);
  color: #fff;
  padding: 1rem;
  border-radius: .125rem;
}
.drawer-tel-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--amber-500);
  border-radius: 50%;
  flex-shrink: 0;
}
.drawer-tel-icon svg { color: var(--brand-primary); }
.drawer-tel-note { font-size: .625rem; color: rgba(255,255,255,.6); display: block; margin-bottom: 2px; }
.drawer-tel-num { font-size: 1.125rem; font-weight: 700; letter-spacing: .05em; }
.btn-drawer-estimate {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .875rem;
  border: 1px solid var(--brand-primary);
  color: var(--brand-primary);
  font-weight: 700;
  border-radius: .125rem;
  transition: background .2s, color .2s;
}
.btn-drawer-estimate:hover { background: var(--brand-primary); color: #fff; }
.btn-drawer-contact {
  display: block;
  text-align: center;
  padding: .875rem;
  background: var(--amber-500);
  color: var(--brand-primary);
  font-weight: 700;
  border-radius: .125rem;
  transition: background .2s;
}
.btn-drawer-contact:hover { background: var(--amber-400); }
.drawer-foot {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid #e5e7eb;
  text-align: center;
  font-size: .7rem;
  color: #9ca3af;
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  min-height: 92vh;
  background: var(--brand-dark);
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media (min-width: 768px) { .hero { min-height: 100vh; } }
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(.38) contrast(1.05);
  transform: scale(1.05);
}
.hero-grad {
  position: absolute;
  inset: 0;
  background: radial-gradient(transparent 55%, rgba(4,18,46,.65));
}
.hero-grad2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--brand-dark), transparent 60%, rgba(0,0,0,.08));
}
.hero-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .15;
  display: none;
}
@media (min-width: 768px) { .hero-lines { display: block; } }
.hero-line-l, .hero-line-r {
  position: absolute;
  top: 0; bottom: 0;
  width: 1px;
  background: rgba(255,255,255,.25);
}
.hero-line-l { left: 2rem; }
.hero-line-r { right: 2rem; }
.hero-content {
  position: relative;
  z-index: 10;
  padding: 8rem 0 4rem;
  width: 100%;
}
@media (min-width: 768px) { .hero-content { padding: 10rem 0 5rem; } }
.hero-inner {
  max-width: 48rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
/* Badge */
.hero-badge {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .75rem;
  background: rgba(245,158,11,.1);
  border: 1px solid rgba(245,158,11,.3);
  padding: .375rem .75rem;
  border-radius: .125rem;
  opacity: 0;
  animation: fadeUp .6s .2s ease forwards;
}
.hero-badge-label {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--amber-400);
}
.hero-badge-div {
  width: 1px; height: .75rem;
  background: rgba(245,158,11,.4);
}
.hero-badge-license {
  display: flex;
  align-items: center;
  gap: .25rem;
  font-size: .6rem;
  color: rgba(255,255,255,.75);
}
.hero-badge-license svg { color: var(--amber-500); flex-shrink: 0; }
/* Headings */
.hero-headings {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  opacity: 0;
  animation: fadeUp .7s .35s ease forwards;
}
.hero-h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
  letter-spacing: -.01em;
}
.hero-h1 span {
  background: linear-gradient(to right, #fff, #f3f4f6, #fde68a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(.875rem, 1.5vw, 1.125rem);
  color: rgba(255,255,255,.75);
  font-weight: 500;
  letter-spacing: .02em;
}
/* Stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem 2.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  max-width: 32rem;
  opacity: 0;
  animation: fadeUp .8s .5s ease forwards;
}
.hero-stat-label {
  font-size: .625rem;
  color: rgba(255,255,255,.5);
  letter-spacing: .05em;
  display: block;
}
.hero-stat-num {
  font-family: var(--font-serif);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--amber-400);
  margin-top: .125rem;
}
.hero-stat-num small {
  font-family: var(--font-sans);
  font-size: .7rem;
  color: #fff;
  font-weight: 400;
}
/* Buttons */
.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  opacity: 0;
  animation: fadeUp .7s .45s ease forwards;
}
@media (min-width: 480px) { .hero-buttons { flex-direction: row; } }
.btn-hero-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 1rem 2rem;
  background: var(--amber-500);
  color: var(--brand-primary);
  font-weight: 700;
  font-size: .875rem;
  letter-spacing: .08em;
  border-radius: .125rem;
  transition: background .2s, transform .15s;
}
.btn-hero-primary:hover { background: var(--amber-400); transform: scale(1.02); }
.btn-hero-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 1rem 2rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  font-weight: 700;
  font-size: .875rem;
  letter-spacing: .08em;
  border-radius: .125rem;
  transition: background .2s;
}
.btn-hero-secondary:hover { background: rgba(255,255,255,.18); }
.btn-hero-secondary svg { color: var(--amber-400); }
/* Free badge */
.hero-free-note {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  opacity: 0;
  animation: fadeUp .6s .7s ease forwards;
}
.ping-dot {
  display: inline-flex;
  width: .5rem; height: .5rem;
  border-radius: 50%;
  background: #22c55e;
  animation: ping 1.5s cubic-bezier(0,0,.2,1) infinite;
}
/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  opacity: 0;
  animation: fadeUp .6s 1s ease forwards;
}
@media (min-width: 768px) { .hero-scroll { display: flex; } }
.hero-scroll-text {
  font-size: .6rem;
  letter-spacing: .2em;
  color: rgba(255,255,255,.45);
}
.scroll-mouse {
  width: 1.25rem; height: 2rem;
  border: 2px solid rgba(255,255,255,.35);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  padding: .25rem 0;
}
.scroll-dot {
  width: .25rem; height: .5rem;
  background: var(--amber-400);
  border-radius: 999px;
  animation: scrollBounce 1.5s ease-in-out infinite;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes ping {
  75%, 100% { transform: scale(1.8); opacity: 0; }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

/* =====================================================
   STRENGTHS
   ===================================================== */
.strengths {
  background: var(--brand-bg);
  padding: 5rem 0;
}
@media (min-width: 768px) { .strengths { padding: 7rem 0; } }
.strengths-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) { .strengths-grid { grid-template-columns: repeat(3, 1fr); } }
.strength-card {
  background: #fff;
  border: 1px solid #f3f4f6;
  padding: 2rem;
  border-radius: .125rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color .3s, box-shadow .3s;
}
.strength-card:hover {
  border-color: rgba(245,158,11,.3);
  box-shadow: 0 12px 32px rgba(26,39,68,.06);
}
.strength-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.strength-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(26,39,68,.1);
  line-height: 1;
  transition: color .3s;
}
.strength-card:hover .strength-num { color: rgba(245,158,11,.2); }
.strength-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem; height: 3rem;
  background: rgba(245,158,11,.1);
  border-radius: .125rem;
  transition: background .3s;
}
.strength-card:hover .strength-icon { background: var(--amber-500); }
.strength-icon svg { color: var(--amber-500); transition: color .3s; }
.strength-card:hover .strength-icon svg { color: var(--brand-primary); }
.strength-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 1rem;
  transition: color .3s;
}
.strength-card:hover .strength-title { color: var(--amber-500); }
.strength-desc {
  font-size: .875rem;
  color: #6b7280;
  line-height: 1.75;
  flex: 1;
}
.strength-rule {
  height: .125rem;
  background: #f3f4f6;
  margin-top: 1.5rem;
  transition: background .3s;
}
.strength-card:hover .strength-rule { background: var(--amber-500); }
/* Strengths Banner */
.strengths-banner {
  margin-top: 3.5rem;
  background: var(--brand-primary);
  color: #fff;
  padding: 1.5rem 2rem;
  border-radius: .125rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
  max-width: 62rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .strengths-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.strengths-banner-icon {
  display: none;
  align-items: center;
  justify-content: center;
  width: 3rem; height: 3rem;
  background: rgba(245,158,11,.2);
  border-radius: 50%;
  flex-shrink: 0;
}
@media (min-width: 480px) { .strengths-banner-icon { display: flex; } }
.strengths-banner-icon svg { color: var(--amber-400); }
.strengths-banner-text { display: flex; align-items: flex-start; gap: 1rem; }
.strengths-banner-note { font-size: .8rem; color: rgba(255,255,255,.65); }
.strengths-banner-title {
  font-size: .9375rem;
  font-weight: 700;
  color: #fff;
  margin-top: .25rem;
}
.btn-banner {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: .75rem 1.5rem;
  background: var(--amber-500);
  color: var(--brand-primary);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .05em;
  border-radius: .125rem;
  white-space: nowrap;
  transition: background .2s;
}
.btn-banner:hover { background: var(--amber-400); }

/* =====================================================
   SERVICES
   ===================================================== */
.services-section {
  background: #fff;
  padding: 5rem 0;
}
@media (min-width: 768px) { .services-section { padding: 7rem 0; } }
.services-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: 5fr 7fr;
    gap: 3rem;
  }
}
.services-list-label {
  font-size: .7rem;
  font-weight: 700;
  color: #9ca3af;
  letter-spacing: .1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: .5rem;
  padding: 0 .5rem;
}
.services-tab-list { display: flex; flex-direction: column; gap: .5rem; }
.service-tab {
  width: 100%;
  text-align: left;
  padding: 1rem 1.25rem;
  border-radius: .125rem;
  border: 1px solid rgba(250,249,245,.5);
  background: var(--brand-bg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: background .2s, border-color .2s;
  color: var(--brand-primary);
}
.service-tab:hover { background: rgba(243,244,246,.7); }
.service-tab.active {
  background: var(--brand-primary);
  color: #fff;
  border-color: var(--brand-primary);
}
.service-tab-en {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #9ca3af;
  display: block;
  margin-bottom: .2rem;
}
.service-tab.active .service-tab-en { color: var(--amber-400); }
.service-tab-jp {
  font-family: var(--font-serif);
  font-size: .9375rem;
  font-weight: 700;
}
.service-tab-arrow { flex-shrink: 0; color: rgba(26,39,68,.3); transition: transform .2s, color .2s; }
.service-tab.active .service-tab-arrow { color: var(--amber-400); transform: translateX(4px); }
/* Detail Panel */
.service-detail-panel {
  background: var(--brand-bg);
  border: 1px solid #f3f4f6;
  padding: 1.5rem;
  border-radius: .125rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}
@media (min-width: 768px) { .service-detail-panel { padding: 2rem; } }
.service-detail-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: .125rem;
  background: #e5e7eb;
}
.service-detail-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.16,1,.3,1);
}
.service-detail-img:hover img { transform: scale(1.05); }
.service-detail-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: rgba(26,39,68,.95);
  color: #fff;
  font-size: .625rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .25rem .75rem;
  border-radius: .125rem;
}
.service-detail-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.service-detail-title::before {
  content: '';
  display: inline-block;
  width: .375rem;
  height: 1.5rem;
  background: var(--amber-500);
  flex-shrink: 0;
}
.service-detail-desc { font-size: .875rem; color: #6b7280; line-height: 1.75; }
.service-detail-features {
  background: #fff;
  border: 1px solid #f3f4f6;
  padding: 1.25rem;
  border-radius: .125rem;
}
.service-features-label {
  display: flex;
  align-items: center;
  gap: .375rem;
  font-size: .7rem;
  font-weight: 700;
  color: #9ca3af;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .875rem;
}
.service-features-label svg { color: var(--amber-500); }
.service-feature-item {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .8125rem;
  color: #374151;
  line-height: 1.6;
  margin-bottom: .625rem;
}
.service-feature-item:last-child { margin-bottom: 0; }
.service-feature-check { color: var(--amber-500); font-weight: 700; flex-shrink: 0; margin-top: .1rem; }
.service-detail-footer {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(229,231,235,.5);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}
@media (min-width: 640px) {
  .service-detail-footer { flex-direction: row; align-items: center; justify-content: space-between; }
}
.service-detail-footer-note { font-size: .7rem; color: #9ca3af; }
.service-detail-footer-note strong { display: block; font-size: .8125rem; font-weight: 700; color: var(--brand-primary); margin-top: .25rem; }
.btn-service-inquiry {
  display: flex;
  align-items: center;
  gap: .375rem;
  padding: .75rem 1.5rem;
  background: var(--brand-primary);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .05em;
  border-radius: .125rem;
  white-space: nowrap;
  transition: background .2s;
}
.btn-service-inquiry:hover { background: var(--brand-primary-dk); }
.btn-service-inquiry svg { color: var(--amber-500); }

/* =====================================================
   REPRESENTATIVE
   ===================================================== */
.representative {
  background: var(--brand-bg);
  padding: 5rem 0;
}
@media (min-width: 768px) { .representative { padding: 7rem 0; } }
.rep-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .rep-grid {
    grid-template-columns: 5fr 7fr;
    gap: 3.5rem;
  }
}
/* Image */
.rep-img-frame { position: relative; }
.rep-img-border {
  display: none;
  position: absolute;
  inset: 1rem;
  border: 2px solid rgba(245,158,11,.3);
  transform: translate(-2rem, 2rem);
  border-radius: .125rem;
  pointer-events: none;
}
@media (min-width: 768px) { .rep-img-border { display: block; } }
.rep-img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: .125rem;
  background: #e5e7eb;
}
.rep-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1) brightness(.95);
  transition: filter .7s;
}
.rep-img-wrap:hover img { filter: grayscale(0); }
.rep-img-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.25rem;
  background: linear-gradient(to top, rgba(0,0,0,.8), rgba(0,0,0,.4), transparent);
}
.rep-img-role {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber-400);
  display: block;
  margin-bottom: .25rem;
}
.rep-img-name {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 700;
  color: #fff;
}
/* Message */
.rep-message { display: flex; flex-direction: column; gap: 1.5rem; }
.rep-quote-wrap { position: relative; }
.rep-quote-icon {
  position: absolute;
  top: -1.5rem; left: -1.5rem;
  width: 3rem; height: 3rem;
  color: rgba(245,158,11,.08);
  pointer-events: none;
}
.rep-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 700;
  font-style: italic;
  color: var(--brand-primary);
  line-height: 1.6;
}
.rep-text { font-size: .9rem; color: #6b7280; line-height: 1.8; }
.rep-text strong { color: #374151; font-weight: 600; }
.rep-text + .rep-text { margin-top: 1rem; }
.rep-footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(229,231,235,.6);
}
@media (min-width: 640px) { .rep-footer { flex-direction: row; align-items: center; justify-content: space-between; } }
.rep-profile-note { font-size: .7rem; color: #9ca3af; display: block; }
.rep-profile-name { font-family: var(--font-serif); font-size: 1rem; font-weight: 700; color: var(--brand-primary); }
.rep-profile-sub { font-size: .7rem; color: #9ca3af; margin-left: .5rem; }
.rep-badges { display: flex; gap: .5rem; }
.rep-badge {
  display: flex;
  align-items: center;
  gap: .25rem;
  background: rgba(245,158,11,.1);
  border: 1px solid rgba(245,158,11,.2);
  color: #92400e;
  font-size: .6rem;
  font-weight: 700;
  padding: .25rem .625rem;
  border-radius: .125rem;
}
.rep-badge svg { color: #d97706; flex-shrink: 0; }

/* =====================================================
   CUSTOMER VOICES
   ===================================================== */
.voices {
  background: #fff;
  padding: 5rem 0;
}
@media (min-width: 768px) { .voices { padding: 7rem 0; } }
.voices-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 1024px) { .voices-grid { grid-template-columns: repeat(3, 1fr); } }
.voice-card {
  background: var(--brand-bg);
  border: 1px solid #f3f4f6;
  padding: 1.5rem 2rem;
  border-radius: .125rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: box-shadow .3s;
}
.voice-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.07); }
.voice-quote-icon {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 3rem; height: 3rem;
  color: rgba(245,158,11,.06);
  pointer-events: none;
  transition: color .3s;
}
.voice-card:hover .voice-quote-icon { color: rgba(245,158,11,.12); }
.voice-stars { display: flex; gap: .25rem; margin-bottom: 1.25rem; }
.voice-star { color: var(--amber-500); width: 1rem; height: 1rem; }
.voice-location {
  font-size: .6rem;
  font-weight: 700;
  background: rgba(26,39,68,.08);
  color: var(--brand-primary);
  padding: .125rem .5rem;
  border-radius: 999px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.voice-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.25rem; }
.voice-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 1rem;
  transition: color .3s;
}
.voice-card:hover .voice-title { color: #d97706; }
.voice-quote {
  font-size: .8rem;
  color: #6b7280;
  line-height: 1.8;
  font-style: italic;
  border-left: 2px solid rgba(245,158,11,.4);
  padding-left: .875rem;
  margin-bottom: 1.5rem;
  flex: 1;
}
.voice-client {
  display: flex;
  align-items: center;
  gap: .875rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(229,231,235,.5);
}
.voice-avatar {
  width: 2.75rem; height: 2.75rem;
  border-radius: 50%;
  overflow: hidden;
  background: #e5e7eb;
  flex-shrink: 0;
}
.voice-avatar img { width: 100%; height: 100%; object-fit: cover; }
.voice-client-name { font-size: .75rem; font-weight: 700; color: #374151; }
.voice-client-loc { font-size: .6rem; color: #9ca3af; margin-top: .125rem; }
.voices-note {
  margin-top: 3rem;
  text-align: center;
  background: var(--brand-bg);
  border: 1px solid #f3f4f6;
  padding: 1.25rem 1.5rem;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  border-radius: .125rem;
  font-size: .8125rem;
  color: #9ca3af;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}
.voices-note svg { color: var(--amber-500); flex-shrink: 0; }

/* =====================================================
   COMPANY PROFILE
   ===================================================== */
.profile-section {
  background: var(--brand-bg);
  padding: 5rem 0;
}
@media (min-width: 768px) { .profile-section { padding: 7rem 0; } }
.profile-grid {
  display: grid;
  gap: 2.5rem;
  align-items: stretch;
}
@media (min-width: 1024px) {
  .profile-grid { grid-template-columns: 7fr 5fr; }
}
.profile-card {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: .125rem;
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.profile-card-title {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--brand-primary);
  padding-bottom: 1rem;
  border-bottom: 1px solid #f3f4f6;
}
.profile-card-title svg { color: var(--amber-500); }
.profile-table { width: 100%; border-collapse: collapse; }
.profile-table tr { border-bottom: 1px solid #f3f4f6; }
.profile-table tr:last-child { border-bottom: none; }
.profile-table th {
  text-align: left;
  padding: .875rem 1rem .875rem 0;
  font-size: .75rem;
  font-weight: 700;
  color: #9ca3af;
  vertical-align: top;
  white-space: nowrap;
  width: 6rem;
}
.profile-table td {
  padding: .875rem 0;
  font-size: .8125rem;
  color: #374151;
  font-weight: 500;
  line-height: 1.6;
}
.profile-hours {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  background: rgba(26,39,68,.04);
  border: 1px solid rgba(26,39,68,.08);
  padding: 1rem 1.25rem;
  border-radius: .125rem;
  font-size: .8125rem;
  color: var(--brand-primary);
  line-height: 1.65;
}
.profile-hours svg { color: var(--amber-500); flex-shrink: 0; margin-top: .1rem; }
/* Map */
.map-card {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: .125rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.map-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: .75rem;
  border-bottom: 1px solid #f3f4f6;
  margin-bottom: .75rem;
}
.map-head-left { display: flex; align-items: center; gap: .5rem; }
.map-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem; height: 2rem;
  background: rgba(245,158,11,.1);
  border-radius: .25rem;
}
.map-icon-wrap svg { color: var(--amber-500); }
.map-title { font-size: .75rem; font-weight: 700; color: #374151; }
.map-addr { font-size: .625rem; color: #9ca3af; }
.map-canvas {
  width: 100%;
  height: 350px;
  border-radius: .125rem;
  border: 1px solid #e5e7eb;
  overflow: hidden;
}
.map-canvas iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}
/* Road lines */
.map-road { position: absolute; background: #fff; border-color: #aaa; }
.map-road-h1 { top: 33%; left: 0; right: 0; height: 1rem; border-top: 1px solid #aaa; border-bottom: 1px solid #aaa; opacity: .25; }
.map-road-h2 { top: 66%; left: 0; right: 0; height: 1.25rem; border-top: 1px solid #aaa; border-bottom: 1px solid #aaa; opacity: .25; }
.map-road-v1 { left: 33%; top: 0; bottom: 0; width: 1rem; border-left: 1px solid #aaa; border-right: 1px solid #aaa; opacity: .25; }
.map-road-v2 { left: 66%; top: 0; bottom: 0; width: 1.5rem; border-left: 1px solid #aaa; border-right: 1px solid #aaa; opacity: .25; }
.map-park1 { position: absolute; top: .625rem; right: .625rem; width: 5rem; height: 5rem; border-radius: 50%; background: rgba(34,197,94,.06); border: 1px solid rgba(34,197,94,.12); }
.map-park2 { position: absolute; bottom: .75rem; left: .625rem; width: 6rem; height: 3.5rem; border-radius: .25rem; background: rgba(34,197,94,.06); border: 1px solid rgba(34,197,94,.12); }
/* Pin */
.map-pin {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.map-pin-pulse {
  position: absolute;
  width: 2.5rem; height: 2.5rem;
  background: rgba(26,39,68,.2);
  border-radius: 50%;
  animation: mapPing 2s ease-in-out infinite;
  top: 0;
}
.map-pin-card {
  position: relative;
  background: var(--brand-primary);
  border: 2px solid #fff;
  border-radius: .5rem;
  padding: .625rem .75rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
}
.map-pin-dot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem; height: 1.5rem;
  background: var(--amber-400);
  border-radius: 50%;
  flex-shrink: 0;
}
.map-pin-dot svg { color: var(--brand-primary); }
.map-pin-name { font-size: .625rem; font-weight: 700; color: #fff; letter-spacing: .05em; display: block; }
.map-pin-zip { font-size: .5rem; color: var(--amber-300); }
.map-pin-tip {
  width: .5rem; height: .5rem;
  background: var(--brand-primary);
  transform: rotate(45deg);
  margin-top: -.25rem;
  box-shadow: 2px 2px 3px rgba(0,0,0,.1);
}
.map-station {
  position: absolute;
  bottom: .75rem; left: .75rem;
  background: rgba(255,255,255,.95);
  border: 1px solid #f3f4f6;
  padding: .25rem .625rem;
  border-radius: .25rem;
  display: flex;
  align-items: center;
  gap: .375rem;
  font-size: .55rem;
  color: #6b7280;
}
.map-station-dot { width: .5rem; height: .5rem; background: #3b82f6; border-radius: .125rem; flex-shrink: 0; }
.map-google-link {
  position: absolute;
  top: .75rem; right: .75rem;
  background: var(--brand-primary);
  color: #fff;
  font-size: .55rem;
  font-weight: 700;
  padding: .375rem .625rem;
  border-radius: .25rem;
  display: flex;
  align-items: center;
  gap: .25rem;
  text-decoration: none;
  transition: background .2s;
}
.map-google-link:hover { background: var(--brand-primary-dk); }
.map-google-link svg { color: var(--amber-400); }
.map-drive-note {
  font-size: .6875rem;
  color: #9ca3af;
  background: #f9fafb;
  border: 1px solid #f3f4f6;
  padding: .75rem;
  border-radius: .125rem;
  line-height: 1.6;
  margin-top: .75rem;
}

@keyframes mapPing {
  0%, 100% { transform: scale(.5); opacity: .8; }
  50%       { transform: scale(1.4); opacity: 0; }
}

/* =====================================================
   RECRUIT
   ===================================================== */
.recruit {
  background: #fff;
  padding: 5rem 0;
}
@media (min-width: 768px) { .recruit { padding: 7rem 0; } }
.recruit-list {
  max-width: 52rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.recruit-item {
  border: 1px solid #f3f4f6;
  border-radius: .125rem;
  transition: border-color .3s;
  overflow: hidden;
}
.recruit-item.open { border-color: var(--brand-primary); background: var(--brand-bg); }
.recruit-toggle {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: transparent;
  color: var(--brand-primary);
}
.recruit-toggle-info { flex: 1; }
.recruit-toggle-tags { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; margin-bottom: .375rem; }
.recruit-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-primary);
}
@media (min-width: 640px) { .recruit-title { font-size: 1.125rem; } }
.recruit-tag {
  display: inline-block;
  background: rgba(245,158,11,.2);
  color: #92400e;
  font-size: .6rem;
  font-weight: 700;
  padding: .125rem .5rem;
  border-radius: .125rem;
}
.recruit-preview {
  font-size: .8rem;
  color: #9ca3af;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.recruit-item.open .recruit-preview { display: none; }
.recruit-chevron {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem; height: 2rem;
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: .125rem;
  color: var(--brand-primary);
  transition: transform .3s;
  flex-shrink: 0;
}
.recruit-item.open .recruit-chevron { transform: rotate(180deg); }
/* Expanded Body */
.recruit-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.16,1,.3,1);
}
.recruit-body-inner {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid rgba(243,244,246,.65);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.recruit-body-section-label {
  display: block;
  font-size: .65rem;
  font-weight: 700;
  color: #9ca3af;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .5rem;
}
.recruit-desc { font-size: .875rem; color: #6b7280; line-height: 1.75; }
.recruit-requirements {
  background: #fff;
  border: 1px solid rgba(243,244,246,.7);
  padding: 1rem;
  border-radius: .125rem;
}
.recruit-req-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: .75rem;
}
@media (min-width: 640px) { .recruit-req-grid { grid-template-columns: 1fr 1fr; } }
.recruit-req-item {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .8125rem;
  color: #374151;
}
.recruit-req-item svg { color: #22c55e; flex-shrink: 0; margin-top: .1rem; }
.recruit-perks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
}
.recruit-perk {
  background: #fff;
  border: 1px solid #f3f4f6;
  padding: .75rem;
  border-radius: .125rem;
  text-align: center;
}
.recruit-perk-label { font-size: .6rem; color: #9ca3af; text-transform: uppercase; letter-spacing: .05em; display: block; }
.recruit-perk-value { font-size: .8rem; font-weight: 700; color: var(--brand-primary); display: block; margin-top: .25rem; }
.recruit-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  padding-top: 1rem;
  border-top: 1px solid rgba(229,231,235,.4);
}
@media (min-width: 640px) { .recruit-cta { flex-direction: row; align-items: center; justify-content: space-between; } }
.recruit-cta-note { font-size: .6875rem; color: #9ca3af; line-height: 1.6; }
.btn-recruit-apply {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  background: var(--brand-primary);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .05em;
  border-radius: .125rem;
  white-space: nowrap;
  transition: background .2s;
}
.btn-recruit-apply:hover { background: var(--brand-primary-dk); }
.btn-recruit-apply svg { color: var(--amber-500); }
/* Recruit callout */
.recruit-callout {
  max-width: 40rem;
  margin: 3.5rem auto 0;
  background: rgba(245,158,11,.08);
  border: 1px solid rgba(245,158,11,.25);
  padding: 1.5rem;
  border-radius: .125rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.recruit-callout-icon svg { color: var(--amber-500); }
.recruit-callout-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-primary);
}
@media (min-width: 640px) { .recruit-callout-title { font-size: 1.125rem; } }
.recruit-callout-text { font-size: .8125rem; color: #6b7280; line-height: 1.75; max-width: 32rem; }

/* =====================================================
   CONTACT
   ===================================================== */
.contact-section {
  background: var(--brand-dark);
  color: #fff;
  padding: 5rem 0;
}
@media (min-width: 768px) { .contact-section { padding: 7rem 0; } }
.contact-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 5fr 7fr; gap: 3.5rem; }
}
/* Left */
.contact-left { display: flex; flex-direction: column; gap: 2rem; }
.contact-label { font-size: .7rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--amber-400); }
.contact-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}
.contact-rule { display: block; width: 3rem; height: .25rem; background: var(--amber-500); }
.contact-desc { font-size: .875rem; color: rgba(255,255,255,.7); line-height: 1.75; }
/* Tel Card */
.contact-tel-card {
  background: var(--amber-500);
  color: var(--brand-primary);
  padding: 1.5rem 2rem;
  border-radius: .125rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-tel-bg {
  position: absolute;
  right: -2.5rem;
  bottom: -2.5rem;
  opacity: .1;
  pointer-events: none;
}
.contact-tel-top { display: flex; align-items: center; gap: .875rem; position: relative; z-index: 1; }
.contact-tel-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem; height: 3rem;
  background: var(--brand-primary);
  border-radius: 50%;
  flex-shrink: 0;
}
.contact-tel-icon-wrap svg { color: var(--amber-400); }
.contact-tel-note { font-size: .6rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(26,39,68,.7); }
.contact-tel-num { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 900; letter-spacing: .04em; line-height: 1; }
.contact-tel-info {
  position: relative;
  z-index: 1;
  padding-top: 1rem;
  border-top: 1px solid rgba(26,39,68,.15);
  font-size: .75rem;
  color: rgba(26,39,68,.8);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  gap: .375rem;
}
.contact-tel-time { display: flex; align-items: center; gap: .375rem; font-weight: 700; }
.contact-tel-time svg { color: var(--brand-primary); }
/* Guarantees */
.contact-guarantees { display: flex; flex-direction: column; gap: 1rem; }
.contact-guarantee-item { display: flex; align-items: flex-start; gap: .75rem; font-size: .8125rem; color: rgba(255,255,255,.65); }
.contact-guarantee-item svg { color: var(--amber-500); flex-shrink: 0; margin-top: .1rem; }
.contact-guarantee-item strong { color: rgba(255,255,255,.9); }
/* Form */
.contact-form-card {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: .125rem;
  padding: 1.5rem 2rem;
  color: var(--brand-primary);
}
.form-title {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--brand-primary);
  padding-bottom: .875rem;
  border-bottom: 1px solid #f3f4f6;
  margin-bottom: 1.5rem;
}
.form-title svg { color: var(--amber-500); }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .375rem; }
.form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 639px) { .form-2col { grid-template-columns: 1fr; } }
.form-label {
  font-size: .75rem;
  font-weight: 700;
  color: #374151;
}
.form-req { color: #ef4444; margin-left: .25rem; }
.form-input {
  padding: .75rem 1rem;
  border: 1px solid #e5e7eb;
  border-radius: .125rem;
  font-family: var(--font-sans);
  font-size: .875rem;
  color: var(--brand-primary);
  background: #fff;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.form-input:focus { border-color: var(--amber-500); box-shadow: 0 0 0 2px rgba(245,158,11,.15); }
.form-input.error { border-color: #ef4444; }
.form-input.error:focus { box-shadow: 0 0 0 2px rgba(239,68,68,.15); }
.form-error {
  display: flex;
  align-items: center;
  gap: .25rem;
  font-size: .7rem;
  color: #ef4444;
}
.form-error svg { flex-shrink: 0; }
.form-textarea { resize: vertical; min-height: 140px; }
.btn-form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--brand-primary);
  color: #fff;
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: .125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  transition: background .2s;
  cursor: pointer;
}
.btn-form-submit:hover:not(:disabled) { background: var(--brand-primary-dk); }
.btn-form-submit:disabled { opacity: .7; cursor: default; }
.form-ssl-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .375rem;
  font-size: .6875rem;
  color: #9ca3af;
  text-align: center;
}
.form-ssl-note svg { flex-shrink: 0; }
/* Success state */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 3rem 1rem;
  text-align: center;
}
.form-success.visible { display: flex; }
.success-icon {
  width: 4rem; height: 4rem;
  background: #f0fdf4;
  border: 2px solid #22c55e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.success-icon svg { color: #22c55e; }
.success-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-primary);
}
.success-desc { font-size: .875rem; color: #6b7280; max-width: 28rem; line-height: 1.75; }
.success-note {
  background: #f9fafb;
  border: 1px solid #f3f4f6;
  padding: 1rem;
  border-radius: .25rem;
  font-size: .75rem;
  color: #9ca3af;
  max-width: 24rem;
}
.btn-form-reset {
  padding: .75rem 1.5rem;
  background: var(--brand-primary);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  border-radius: .125rem;
  transition: background .2s;
  cursor: pointer;
}
.btn-form-reset:hover { background: var(--brand-primary-dk); }

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
  background: var(--brand-primary);
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 3rem 0 0;
}
.footer-grid {
  display: grid;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 2.75rem; }
}
.footer-brand { display: flex; flex-direction: column; gap: 1rem; }
.footer-logo { display: flex; align-items: center; gap: .625rem; }
.footer-logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem; height: 2.25rem;
  background: rgba(245,158,11,.1);
  border-radius: .25rem;
}
.footer-logo-icon svg { color: var(--amber-400); }
.footer-logo-name { font-family: var(--font-serif); font-size: 1.0625rem; font-weight: 700; color: #fff; }
.footer-logo-en { font-size: .55rem; letter-spacing: .15em; color: rgba(255,255,255,.4); display: block; }
.footer-tagline { font-size: .75rem; color: rgba(255,255,255,.5); line-height: 1.75; max-width: 22rem; }
.footer-license { display: flex; align-items: center; gap: .375rem; font-size: .7rem; font-weight: 700; color: rgba(245,158,11,.85); }
.footer-license svg { color: var(--amber-400); flex-shrink: 0; }
.footer-col-heading {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  border-left: 2px solid var(--amber-500);
  padding-left: .625rem;
  margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: .625rem; }
.footer-links a { font-size: .8125rem; color: rgba(255,255,255,.5); transition: color .2s; }
.footer-links a:hover { color: var(--amber-400); }
.footer-contact-item { display: flex; align-items: center; gap: .375rem; font-size: .75rem; color: rgba(255,255,255,.5); }
.footer-contact-item svg { color: var(--amber-500); flex-shrink: 0; }
.footer-tel-line { font-size: 1rem; font-weight: 700; color: #fff; letter-spacing: .05em; }
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 0;
  font-size: .75rem;
  color: rgba(255,255,255,.35);
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; } }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: .6875rem; color: rgba(255,255,255,.35); transition: color .2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,.7); }

/* =====================================================
   SIMULATOR MODAL
   ===================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal {
  position: relative;
  background: #fff;
  width: 100%;
  max-width: 56rem;
  max-height: 90vh;
  border-radius: .125rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: scale(.95) translateY(12px);
  transition: transform .25s cubic-bezier(.16,1,.3,1);
}
.modal-overlay.open .modal { transform: scale(1) translateY(0); }
@media (min-width: 768px) { .modal { flex-direction: row; } }
/* Modal Left */
.modal-left {
  flex: 1;
  padding: 1.5rem 2rem;
  overflow-y: auto;
  color: var(--brand-primary);
  border-bottom: 1px solid #f3f4f6;
}
@media (min-width: 768px) { .modal-left { border-bottom: none; border-right: 1px solid #f3f4f6; } }
.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #f3f4f6;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}
.modal-head-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem; height: 2.5rem;
  background: rgba(245,158,11,.12);
  border-radius: .25rem;
}
.modal-head-icon svg { color: #d97706; }
.modal-head-title { font-family: var(--font-serif); font-size: 1.0625rem; font-weight: 700; }
.modal-head-sub { font-size: .6rem; color: #9ca3af; }
.modal-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem; height: 2rem;
  color: #9ca3af;
  background: #f9fafb;
  border: 1px solid #f3f4f6;
  border-radius: .25rem;
  transition: color .2s, background .2s;
}
.modal-close:hover { color: #374151; background: #f3f4f6; }
.modal-fields { display: flex; flex-direction: column; gap: 1.25rem; }
.modal-field-label {
  display: block;
  font-size: .6875rem;
  font-weight: 700;
  color: #9ca3af;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .5rem;
}
.modal-select {
  width: 100%;
  padding: .625rem .75rem;
  border: 1px solid #e5e7eb;
  background: #fff;
  border-radius: .125rem;
  font-family: var(--font-sans);
  font-size: .875rem;
  color: var(--brand-primary);
  outline: none;
  transition: border-color .2s;
}
.modal-select:focus { border-color: var(--amber-500); }
.slider-value-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .75rem;
  margin-bottom: .375rem;
}
.slider-value-row span:last-child { font-weight: 700; color: #d97706; font-size: .875rem; }
.modal-slider {
  width: 100%;
  height: .375rem;
  background: #f3f4f6;
  border-radius: 999px;
  appearance: none;
  outline: none;
  accent-color: var(--amber-500);
  cursor: pointer;
}
.slider-hints {
  display: flex;
  justify-content: space-between;
  font-size: .6rem;
  color: #9ca3af;
  margin-top: .25rem;
}
.modal-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.modal-checkboxes { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.modal-checkbox-label {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  padding: .75rem;
  border-radius: .125rem;
  cursor: pointer;
}
.modal-checkbox-label:hover { background: #f3f4f6; }
.modal-checkbox { width: 1rem; height: 1rem; accent-color: var(--amber-500); flex-shrink: 0; }
.modal-checkbox-title { font-size: .75rem; font-weight: 700; color: var(--brand-primary); display: block; }
.modal-checkbox-sub { font-size: .6rem; color: #9ca3af; }
/* Modal Right */
.modal-right {
  width: 100%;
  background: var(--brand-primary);
  color: #fff;
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
  position: relative;
}
@media (min-width: 768px) { .modal-right { width: 22rem; flex-shrink: 0; } }
.modal-close-right {
  position: absolute;
  top: 1rem; right: 1rem;
  display: none;
  align-items: center;
  justify-content: center;
  width: 2rem; height: 2rem;
  color: rgba(255,255,255,.5);
  border-radius: .25rem;
  transition: background .2s, color .2s;
}
@media (min-width: 768px) { .modal-close-right { display: flex; } }
.modal-close-right:hover { background: rgba(255,255,255,.1); color: #fff; }
.est-label {
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: linear-gradient(to right, var(--amber-400), var(--amber-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: .25rem;
}
.est-title {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding-bottom: .75rem;
  margin-bottom: 1.25rem;
}
.est-breakdown { display: flex; flex-direction: column; gap: .75rem; }
.est-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: .75rem;
  color: rgba(255,255,255,.7);
}
.est-row.hidden { display: none; }
.est-row-val { font-family: monospace; font-weight: 700; color: #fff; font-size: .875rem; }
.est-row.option { color: var(--amber-300); }
.est-mgmt {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: .6875rem;
  color: rgba(255,255,255,.45);
  padding-top: .5rem;
  border-top: 1px solid rgba(255,255,255,.05);
}
.est-mgmt-val { font-family: monospace; }
.est-total-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  padding: 1.25rem;
  border-radius: .125rem;
  text-align: center;
  margin-top: 1.25rem;
}
.est-total-label {
  font-size: .625rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--amber-400);
  display: block;
  margin-bottom: .375rem;
}
.est-total-num {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  color: #fff;
}
.est-total-num small { font-family: var(--font-sans); font-size: .7rem; font-weight: 400; color: rgba(255,255,255,.5); margin-left: .25rem; }
.est-total-area { font-size: .6rem; color: rgba(255,255,255,.4); margin-top: .25rem; display: block; }
.est-actions { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.btn-apply-estimate {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .875rem;
  background: var(--amber-500);
  color: var(--brand-primary);
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .04em;
  border-radius: .125rem;
  transition: background .2s;
}
.btn-apply-estimate:hover { background: var(--amber-400); }
.btn-apply-estimate svg { transition: transform .3s; }
.btn-apply-estimate:hover svg { transform: translateX(3px); }
.est-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .6rem;
  color: rgba(255,255,255,.4);
  line-height: 1.6;
}
.est-disclaimer svg { flex-shrink: 0; color: var(--amber-500); margin-top: .1rem; }
