:root {
  --ink: #19231f;
  --muted: #61706a;
  --deep: #103d35;
  --leaf: #1f6f61;
  --rose: #c9787b;
  --gold: #d7a45f;
  --cream: #fffaf4;
  --mist: #eef4f1;
  --line: #dbe5df;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(25, 35, 31, .13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.62;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

figure {
  margin: 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(219, 229, 223, .72);
  background: rgba(255, 252, 248, .92);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1160px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

.brand img {
  width: 168px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.nav-links a svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--deep);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--deep);
  background: var(--white);
  cursor: pointer;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
  margin: auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 700;
  white-space: nowrap;
  transition: transform .24s ease, border-color .24s ease, background .24s ease, box-shadow .24s ease;
}

.button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

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

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

.button-primary:hover,
.button-primary:focus-visible {
  background: #0d302a;
}

.button-secondary {
  color: var(--deep);
  background: rgba(255, 255, 255, .82);
  border-color: var(--line);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--leaf);
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: stretch;
  background: var(--cream);
}

.hero-shell {
  position: relative;
  display: grid;
  min-height: calc(100vh - 76px);
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--cream);
}

.hero-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 250, 244, .98) 0%, rgba(255, 250, 244, .88) 31%, rgba(255, 250, 244, .28) 62%, rgba(255, 250, 244, .06) 100%),
    linear-gradient(0deg, rgba(16, 61, 53, .36), rgba(16, 61, 53, 0) 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(58px, 9vw, 118px) 0 76px;
  display: grid;
  align-content: center;
}

.hero-image {
  animation: heroDrift 18s ease-in-out infinite alternate;
  transform-origin: center;
}

.eyebrow {
  width: fit-content;
  margin: 0 0 18px;
  padding: 7px 11px;
  border-left: 4px solid var(--rose);
  color: var(--deep);
  background: rgba(255, 255, 255, .7);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 620px;
  margin-bottom: 18px;
  color: var(--deep);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-size: clamp(42px, 6.2vw, 76px);
  line-height: 1.06;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.hero-lead {
  max-width: 570px;
  margin-bottom: 28px;
  color: #35443f;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span,
.mini-pill {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(16, 61, 53, .14);
  border-radius: 999px;
  color: var(--deep);
  background: rgba(255, 255, 255, .72);
  font-size: 13px;
  font-weight: 600;
  white-space: normal;
}

.notice-band {
  background: var(--deep);
  color: var(--white);
}

.notice-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.notice-inner strong {
  color: #ffe3b5;
}

.section {
  padding: clamp(58px, 8vw, 96px) 0;
}

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

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

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head h2,
.detail-hero h1 {
  margin-bottom: 12px;
  color: var(--deep);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-size: clamp(31px, 3.8vw, 48px);
  line-height: 1.13;
  letter-spacing: 0;
}

.section-head p,
.detail-lead {
  color: var(--muted);
  font-size: 18px;
  font-weight: 400;
}

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

.service-card {
  min-height: 430px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 35px rgba(25, 35, 31, .06);
  display: grid;
  align-content: space-between;
  gap: 18px;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(31, 111, 97, .28);
  box-shadow: 0 18px 44px rgba(25, 35, 31, .1);
}

.service-card-media {
  display: block;
  width: calc(100% + 36px);
  height: 220px;
  margin: -18px -18px 18px;
  overflow: hidden;
  background: var(--mist);
}

.service-card-media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transition: transform .8s ease;
}

.service-card:hover .service-card-media img {
  transform: scale(1.045);
}

.service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--deep);
  background: #f6e4df;
}

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

.service-card h3 {
  margin-bottom: 8px;
  color: var(--deep);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.22;
}

.service-card p {
  color: var(--muted);
}

.seo-link-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.seo-link-grid a {
  min-height: 150px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(25, 35, 31, .05);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.seo-link-grid a:hover,
.seo-link-grid a:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(31, 111, 97, .28);
  box-shadow: 0 16px 40px rgba(25, 35, 31, .08);
}

.seo-link-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--deep);
  font-size: 18px;
  line-height: 1.25;
}

.seo-link-grid span {
  display: block;
  color: var(--muted);
  font-size: 15px;
}

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

.faq-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.faq-list strong {
  color: var(--deep);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--leaf);
  font-weight: 700;
}

.text-link svg {
  width: 17px;
  height: 17px;
}

.split {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #34443f;
  font-weight: 500;
}

.check {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--white);
  background: var(--leaf);
  display: grid;
  place-items: center;
  font-size: 14px;
}

.info-panel {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.info-panel h3 {
  color: var(--deep);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
}

.info-list {
  display: grid;
  gap: 18px;
  margin: 24px 0;
}

.info-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
}

.info-item svg {
  width: 44px;
  height: 44px;
  padding: 11px;
  border-radius: 8px;
  color: var(--deep);
  background: var(--mist);
}

.info-item span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.info-item strong,
.info-item a {
  font-size: 18px;
  color: var(--ink);
  font-weight: 700;
}

.location-note {
  margin: 0;
  color: var(--muted);
}

