/* ===== Variables ===== */
:root {
  --color-bg: #f6f4f0;
  --color-bg-elevated: #fff;
  --color-text: #1c1b19;
  --color-text-muted: #5c5a57;
  --color-accent: #0d6862;
  --color-accent-hover: #0a524d;
  --color-accent-light: #e8f2f1;
  --color-border: #e5e2dd;
  --font-heading: "Fraunces", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --radius: 12px;
  --radius-lg: 20px;
  --header-h: 80px;
  --container: min(1120px, 100% - 2rem);
}

@media (max-width: 768px) {
  :root {
    --space-lg: 1.75rem;
    --space-xl: 2.5rem;
    --space-2xl: 3.5rem;
    --header-h: 72px;
  }
}

@media (max-width: 480px) {
  :root {
    --space-md: 1.25rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
  }
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}
a { color: var(--color-accent); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 600; margin: 0 0 0.5em; line-height: 1.2; }

/* ===== Layout ===== */
.container {
  width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-md);
}
@media (max-width: 480px) {
  .container { padding-inline: 1rem; }
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--space-sm) var(--space-md);
  pointer-events: none;
}
.header-bar {
  pointer-events: auto;
  max-width: var(--container);
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(229, 226, 221, 0.8);
  border-radius: 100px;
  box-shadow: 0 4px 24px rgba(28, 27, 25, 0.06), 0 1px 2px rgba(28, 27, 25, 0.04);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.header-bar:hover,
.header.scrolled .header-bar {
  box-shadow: 0 8px 32px rgba(28, 27, 25, 0.08), 0 2px 8px rgba(28, 27, 25, 0.04);
  border-color: rgba(229, 226, 221, 1);
}
.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: 0 var(--space-md) 0 var(--space-lg);
  height: calc(var(--header-h) - var(--space-sm) * 2);
  max-width: 100%;
}
.logo {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.2s ease;
}
.logo:hover { text-decoration: none; color: var(--color-accent); }
.logo-text { white-space: nowrap; }
.nav {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-link {
  position: relative;
  padding: var(--space-sm) var(--space-md);
  color: var(--color-text-muted);
  font-weight: 500;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: color 0.2s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: var(--space-md);
  right: var(--space-md);
  bottom: 6px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.nav-link:hover { color: var(--color-text); text-decoration: none; }
.nav-link:hover::after { transform: scaleX(1); }
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  font-weight: 600;
  font-size: 0.9375rem;
  color: #fff;
  background: var(--color-accent);
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
  box-shadow: 0 2px 8px rgba(13, 104, 98, 0.25);
}
@media (hover: hover) {
  .header-cta:hover { background: var(--color-accent-hover); color: #fff; text-decoration: none; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(13, 104, 98, 0.3); }
}
.header-cta-icon {
  width: 14px;
  height: 14px;
  background: currentColor;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  background: none;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: var(--color-text);
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-toggle:hover { background: var(--color-accent-light); color: var(--color-accent); }
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

@media (max-width: 768px) {
  .header {
    padding: var(--space-sm);
    padding-left: max(var(--space-sm), env(safe-area-inset-left));
    padding-right: max(var(--space-sm), env(safe-area-inset-right));
  }
  .header-bar { border-radius: 16px; }
  .header-inner { padding: 0 var(--space-md); height: 56px; min-height: 44px; }
  .logo { font-size: 1.125rem; }
  .nav, .header-cta { display: none; }
  .nav-toggle { display: flex; min-width: 44px; min-height: 44px; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: var(--space-xs);
    background: var(--color-bg-elevated);
    padding: var(--space-md);
    border-radius: 16px;
    border: 1px solid var(--color-border);
    box-shadow: 0 8px 32px rgba(28, 27, 25, 0.12);
  }
  .nav.open .nav-link {
    padding: 0.875rem 0;
    font-size: 1rem;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .nav.open .nav-link::after { display: none; }
  .header-cta.show {
    display: inline-flex;
    margin: var(--space-sm) 0 0;
    width: 100%;
    justify-content: center;
    min-height: 44px;
  }
}
@media (max-width: 480px) {
  .header-inner { padding: 0 0.75rem; height: 52px; }
  .logo { font-size: 1rem; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-h) + var(--space-xl));
  overflow: hidden;
}
.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(248, 246, 243, 0.92) 0%, rgba(240, 238, 234, 0.88) 40%, rgba(232, 242, 241, 0.85) 70%, rgba(220, 235, 233, 0.9) 100%);
  background-size: 200% 200%;
  animation: hero-gradient-shift 12s ease-in-out infinite;
  pointer-events: none;
}
@keyframes hero-gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 80% at 70% 20%, rgba(13, 104, 98, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(13, 104, 98, 0.05) 0%, transparent 45%);
  pointer-events: none;
}
.hero-bg::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 120%;
  background: radial-gradient(ellipse 50% 50% at center, rgba(13, 104, 98, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

/* Floating shapes */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  pointer-events: none;
}
.hero-shape-1 {
  width: 320px;
  height: 320px;
  top: 10%;
  right: 5%;
  background: rgba(13, 104, 98, 0.12);
  animation: hero-float 18s ease-in-out infinite;
}
.hero-shape-2 {
  width: 240px;
  height: 240px;
  bottom: 20%;
  left: -5%;
  background: rgba(13, 104, 98, 0.08);
  animation: hero-float 14s ease-in-out infinite reverse;
  animation-delay: -3s;
}
.hero-shape-3 {
  width: 180px;
  height: 180px;
  top: 50%;
  right: 25%;
  background: rgba(13, 104, 98, 0.06);
  animation: hero-float 20s ease-in-out infinite;
  animation-delay: -5s;
}
.hero-shape-4 {
  width: 200px;
  height: 200px;
  bottom: 15%;
  right: 15%;
  background: rgba(28, 27, 25, 0.04);
  animation: hero-float 16s ease-in-out infinite reverse;
  animation-delay: -7s;
}
@keyframes hero-float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(15px, -20px) rotate(5deg); }
  50% { transform: translate(-10px, 10px) rotate(-3deg); }
  75% { transform: translate(20px, 15px) rotate(4deg); }
}

