:root {
  --bg: #f4efe6;
  --bg-soft: #f9f6ef;
  --ink: #0f2740;
  --ink-soft: rgba(15, 39, 64, 0.72);
  --green: #5b7747;
  --green-dark: #2f4d2a;
  --gold: #c08a34;
  --card: #fffaf1;
  --line: rgba(15, 39, 64, 0.10);
  --shadow: 0 24px 50px rgba(15, 39, 64, 0.10);
  --shadow-soft: 0 12px 24px rgba(15, 39, 64, 0.08);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 20% 10%, rgba(192, 138, 52, 0.10), transparent 22%),
  radial-gradient(circle at 80% 4%, rgba(91, 119, 71, 0.09), transparent 24%),
  linear-gradient(180deg, #f7f2e8 0%, var(--bg) 24%, #f7f2e8 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 9999;
  background: var(--ink);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
}

.skip-link:focus {
  left: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(16px);
  background: rgba(244, 239, 230, 0.72);
  border-bottom: 1px solid rgba(15, 39, 64, 0.08);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #2f5b44 0%, #244934 100%);
  border-radius: 18px;
  box-shadow: 0 10px 22px rgba(15, 39, 64, 0.14);
}

.brand-mark svg {
  width: 30px;
  height: 30px;
}

.brand-text {
  display: grid;
  gap: 3px;
}

.brand-text strong {
  letter-spacing: 0.14em;
  font-size: 1rem;
}

.brand-text small {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.68rem;
  color: rgba(15, 39, 64, 0.62);
}

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

.site-nav a {
  font-weight: 600;
  color: rgba(15, 39, 64, 0.82);
  transition: color 0.18s ease, transform 0.18s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(15, 39, 64, 0.12);
  background: rgba(255, 255, 255, 0.64);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
  box-shadow: var(--shadow-soft);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--green), #49643c);
  color: #fff;
}

.btn-accent {
  background: linear-gradient(135deg, #efc74b, #d9af2e);
  color: #173326;
}

.btn-large {
  min-height: 60px;
  padding-inline: 30px;
  font-size: 1.02rem;
}

.btn-small {
  min-height: 46px;
  padding-inline: 18px;
}

.hero {
  padding: 18px 0 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 36px;
  align-items: center;
  min-height: calc(100vh - 104px);
}

.hero-copy {
  padding: 52px 0 40px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 40px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

.hero h1,
.section-heading h2,
.about-copy h2,
.cta-copy h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 0.94;
  letter-spacing: -0.05em;
  margin: 0;
}

.hero h1 {
  max-width: 10ch;
  font-size: clamp(3.1rem, 6.3vw, 6.4rem);
  margin-top: 14px;
}

.hero-title {
  display: grid;
  gap: 0.035em;
}

.hero-line {
  display: block;
  overflow: hidden;
  color: var(--ink);
}

.hero h1 span {
  color: var(--green);
}

.hero-highlight {
  position: relative;
  display: inline-block;
  color: var(--green);
}

.hero-highlight::after {
  content: "";
  position: absolute;
  left: -0.06em;
  right: -0.06em;
  bottom: 0.06em;
  height: 0.18em;
  border-radius: 999px;
  background: rgba(94, 114, 74, 0.16);
  transform: scaleX(0.74);
  transform-origin: left center;
  opacity: 0.72;
  pointer-events: none;
}

.hero-lead {
  max-width: 30ch;
  margin: 28px 0 0;
  font-size: clamp(1.08rem, 1.4vw, 1.22rem);
  line-height: 1.7;
  color: rgba(15, 39, 64, 0.82);
}

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

.hero-note {
  margin: 16px 0 0;
  padding-left: 26px;
  position: relative;
  color: rgba(15, 39, 64, 0.82);
  font-size: 0.98rem;
}

.hero-note::before {
  content: "◔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
}

.hero.is-animated [data-hero-reveal] {
  animation: heroFadeUp 0.72s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero.is-animated .hero-eyebrow {
  animation-name: heroSlideIn;
  animation-duration: 0.7s;
}

.hero.is-animated .hero-title .hero-line:nth-child(1) {
  animation: heroLineRise 0.72s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}

.hero.is-animated .hero-title .hero-line:nth-child(2) {
  animation: heroLineRise 0.72s cubic-bezier(0.22, 1, 0.36, 1) 0.24s both;
}

.hero.is-animated .hero-title .hero-line:nth-child(3) {
  animation: heroLineRise 0.72s cubic-bezier(0.22, 1, 0.36, 1) 0.36s both;
}

.hero.is-animated .hero-highlight {
  animation: heroHighlightPop 1.05s cubic-bezier(0.2, 0.8, 0.2, 1) 0.48s both;
}

.hero.is-animated .hero-highlight::after {
  animation: heroHighlightSweep 1.05s cubic-bezier(0.2, 0.8, 0.2, 1) 0.48s both;
}

.hero.is-animated .hero-actions .btn {
  animation: heroButtonPulse 1.25s cubic-bezier(0.2, 0.8, 0.2, 1) 0.92s both;
}

.hero-visual {
  position: relative;
  display: grid;
  justify-items: end;
  align-self: end;
}

.hero-root-orb,
.hero-root-line {
  position: absolute;
  pointer-events: none;
  will-change: transform, opacity;
}

.hero-root-orb {
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(94, 114, 74, 0.45), rgba(94, 114, 74, 0.12) 58%, transparent 72%);
  opacity: 0.14;
  filter: blur(1px);
}

.hero-root-orb-one {
  left: 8%;
  top: 4%;
  width: 112px;
  height: 112px;
}

.hero-root-orb-two {
  right: 3%;
  bottom: 8%;
  width: 84px;
  height: 84px;
  background: radial-gradient(circle at 35% 30%, rgba(23, 51, 38, 0.34), rgba(23, 51, 38, 0.08) 60%, transparent 74%);
}

.hero-root-line {
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(23, 51, 38, 0.24), transparent);
  opacity: 0.16;
}