.detail-hero {
  background: linear-gradient(135deg, #fffaf4 0%, #eef4f1 100%);
}

.detail-hero .container {
  padding: clamp(42px, 6vw, 72px) 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 28px;
  align-items: center;
}

.detail-hero-text {
  display: grid;
  align-content: center;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.detail-photo {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.detail-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 1s ease;
}

.detail-photo:hover img {
  transform: scale(1.035);
}

.photo-credit {
  padding: 9px 12px;
  color: var(--muted);
  background: var(--white);
  font-size: 12px;
  font-weight: 700;
}

.photo-credit a {
  color: var(--leaf);
}

.breadcrumb {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.breadcrumb a {
  color: var(--leaf);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

.detail-content {
  display: grid;
  gap: 24px;
}

.detail-block {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.detail-block h2 {
  color: var(--deep);
  font-size: clamp(25px, 2.6vw, 32px);
  font-weight: 700;
  line-height: 1.2;
}

.detail-block h3,
.detail-cta-card h3 {
  margin-bottom: 10px;
  color: var(--deep);
  font-size: clamp(22px, 2.2vw, 27px);
  font-weight: 700;
  line-height: 1.24;
}

.detail-block ul {
  display: grid;
  gap: 12px;
  padding-left: 20px;
  color: #34443f;
}

.detail-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.detail-feature {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}

.detail-feature:hover {
  transform: translateY(-3px);
  border-color: rgba(31, 111, 97, .28);
  background: var(--white);
}

.detail-feature strong {
  display: block;
  margin-bottom: 6px;
  color: var(--deep);
  font-size: 16px;
}

.detail-feature p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.step-list {
  counter-reset: step;
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.step-list li {
  position: relative;
  min-height: 54px;
  padding: 4px 0 4px 68px;
  color: #34443f;
}

.step-list li::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--deep);
  font-weight: 700;
}

.detail-note {
  border-left: 4px solid var(--gold);
  background: #fff7e9;
}

.quick-list {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.quick-list li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-weight: 500;
}

.quick-list strong {
  color: var(--ink);
  text-align: right;
}

.detail-cta-card {
  padding: 24px;
  border-radius: 8px;
  color: var(--white);
  background: var(--deep);
}

.detail-cta-card h2,
.detail-cta-card h3,
.detail-cta-card p {
  color: var(--white);
}

.detail-cta-card .button {
  margin-top: 8px;
}

.detail-side {
  position: sticky;
  top: 96px;
}

.side-links {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.side-links a {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--deep);
  background: var(--white);
  font-weight: 600;
}

.side-links a:hover,
.side-links a:focus-visible {
  border-color: var(--leaf);
}

.js-ready .reveal {
  opacity: .08;
  transform: translateY(16px);
  transition:
    opacity .78s ease,
    transform .78s cubic-bezier(.2, .7, .2, 1);
}

.js-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: var(--reveal-delay, 0ms);
}

.js-ready .reveal-soft {
  transform: translateY(12px) scale(.99);
}

.js-ready .reveal-soft.is-visible {
  transform: translateY(0) scale(1);
}

@keyframes heroDrift {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.035);
  }
}

.cta-band {
  background: #14221e;
  color: var(--white);
}

.cta-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(40px, 6vw, 64px) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-inner h2,
.cta-inner h3 {
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-size: clamp(28px, 3.5vw, 42px);
  letter-spacing: 0;
  line-height: 1.14;
}

.cta-inner p {
  margin-bottom: 0;
  color: #cedbd6;
}

.site-footer {
  background: var(--cream);
  border-top: 1px solid var(--line);
}

.footer-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-weight: 500;
}

.footer-inner img {
  width: 150px;
}

@media (max-width: 1080px) {
  .nav-toggle {
    display: grid !important;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    left: 16px;
    right: 16px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

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

  .nav-links .button {
    width: 100%;
  }

  .hero {
    min-height: auto;
  }

  .hero-shell {
    min-height: 720px;
  }

  .hero-shell::after {
    background:
      linear-gradient(180deg, rgba(255, 250, 244, .98) 0%, rgba(255, 250, 244, .9) 48%, rgba(255, 250, 244, .2) 100%),
      linear-gradient(0deg, rgba(16, 61, 53, .32), rgba(16, 61, 53, 0) 42%);
  }

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

  .service-grid,
  .seo-link-grid,
  .split,
  .detail-layout,
  .detail-hero .container {
    grid-template-columns: 1fr;
  }

  .detail-side {
    position: static;
  }

  .notice-inner,
  .cta-inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .nav {
    width: 100%;
    padding: 0 16px;
    gap: 12px;
    position: relative;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 142px;
  }

  .nav-toggle {
    display: grid !important;
    position: static;
    flex: 0 0 44px;
    z-index: 30;
    color: var(--white);
    background: var(--deep);
    border-color: var(--deep);
  }

  .hero-content,
  .container,
  .notice-inner,
  .cta-inner,
  .footer-inner {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  .detail-hero .container {
    padding: 44px 16px;
  }

  .detail-tags,
  .trust-row {
    max-width: 100%;
    overflow: hidden;
  }

  .hero-content {
    padding-top: 44px;
  }

  h1 {
    max-width: 100%;
    font-size: 34px;
    line-height: 1.1;
  }

  .hero-lead {
    max-width: 340px;
    font-size: 17px;
  }

  .notice-inner p {
    max-width: 340px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .service-card,
  .detail-block,
  .detail-cta-card,
  .info-panel {
    padding: 22px;
  }

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

  .service-card-media {
    width: calc(100% + 44px);
    height: 210px;
    margin: -22px -22px 18px;
  }

  .detail-feature-grid {
    grid-template-columns: 1fr;
  }

  .detail-photo img {
    aspect-ratio: 16 / 11;
  }

  .info-item {
    grid-template-columns: 38px 1fr;
  }

  .info-item svg {
    width: 38px;
    height: 38px;
    padding: 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .js-ready .reveal,
  .js-ready .reveal-soft {
    opacity: 1;
    transform: none;
  }
}