/* Rotating orbs */
.hero-orb {
  position: absolute;
  border: 1px solid rgba(13, 104, 98, 0.15);
  border-radius: 50%;
  pointer-events: none;
}
.hero-orb-1 {
  width: 400px;
  height: 400px;
  top: 50%;
  left: 50%;
  margin: -200px 0 0 -200px;
  animation: hero-orb-rotate 25s linear infinite;
}
.hero-orb-2 {
  width: 280px;
  height: 280px;
  top: 50%;
  left: 50%;
  margin: -140px 0 0 -140px;
  animation: hero-orb-rotate 20s linear infinite reverse;
}
@keyframes hero-orb-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-block: var(--space-2xl);
}
.hero-label {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
  opacity: 0;
  animation: hero-fade-up 0.7s ease forwards;
  animation-delay: 0.15s;
  animation-fill-mode: both;
}
.hero-title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  max-width: 20ch;
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.hero-title-line {
  display: block;
  opacity: 0;
  animation: hero-fade-up 0.7s ease forwards;
  animation-fill-mode: both;
}
.hero-title-line:first-child { animation-delay: 0.3s; }
.hero-title-accent {
  background: linear-gradient(120deg, var(--color-accent) 0%, #0a524d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation-delay: 0.45s;
}
.hero-desc {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  max-width: 42rem;
  margin-bottom: var(--space-lg);
  opacity: 0;
  animation: hero-fade-up 0.7s ease forwards;
  animation-delay: 0.6s;
  animation-fill-mode: both;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  opacity: 0;
  animation: hero-fade-up 0.7s ease forwards;
  animation-delay: 0.75s;
  animation-fill-mode: both;
}
@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-scroll {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.75rem;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
  opacity: 0;
  animation: hero-fade-up 0.8s ease forwards;
  animation-delay: 1.1s;
  animation-fill-mode: both;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-border), transparent);
  border-radius: 1px;
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse { 0%, 100% { opacity: 0.5; transform: scaleY(0.8); } 50% { opacity: 1; transform: scaleY(1); } }