.hero-root-line-one {
  left: 12%;
  top: 17%;
  width: 184px;
  transform: rotate(28deg);
}

.hero-root-line-two {
  right: 2%;
  bottom: 24%;
  width: 220px;
  transform: rotate(-24deg);
}

.hero.is-animated .hero-root-orb-one {
  animation: heroDriftOne 18s ease-in-out 0.12s 1 both;
}

.hero.is-animated .hero-root-orb-two {
  animation: heroDriftTwo 20s ease-in-out 0.18s 1 both;
}

.hero.is-animated .hero-root-line-one {
  animation: heroLineDriftOne 19s ease-in-out 0.14s 1 both;
}

.hero.is-animated .hero-root-line-two {
  animation: heroLineDriftTwo 21s ease-in-out 0.2s 1 both;
}

.hero-visual::before {
  content: "";
  position: absolute;
  right: 4%;
  top: -4%;
  width: 86%;
  height: 86%;
  border-radius: 50%;
  border: 28px solid rgba(23, 51, 38, 0.88);
  opacity: 0.16;
  pointer-events: none;
}

.hero-portrait {
  position: relative;
  width: min(100%, 560px);
  aspect-ratio: 0.82 / 1;
  border-radius: 46% 46% 24px 24px;
  background: linear-gradient(180deg, #d6c1aa 0%, #ccb59d 58%, #c5b29a 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: translate3d(0, var(--hero-parallax, 0px), 0) scale(1.04);
  will-change: transform;
}

.identity-card {
  position: absolute;
  left: 24px;
  bottom: 24px;
  width: min(78%, 362px);
  padding: 18px 18px 16px;
  border-radius: 24px;
  background: rgba(255, 252, 247, 0.98);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 12px 14px;
  align-items: center;
}

.identity-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(15, 39, 64, 0.14);
  color: var(--ink);
}

.identity-icon svg {
  width: 26px;
  height: 26px;
}

.identity-card strong {
  display: block;
  font-size: 1.02rem;
  letter-spacing: 0.06em;
}

.identity-card span {
  display: block;
  color: var(--green);
  margin-top: 3px;
  font-size: 0.95rem;
}

