:root {
  --ink: #17211f;
  --muted: #5e6b67;
  --paper: #f8f4ef;
  --white: #fffdf9;
  --teal: #176f6a;
  --teal-dark: #0c4b49;
  --coral: #da765f;
  --clay: #a8604d;
  --line: rgba(23, 33, 31, 0.12);
  --shadow: 0 18px 55px rgba(24, 36, 34, 0.13);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

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

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

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 20;
  display: flex;
  width: min(1120px, calc(100% - 32px));
  min-height: 64px;
  transform: translateX(-50%);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 10px 10px 18px;
  color: var(--white);
  border: 1px solid rgba(255, 253, 249, 0.24);
  border-radius: var(--radius);
  background: rgba(18, 31, 29, 0.42);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 253, 249, 0.94);
  box-shadow: var(--shadow);
}

.brand,
.main-nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--coral);
}

.main-nav {
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
}

.main-nav a {
  padding: 12px 14px;
  border-radius: var(--radius);
}

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.16);
}

.site-header.is-scrolled .main-nav a:hover {
  background: rgba(23, 111, 106, 0.08);
}

.nav-cta {
  color: var(--ink);
  background: var(--white);
}

.site-header.is-scrolled .nav-cta {
  color: var(--white);
  background: var(--teal);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 86vh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 148px 24px 48px;
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(12, 26, 24, 0.82) 0%, rgba(12, 26, 24, 0.56) 36%, rgba(12, 26, 24, 0.14) 76%),
    linear-gradient(0deg, rgba(12, 26, 24, 0.7) 0%, rgba(12, 26, 24, 0) 38%);
}

.hero-content {
  position: relative;
  width: min(1120px, 100%);
  margin: 0 auto;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  width: min(720px, 100%);
  margin: 0;
  font-size: clamp(44px, 8vw, 86px);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-copy {
  width: min(630px, 100%);
  margin: 24px 0 0;
  color: rgba(255, 253, 249, 0.9);
  font-size: clamp(17px, 2.2vw, 22px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

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

.button.primary:hover {
  background: var(--teal-dark);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 253, 249, 0.42);
  background: rgba(255, 253, 249, 0.08);
}

.button.quiet {
  width: 100%;
  color: var(--teal-dark);
  border-color: rgba(23, 111, 106, 0.22);
  background: rgba(23, 111, 106, 0.08);
}

.hero-stats {
  display: grid;
  width: min(720px, 100%);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 46px 0 0;
}

.hero-stats div {
  min-height: 96px;
  padding: 18px;
  border: 1px solid rgba(255, 253, 249, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.1);
  backdrop-filter: blur(10px);
}

.hero-stats dt {
  font-size: 26px;
  font-weight: 800;
}

.hero-stats dd {
  margin: 5px 0 0;
  color: rgba(255, 253, 249, 0.76);
  font-size: 13px;
}

.intro-band {
  padding: 24px;
  background: var(--teal-dark);
}

.intro-grid {
  display: grid;
  width: min(1120px, 100%);
  margin: 0 auto;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  color: var(--white);
}

.intro-grid p {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 253, 249, 0.84);
  font-size: 18px;
  line-height: 1.6;
}

.text-link {
  font-weight: 800;
  color: #ffe0d7;
}

.intro-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.muted-link {
  color: rgba(255, 253, 249, 0.7);
}

.section,
.split-section,
.notice-section,
.consult {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: 96px 0 72px;
}

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

.section-heading.compact {
  margin-bottom: 0;
}

.section-heading h2,
.consult-copy h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.consult-copy p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

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

.service-card,
.package-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.service-icon {
  display: inline-flex;
  min-width: 42px;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  margin-bottom: 38px;
  border-radius: 99px;
  color: var(--white);
  background: var(--teal);
  font-size: 13px;
  font-weight: 800;
}

.service-card h3,
.package-card h3,
.timeline-item h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
}

.service-card p,
.package-card p,
.city-card p,
.timeline-item p,
.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.58;
}