@media (max-width: 768px) {
  .hero {
    min-height: 100svh;
    padding-top: calc(var(--header-h) + var(--space-lg));
    padding-bottom: var(--space-xl);
  }
  .hero-inner { padding-block: var(--space-lg); }
  .hero-title {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
    max-width: none;
  }
  .hero-desc { font-size: 1rem; margin-bottom: var(--space-md); }
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn { width: 100%; justify-content: center; min-height: 48px; }
  .hero-scroll { bottom: var(--space-md); }
  .hero-orb-1 { width: 280px; height: 280px; margin: -140px 0 0 -140px; }
  .hero-orb-2 { width: 180px; height: 180px; margin: -90px 0 0 -90px; }
  .hero-shape-1 { width: 200px; height: 200px; }
  .hero-shape-2, .hero-shape-3, .hero-shape-4 { width: 120px; height: 120px; }
}
@media (max-width: 480px) {
  .hero { padding-top: calc(var(--header-h) + var(--space-md)); }
  .hero-title { font-size: 1.625rem; }
  .hero-orb-1, .hero-orb-2 { opacity: 0.6; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg { animation: none; }
  .hero-shape { animation: none; }
  .hero-orb { animation: none; }
  .hero-label, .hero-title-line, .hero-desc, .hero-actions, .hero-scroll {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
@media (hover: hover) {
  .btn:hover { text-decoration: none; transform: translateY(-1px); }
}
.btn:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }
.btn-primary {
  background: var(--color-accent);
  color: #fff;
}
.btn-primary:hover { background: var(--color-accent-hover); color: #fff; }
.btn-secondary {
  background: var(--color-bg-elevated);
  color: var(--color-text);
  border: 2px solid var(--color-border);
}
.btn-secondary:hover { border-color: var(--color-accent); color: var(--color-accent); background: var(--color-accent-light); }
.btn-large { padding: 1rem 2rem; font-size: 1rem; }

/* ===== Sections ===== */
.section { padding-block: var(--space-2xl); }
@media (max-width: 768px) {
  .section { padding-block: var(--space-xl); }
}
@media (max-width: 480px) {
  .section { padding-block: var(--space-lg); }
}
.section-label {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-xs);
}
.section-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: var(--space-lg);
  letter-spacing: -0.02em;
}
@media (max-width: 768px) {
  .section-title { margin-bottom: var(--space-md); font-size: clamp(1.5rem, 5vw, 1.875rem); }
}

/* ===== About ===== */
.about { background: var(--color-bg-elevated); }
.about-header {
  margin-bottom: var(--space-xl);
  max-width: 36rem;
}
.about-header .section-title { margin-bottom: 0; }
.about-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}
.about-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.about-lead {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-text-muted);
}
.about-text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text-muted);
}
.about-highlights {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}
.about-highlights li {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}
.about-highlight-label {
  flex-shrink: 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.about-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  align-items: start;
}
.about-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(28, 27, 25, 0.06);
  border: 1px solid var(--color-border);
  background: var(--color-bg);
}
.about-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}
.about-img-main { aspect-ratio: 4 / 3; }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.about-img-secondary { aspect-ratio: 4 / 3; }
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

@media (max-width: 768px) {
  .about-header { margin-bottom: var(--space-lg); }
  .about-body { grid-template-columns: 1fr; gap: var(--space-xl); }
  .about-visual { grid-template-columns: 1fr; gap: var(--space-md); }
  .about-lead, .about-text { font-size: 1rem; }
  .about-highlights li { flex-wrap: wrap; }
}
@media (max-width: 480px) {
  .about-body { gap: var(--space-lg); }
  .about-highlight-label { font-size: 0.8125rem; }
}

/* ===== Visual strip (full-width image) ===== */
.visual-strip { padding-block: 0; }
.visual-strip-inner {
  width: 100%;
  height: 42vh;
  min-height: 280px;
  overflow: hidden;
}
.visual-strip-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
@media (max-width: 768px) {
  .visual-strip-inner { height: 35vh; min-height: 220px; }
}
@media (max-width: 480px) {
  .visual-strip-inner { height: 28vh; min-height: 180px; }
}