.identity-card ul {
  grid-column: 1 / -1;
  list-style: none;
  padding: 8px 0 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.identity-card li {
  padding-left: 20px;
  position: relative;
  color: rgba(15, 39, 64, 0.76);
}

.identity-card li::before {
  content: "◦";
  position: absolute;
  left: 0;
  color: var(--gold);
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translate3d(0, 16px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes heroSlideIn {
  from {
    opacity: 0;
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes heroLineRise {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
    filter: blur(3px);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

@keyframes heroHighlightPop {
  0% {
    transform: translate3d(0, 3px, 0) scale(0.96);
    letter-spacing: 0;
  }

  60% {
    transform: translate3d(0, 0, 0) scale(1.02);
  }

  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes heroHighlightSweep {
  0% {
    transform: scaleX(0.72);
    opacity: 0;
  }

  45% {
    opacity: 1;
  }

  100% {
    transform: scaleX(1);
    opacity: 0.72;
  }
}

@keyframes heroButtonPulse {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  45% {
    transform: translate3d(0, 0, 0) scale(1.015);
  }

  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes heroDriftOne {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(14px, -10px, 0) scale(1.04);
  }
}

@keyframes heroDriftTwo {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(-10px, 12px, 0) scale(1.03);
  }
}

@keyframes heroLineDriftOne {
  from {
    transform: translate3d(0, 0, 0) rotate(28deg);
  }

  to {
    transform: translate3d(10px, -6px, 0) rotate(26deg);
  }
}

@keyframes heroLineDriftTwo {
  from {
    transform: translate3d(0, 0, 0) rotate(-24deg);
  }

  to {
    transform: translate3d(-12px, 8px, 0) rotate(-22deg);
  }
}

.feature-band {
  margin-top: 0;
  background: linear-gradient(180deg, #102743 0%, #0b1f39 100%);
  color: #fff;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.feature-item {
  padding: 32px 28px 36px;
  border-left: 1px solid rgba(255, 255, 255, 0.10);
  display: grid;
  gap: 14px;
}

.feature-item:first-child {
  border-left: 0;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(147, 179, 97, 0.24);
  color: #d9efba;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-item h2 {
  margin: 0;
  font-size: 0.98rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.feature-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  max-width: 22ch;
}

.section {
  padding: 92px 0;
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 30px;
}

.section-heading.center {
  justify-items: center;
  text-align: center;
}

.section-heading h2,
.about-copy h2,
.cta-copy h2 {
  font-size: clamp(2.2rem, 4.4vw, 4.4rem);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  gap: 42px;
  align-items: center;
}

.about-frame {
  position: relative;
  max-width: 520px;
  margin-inline: auto;
}

.about-photo {
  width: 100%;
  aspect-ratio: 0.94 / 1;
  object-fit: cover;
  object-position: center top;
  border-radius: 42px;
  box-shadow: var(--shadow);
}

.about-copy {
  display: grid;
  gap: 14px;
}

.about-copy p {
  margin: 0;
  max-width: 54ch;
  line-height: 1.75;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.about-copy p strong {
  color: var(--ink);
}

.mobile-text-toggle {
  display: none;
  width: fit-content;
  border: 0;
  padding: 0;
  margin-top: 2px;
  background: transparent;
  color: var(--green);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.about-more {
  display: grid;
  gap: 14px;
}

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

.service-card {
  border-radius: 28px;
  padding: 30px 26px 32px;
  background: rgba(255, 252, 247, 0.95);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(15, 39, 64, 0.06);
  min-height: 240px;
  display: grid;
  gap: 14px;
}

.service-card h3 {
  margin: 0;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
}

.service-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.72;
}

.service-carousel-dots {
  display: none;
}

.service-badge {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.88), transparent 22%),
    linear-gradient(135deg, rgba(91, 119, 71, 0.18), rgba(192, 138, 52, 0.14));
  border: 1px solid rgba(15, 39, 64, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.56);
}

.method {
  padding-top: 54px;
}

.method-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 32px minmax(0, 1fr) 32px minmax(0, 1fr) 32px minmax(0, 1fr);
  gap: 0;
  align-items: start;
}

.method-step {
  margin: 0;
  border: 1px solid rgba(15, 39, 64, 0.08);
  border-radius: 24px;
  background: rgba(255, 252, 247, 0.92);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.method-step > summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 18px 14px;
  cursor: pointer;
}

.method-step > summary::-webkit-details-marker {
  display: none;
}

.method-summary-copy h3 {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.98rem;
}

.method-panel {
  padding: 0 18px 18px 120px;
}

.method-panel p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.method-step:not([open]) .method-panel {
  display: none;
}

.method-icon {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--green), #45623b);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-soft);
}

.method-icon span {
  font-weight: 800;
  letter-spacing: 0.12em;
}

.method-arrow {
  align-self: center;
  justify-self: center;
  color: rgba(15, 39, 64, 0.36);
  font-size: 1.8rem;
  margin-top: 20px;
}

.cta-section {
  padding: 18px 0 72px;
}

.cta-box {
  border-radius: 34px;
  background:
    radial-gradient(circle at 90% 18%, rgba(255, 255, 255, 0.06), transparent 18%),
    linear-gradient(135deg, #0b1f39 0%, #0f2740 60%, #12324f 100%);
  color: #fff;
  box-shadow: var(--shadow);
  padding: 34px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  overflow: hidden;
  position: relative;
}

.cta-box::after {
  content: "";
  position: absolute;
  inset: auto -8% -28% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 64%);
}

.light {
  color: #d8b56a;
}

.cta-copy {
  position: relative;
  z-index: 1;
}

.cta-copy h2 {
  max-width: 12ch;
  margin-top: 10px;
}

.cta-copy p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
}

.cta-actions {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: start;
  gap: 12px;
}

.cta-actions span {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer {
  padding: 24px 0 36px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: rgba(15, 39, 64, 0.68);
  flex-wrap: wrap;
}

.footer-inner div {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 1100px) {
  .hero-grid,
  .about-grid,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .method-arrow {
    display: none;
  }

  .cta-box {
    display: grid;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 16px;
    right: 16px;
    display: grid;
    gap: 10px;
    padding: 16px;
    border-radius: 22px;
    background: rgba(251, 247, 239, 0.98);
    border: 1px solid rgba(15, 39, 64, 0.10);
    box-shadow: var(--shadow);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .hero {
    padding-top: 18px;
  }

  .hero h1 {
    max-width: 8ch;
  }

  .hero-visual::before {
    right: -2%;
    width: 94%;
    height: 94%;
    border-width: 20px;
  }

  .hero-root-orb-one {
    width: 88px;
    height: 88px;
  }

  .hero-root-orb-two {
    width: 68px;
    height: 68px;
  }

  .hero-root-line-one {
    width: 150px;
  }

  .hero-root-line-two {
    width: 176px;
  }

  .hero.is-animated [data-hero-reveal] {
    animation-duration: 0.62s;
  }

  .hero.is-animated .hero-title .hero-line:nth-child(1) {
    animation-duration: 0.62s;
  }

  .hero.is-animated .hero-title .hero-line:nth-child(2) {
    animation-duration: 0.62s;
  }

  .hero.is-animated .hero-title .hero-line:nth-child(3) {
    animation-duration: 0.62s;
  }

  .hero.is-animated .hero-actions .btn {
    animation-duration: 1s;
  }

  .mobile-text-toggle {
    display: inline-flex;
  }

  .about-more {
    display: none;
  }

  .about-more.is-open {
    display: grid;
  }

  .service-carousel-mobile {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0 -11px;
    padding: 0 11px 14px;
    touch-action: pan-y;
    overscroll-behavior-x: contain;
  }

  .service-carousel-mobile.is-ready {
    min-height: var(--carousel-height, 320px);
  }

  .service-carousel-mobile .service-card {
    position: absolute;
    left: 50%;
    top: 0;
    width: calc(100% - 52px);
    max-width: 420px;
    transform-origin: center center;
    will-change: transform, opacity;
    transition: transform 0.48s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.34s ease;
    pointer-events: auto;
  }

  .service-carousel-mobile.is-dragging .service-card {
    transition: none;
  }

  .service-carousel-mobile .service-card.is-active {
    z-index: 3;
  }

  .service-carousel-mobile .service-card.is-prev,
  .service-carousel-mobile .service-card.is-next {
    opacity: 0.55;
    z-index: 2;
  }

  .service-carousel-mobile .service-card.is-hidden {
    opacity: 0;
    pointer-events: none;
    z-index: 1;
  }

  .service-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
  }

  .service-carousel-dot {
    width: 7px;
    height: 7px;
    border: 0;
    border-radius: 999px;
    background: rgba(15, 39, 64, 0.18);
    padding: 0;
    transition: transform 0.24s ease, background-color 0.24s ease, width 0.24s ease;
  }

  .service-carousel-dot.is-active {
    width: 22px;
    background: var(--green);
  }

  .method-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .method-arrow {
    display: none;
  }

  .method-step > summary {
    padding: 16px 16px 12px;
  }

  .method-icon {
    width: 68px;
    height: 68px;
  }

  .method-panel {
    padding: 0 16px 16px 16px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 22px, var(--container));
  }

  .header-inner {
    min-height: 72px;
  }

  .brand-text strong {
    font-size: 0.98rem;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 13vw, 4.2rem);
    max-width: 9ch;
  }

  .hero-grid {
    min-height: auto;
    gap: 18px;
  }

  .hero {
    padding-top: 10px;
  }

  .hero-lead {
    max-width: 100%;
    margin-top: 18px;
    font-size: 1rem;
  }

  .hero-copy {
    padding: 20px 0 18px;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .hero-note {
    margin-top: 12px;
    font-size: 0.92rem;
  }

  .hero-portrait {
    width: 100%;
    aspect-ratio: 0.92 / 1;
  }

  .hero-image {
    transform: translate3d(0, var(--hero-parallax, 0px), 0) scale(1.02);
  }

  .identity-card {
    left: 12px;
    right: 12px;
    width: auto;
    bottom: 12px;
    padding: 14px 14px 12px;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 10px 12px;
  }

  .identity-icon {
    width: 48px;
    height: 48px;
  }

  .identity-card strong {
    font-size: 0.92rem;
  }

  .identity-card span {
    font-size: 0.84rem;
  }

  .identity-card ul {
    gap: 6px;
    padding-top: 4px;
  }

  .feature-band {
    margin-top: 0;
  }

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

  .feature-item {
    padding: 20px 16px 22px;
    gap: 10px;
  }

  .feature-item h2 {
    font-size: 0.88rem;
  }

  .feature-item p {
    max-width: none;
    font-size: 0.94rem;
  }

  .section {
    padding: 58px 0;
  }

  .section-heading {
    margin-bottom: 20px;
    gap: 8px;
  }

  .section-heading h2,
  .about-copy h2,
  .cta-copy h2 {
    font-size: clamp(1.9rem, 8vw, 3rem);
  }

  .about-grid {
    gap: 22px;
  }

  .about-photo {
    border-radius: 28px;
  }

  .about-copy p {
    font-size: 0.98rem;
    line-height: 1.68;
  }

  .service-grid {
    gap: 14px;
  }

  .service-card {
    min-height: 0;
    padding: 22px 18px 24px;
    border-radius: 22px;
  }

  .service-card h3 {
    font-size: 1.22rem;
  }

  .service-card p {
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .method {
    padding-top: 40px;
  }

  .method-grid {
    gap: 10px;
  }

  .method-step > summary {
    padding: 14px 14px 10px;
  }

  .method-panel {
    padding: 0 14px 14px 14px;
  }

  .cta-section {
    padding: 8px 0 54px;
  }

  .cta-box {
    padding: 28px 20px;
    border-radius: 22px;
    gap: 24px;
  }

  .cta-copy {
    display: grid;
    gap: 14px;
  }

  .cta-copy h2 {
    line-height: 1.12;
    margin-top: 8px;
  }

  .cta-copy p {
    font-size: 0.98rem;
    margin-top: 0;
  }

  .cta-actions {
    gap: 14px;
  }

  .footer-inner {
    gap: 10px;
    font-size: 0.9rem;
  }

  .footer-inner div {
    gap: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero *,
  .hero::before,
  .hero::after {
    animation: none !important;
    transition: none !important;
  }

  .hero-image {
    transform: none !important;
  }
}