.city-section {
  padding-top: 40px;
}

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

.city-card {
  min-height: 260px;
  padding: 24px;
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(12, 75, 73, 0.22), rgba(12, 75, 73, 0.78)),
    var(--teal-dark);
}

.city-card:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(218, 118, 95, 0.18), rgba(12, 75, 73, 0.82)),
    #244340;
}

.city-card:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(248, 244, 239, 0.08), rgba(23, 33, 31, 0.78)),
    #42605a;
}

.city-tag {
  margin: 0 0 86px;
  color: #ffe0d7;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.city-card h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.15;
}

.city-card p:not(.city-tag) {
  color: rgba(255, 253, 249, 0.78);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1.2fr);
  gap: 44px;
  padding: 88px 0;
  border-top: 1px solid var(--line);
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.72);
}

.timeline-item span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--coral);
  font-weight: 800;
}

.packages {
  padding-top: 72px;
}

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

.package-card {
  display: flex;
  min-height: 430px;
  flex-direction: column;
}

.package-card.featured {
  color: var(--white);
  background: var(--teal-dark);
  box-shadow: var(--shadow);
}

.package-card.featured p,
.package-card.featured li {
  color: rgba(255, 253, 249, 0.78);
}

.package-card.featured .package-label {
  color: #ffd8ce;
}

.package-label {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.package-card ul {
  display: grid;
  gap: 10px;
  margin: 26px 0 28px;
  padding: 0;
  list-style: none;
}

.package-card li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}

.package-card li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
}

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

.notice-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1fr);
  gap: 42px;
  align-items: start;
  padding: 34px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--ink);
}

.notice-section h2 {
  margin: 0;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.08;
}

.notice-section p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 253, 249, 0.78);
  font-size: 17px;
  line-height: 1.65;
}

.faq-section {
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.faq-list summary {
  min-height: 64px;
  padding: 20px 54px 20px 20px;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list details {
  position: relative;
}

.faq-list details::after {
  content: "+";
  position: absolute;
  top: 18px;
  right: 20px;
  color: var(--teal);
  font-size: 24px;
  font-weight: 800;
}

.faq-list details[open]::after {
  content: "-";
}

.faq-list p {
  padding: 0 20px 22px;
}

.consult {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1fr);
  gap: 42px;
  align-items: start;
  padding: 88px 0 108px;
  border-top: 1px solid var(--line);
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(23, 33, 31, 0.16);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 500;
  padding: 13px 14px;
  outline: none;
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(23, 111, 106, 0.14);
}

.lead-form .is-invalid {
  border-color: var(--coral);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.form-note.is-success {
  color: var(--teal-dark);
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px max(24px, calc((100vw - 1120px) / 2));
  color: rgba(255, 253, 249, 0.72);
  background: var(--ink);
}

.site-footer p {
  margin: 0;
}

.compact-header {
  background: rgba(255, 252, 246, 0.96);
  border-bottom: 1px solid rgba(34, 35, 31, 0.08);
}

.article-page,
.article-index {
  background: #fffaf2;
  min-height: 100vh;
  padding: 120px clamp(20px, 5vw, 72px) 80px;
}

.article-shell {
  margin: 0 auto;
  max-width: 920px;
}

.breadcrumbs {
  align-items: center;
  color: #746c61;
  display: flex;
  flex-wrap: wrap;
  font-size: 0.92rem;
  gap: 8px;
  margin-bottom: 28px;
}

.breadcrumbs a {
  color: #1e6f68;
  text-decoration: none;
}

.article-hero {
  border-bottom: 1px solid rgba(34, 35, 31, 0.12);
  margin-bottom: 28px;
  padding-bottom: 28px;
}

.article-hero h1,
.article-index h1 {
  color: #182321;
  font-size: clamp(2rem, 5vw, 4.8rem);
  letter-spacing: 0;
  line-height: 0.96;
  margin: 0 0 20px;
  max-width: 980px;
}

.article-hero p,
.article-index .section-heading p {
  color: #5f574f;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.7;
}

.answer-box,
.article-cta,
.source-note {
  background: #ffffff;
  border: 1px solid rgba(34, 35, 31, 0.1);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(55, 43, 31, 0.08);
  margin: 28px 0;
  padding: clamp(22px, 4vw, 34px);
}

.answer-box h2,
.source-note h2 {
  font-size: 1.15rem;
  margin: 0 0 12px;
}

.answer-box p,
.source-note p,
.source-note li {
  color: #514b45;
  line-height: 1.7;
}

.article-content h2 {
  color: #1d2926;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  letter-spacing: 0;
  line-height: 1.1;
  margin: 42px 0 14px;
}

.article-content p,
.article-content li {
  color: #3f3934;
  font-size: 1.04rem;
  line-height: 1.82;
}

.article-content ul {
  padding-left: 22px;
}

.article-faq {
  margin-top: 40px;
}

.article-cta {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
}

.article-cta h2 {
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  margin: 0 0 10px;
}

.article-cta p {
  color: #5f574f;
  margin: 0;
}

.article-index .section-heading {
  margin: 0 auto 42px;
  max-width: 1080px;
}

.article-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1180px;
}

.article-card {
  background: #ffffff;
  border: 1px solid rgba(34, 35, 31, 0.1);
  border-radius: 8px;
  color: #182321;
  display: grid;
  gap: 10px;
  min-height: 180px;
  padding: 20px;
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease;
}

.article-card:hover {
  border-color: rgba(30, 111, 104, 0.45);
  transform: translateY(-2px);
}

.article-card span {
  color: #1e6f68;
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
}

.article-card strong {
  font-size: 1.08rem;
  line-height: 1.3;
}

.article-card small {
  align-self: end;
  color: #746c61;
}

@media (max-width: 920px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a,
  .nav-cta,
  .site-header.is-scrolled .nav-cta {
    color: var(--ink);
    background: transparent;
  }

  .hero {
    min-height: 82vh;
    padding-top: 124px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(12, 26, 24, 0.9) 0%, rgba(12, 26, 24, 0.6) 70%),
      linear-gradient(0deg, rgba(12, 26, 24, 0.78) 0%, rgba(12, 26, 24, 0.08) 48%);
  }

  .hero-media img {
    object-position: 67% center;
  }

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

  .split-section,
  .notice-section,
  .consult {
    grid-template-columns: 1fr;
  }

  .city-grid {
    grid-template-columns: 1fr;
  }

  .city-card {
    min-height: 220px;
  }

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

@media (max-width: 680px) {
  .section,
  .split-section,
  .notice-section,
  .consult {
    width: min(100% - 28px, 1120px);
  }

  .hero {
    min-height: 90vh;
    padding: 112px 14px 28px;
  }

  .hero h1 {
    font-size: clamp(39px, 13vw, 54px);
  }

  .button {
    width: 100%;
  }

  .hero-stats,
  .intro-grid,
  .service-grid,
  .city-grid,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .intro-actions {
    justify-content: flex-start;
  }

  .hero-stats {
    gap: 8px;
    margin-top: 28px;
  }

  .hero-stats div {
    min-height: auto;
    padding: 14px;
  }

  .intro-band {
    padding: 22px 14px;
  }

  .section {
    padding: 70px 0 52px;
  }

  .split-section,
  .notice-section,
  .consult {
    gap: 26px;
    padding: 64px 0;
  }

  .notice-section {
    padding: 24px;
  }

  .city-card {
    min-height: 210px;
  }

  .city-tag {
    margin-bottom: 56px;
  }

  .timeline-item {
    grid-template-columns: 38px 1fr;
    gap: 14px;
    padding: 18px;
  }

  .timeline-item span {
    width: 36px;
    height: 36px;
  }

  .package-card {
    min-height: auto;
  }

  .site-footer {
    flex-direction: column;
  }

  .article-page,
  .article-index {
    padding: 96px 18px 56px;
  }

  .article-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .article-grid {
    grid-template-columns: 1fr;
  }
}