/* ===== Services ===== */
.services { background: var(--color-bg); }
.services-title { margin-bottom: var(--space-sm); }
.services-intro {
  max-width: 42rem;
  color: var(--color-text-muted);
  font-size: 1.0625rem;
  margin-bottom: var(--space-xl);
  line-height: 1.65;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-lg);
}
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  .services-title { margin-bottom: var(--space-md); }
  .services-intro { font-size: 1rem; margin-bottom: var(--space-lg); }
  .service-card-inner { padding: var(--space-md); }
  .service-name { font-size: 1.125rem; }
  .service-toggle { padding: 0.5rem 0; min-height: 44px; align-items: center; }
}
@media (max-width: 480px) {
  .services-grid { gap: var(--space-sm); }
  .service-card-inner { padding: 1rem; }
  .services-cta .btn { width: 100%; min-width: 0; }
}
.service-card {
  background: var(--color-bg-elevated);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  overflow: hidden;
}
@media (hover: hover) {
  .service-card:hover {
    border-color: var(--color-accent);
    box-shadow: 0 12px 32px rgba(13, 104, 98, 0.1);
    transform: translateY(-2px);
  }
}
.service-card.expanded {
  border-color: var(--color-accent);
  box-shadow: 0 12px 32px rgba(13, 104, 98, 0.12);
}
.service-card-inner { padding: var(--space-lg); }
.service-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--color-accent);
  background: var(--color-accent-light);
  border-radius: var(--radius);
  margin-bottom: var(--space-md);
  transition: transform 0.2s ease, background 0.2s ease;
}
@media (hover: hover) {
  .service-card:hover .service-icon {
    transform: scale(1.05);
    background: rgba(13, 104, 98, 0.15);
  }
}
.service-name {
  font-size: 1.25rem;
  margin-bottom: var(--space-xs);
}
.service-teaser {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin-bottom: var(--space-md);
}
.service-list {
  margin-bottom: var(--space-md);
}
.service-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: var(--space-xs);
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}
.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
}
.service-desc { margin: 0 0 var(--space-md); color: var(--color-text-muted); font-size: 0.9375rem; }
.service-more {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.service-card.expanded .service-more { grid-template-rows: 1fr; }
.service-more > div {
  overflow: hidden;
  min-height: 0;
}
.service-more-inner {
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
  margin-top: 0;
}
.service-more p {
  margin: 0 0 var(--space-sm);
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}
.service-benefits-title {
  font-weight: 600;
  color: var(--color-text) !important;
  font-size: 0.875rem !important;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: var(--space-xs) !important;
}
.service-benefits {
  margin: 0 0 var(--space-sm);
  padding-left: 1.25rem;
}
.service-benefits li {
  margin-bottom: var(--space-xs);
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}
.service-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0;
  margin-top: var(--space-xs);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-accent);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease, gap 0.2s ease;
}
.service-toggle:hover { color: var(--color-accent-hover); }
.service-toggle:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }
.service-toggle-icon {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid currentColor;
  margin-left: 2px;
  transition: transform 0.25s ease;
}
.service-card.expanded .service-toggle-icon { transform: rotate(180deg); }
.service-more .service-benefits-title,
.service-more p,
.service-more .service-benefits { opacity: 0; transition: opacity 0.25s ease 0.05s; }
.service-card.expanded .service-more .service-benefits-title,
.service-card.expanded .service-more p,
.service-card.expanded .service-more .service-benefits { opacity: 1; }
.services-cta { margin-top: var(--space-xl); text-align: center; }
.services-cta .btn { min-width: 200px; }

/* Staggered reveal for service cards */
.service-card.reveal:nth-child(1) { transition-delay: 0s; }
.service-card.reveal:nth-child(2) { transition-delay: 0.06s; }
.service-card.reveal:nth-child(3) { transition-delay: 0.12s; }
.service-card.reveal:nth-child(4) { transition-delay: 0.18s; }
.service-card.reveal:nth-child(5) { transition-delay: 0.24s; }
.service-card.revealed { transition-delay: 0s; }

/* ===== Contact ===== */
.contact { background: var(--color-accent); color: #fff; }
.contact .section-label { color: rgba(255,255,255,0.9); }
.contact .section-title { color: #fff; }
.contact-header {
  margin-bottom: var(--space-xl);
  max-width: 42rem;
}
.contact-intro {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}
.contact-phone {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
}
.contact-phone:hover { text-decoration: none; color: rgba(255,255,255,0.95); }
.contact-email {
  display: inline-block;
  font-size: 1.0625rem;
  font-weight: 500;
  color: rgba(255,255,255,0.95);
}
.contact-email:hover { color: #fff; text-decoration: none; }
.contact-address {
  font-style: normal;
  color: rgba(255,255,255,0.9);
  margin: 0;
  font-size: 1rem;
}
.contact-hours {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem;
}
.contact-hours-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.contact-hours-value { font-size: 0.9375rem; color: rgba(255,255,255,0.95); }
.contact-map-link {
  display: inline-block;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.9);
  text-decoration: underline;
}
.contact-map-link:hover { color: #fff; text-decoration: none; }
.contact-legal { font-size: 0.875rem; color: rgba(255,255,255,0.7); margin: 0 0 var(--space-md); }
.contact-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}
.contact-cta .btn-primary {
  background: #fff;
  color: var(--color-accent);
}
.contact-cta .btn-primary:hover { background: var(--color-bg); color: var(--color-accent); }
.contact-cta .btn-secondary {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.7);
  color: #fff;
}
.contact-cta .btn-secondary:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,0.15); }
.contact-visual { display: flex; justify-content: center; align-items: center; }
.contact-img-wrap {
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  border: 3px solid rgba(255, 255, 255, 0.2);
}
.contact-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .contact-header { margin-bottom: var(--space-lg); text-align: center; }
  .contact-intro { font-size: 1rem; }
  .contact-inner { grid-template-columns: 1fr; gap: var(--space-lg); text-align: center; }
  .contact-content { margin-inline: auto; text-align: center; max-width: 100%; }
  .contact-details { align-items: center; margin-bottom: var(--space-md); }
  .contact-hours { justify-content: center; }
  .contact-phone { font-size: 1.375rem; }
  .contact-email { font-size: 1rem; word-break: break-all; }
  .contact-cta {
    flex-direction: column;
    justify-content: center;
    gap: var(--space-sm);
  }
  .contact-cta .btn { width: 100%; min-height: 48px; justify-content: center; }
  .contact-visual { order: -1; }
  .contact-img-wrap { max-width: 100%; }
}
@media (max-width: 480px) {
  .contact-phone { font-size: 1.25rem; }
  .contact-legal { font-size: 0.8125rem; }
}

/* ===== Map ===== */
.map { background: var(--color-bg-elevated); padding-bottom: 0; }
.map-title { margin-bottom: var(--space-md); }
.map-embed {
  position: relative;
  width: 100%;
  height: 420px;
  max-height: 60vh;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
}
.map-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.map-note {
  margin: var(--space-md) 0 0;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}
.map-note a { font-weight: 500; }
@media (max-width: 768px) {
  .map-title { font-size: 1.25rem; margin-bottom: var(--space-sm); }
  .map-embed { height: 320px; max-height: 50vh; border-radius: var(--radius); }
  .map-note { margin-top: var(--space-sm); font-size: 0.875rem; }
}
@media (max-width: 480px) {
  .map-embed { height: 280px; }
}

/* ===== Footer ===== */
.footer {
  padding: var(--space-lg) var(--space-md);
  padding-left: max(var(--space-md), env(safe-area-inset-left));
  padding-right: max(var(--space-md), env(safe-area-inset-right));
  background: var(--color-text);
  color: rgba(255,255,255,0.8);
  text-align: center;
}
.footer-name { font-family: var(--font-heading); font-weight: 600; color: #fff; margin-bottom: var(--space-xs); }
.footer-detail { margin: 0; font-size: 0.875rem; line-height: 1.6; }
.footer-hours { margin: var(--space-xs) 0 0; font-size: 0.8125rem; color: rgba(255,255,255,0.75); }
.footer a { color: rgba(255,255,255,0.9); }
.footer a:hover { color: #fff; }
@media (max-width: 768px) {
  .footer { padding: var(--space-md) var(--space-md); }
  .footer-name { font-size: 1.125rem; }
  .footer-detail { font-size: 0.8125rem; }
}
@media (max-width: 480px) {
  .footer-detail { font-size: 0.75rem; word-break: break-word; }
}

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }
