:root {
  --ink: #173f3f;
  --deep: #0f4a4c;
  --gold: #c59b57;
  --sand: #f5eddf;
  --cream: #fffaf2;
  --muted: #5d6b68;
  --line: #e6dccb;
  --white: #fff;
  --shadow: 0 18px 50px rgba(15, 74, 76, 0.12);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    system-ui,
    -apple-system,
    Segoe UI,
    sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 18px;
}
a {
  color: inherit;
}
.container {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}
.narrow {
  width: min(820px, calc(100% - 32px));
}
.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  background: var(--ink);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 10;
}
.skip-link:focus {
  left: 1rem;
}
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 250, 242, 0.96);
  border-bottom: 1px solid var(--line);
  z-index: 5;
}
.header-inner {
  min-height: 104px;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  min-width: 180px;
}
.brand-logo {
  display: block;
  width: auto;
  max-width: clamp(190px, 22vw, 280px);
  height: 84px;
  object-fit: contain;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--deep);
  color: #fff;
  font-weight: 800;
}
.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
}
.primary-nav {
  margin-left: auto;
}
.menu {
  display: flex;
  list-style: none;
  gap: 1rem;
  margin: 0;
  padding: 0;
}
.menu a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
}
.menu a:focus,
.menu a:hover {
  color: var(--deep);
  text-decoration: underline;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.phone-link {
  font-weight: 800;
  text-decoration: none;
  color: var(--deep);
  white-space: nowrap;
}
.menu-toggle {
  display: none;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--gold);
  color: #1e2b28;
  text-decoration: none;
  font-weight: 800;
  padding: 0.9rem 1.25rem;
  border: 2px solid var(--gold);
  box-shadow: 0 8px 20px rgba(197, 155, 87, 0.18);
}
.btn:hover,
.btn:focus {
  background: #d8ad66;
}
.btn-secondary {
  background: transparent;
  color: var(--deep);
  border-color: var(--deep);
  box-shadow: none;
}
.btn-small {
  padding: 0.62rem 0.95rem;
  font-size: 0.9rem;
}
.section {
  padding: 86px 0;
}
.tinted {
  background: var(--sand);
}
.hero {
  background:
    radial-gradient(circle at 85% 15%, #ead5ae, transparent 26%),
    linear-gradient(135deg, #fffaf2 0%, #f4ead8 100%);
}
.hero-grid,
.two-col {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--deep);
  font-weight: 900;
  font-size: 0.78rem;
}
h1,
h2,
h3 {
  line-height: 1.12;
  margin: 0 0 1rem;
}
h1 {
  font-size: clamp(2.45rem, 6vw, 4.8rem);
}
h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}
h3 {
  font-size: 1.25rem;
}
.lead {
  font-size: 1.24rem;
  color: #314f4d;
}
.trust-list,
.check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}
.trust-list li,
.check-grid li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.8rem 0.95rem;
  font-weight: 750;
}
.trust-list li:before,
.check-grid li:before {
  content: "✓ ";
  color: var(--deep);
  font-weight: 900;
}
.reassurance {
  color: var(--muted);
  font-weight: 700;
}
.actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-visual {
  min-height: 420px;
  margin: 0;
  border-radius: 34px;
  background: linear-gradient(135deg, #d6ad64 0%, #f4ead8 100%);
  position: relative;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}
.photo-card {
  position: absolute;
  width: 210px;
  height: 250px;
  background: #fff;
  border: 12px solid #fff;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.18);
}
.photo-card:before {
  content: "";
  display: block;
  height: 100%;
  background: linear-gradient(135deg, #dfc394, #795f47);
}
.photo-card.one {
  left: 56px;
  top: 62px;
  transform: rotate(-8deg);
}
.photo-card.two {
  left: 150px;
  top: 104px;
  transform: rotate(7deg);
}
.digital-card {
  position: absolute;
  right: 38px;
  bottom: 48px;
  background: rgba(255, 250, 242, 0.94);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.2rem;
  font-weight: 900;
  color: var(--deep);
  box-shadow: var(--shadow);
}
.digital-card span {
  font-size: 0.9rem;
  color: var(--muted);
}
.section-heading {
  max-width: 780px;
  margin: 0 auto 2.3rem;
  text-align: center;
}
.card-grid,
.pricing-grid {
  display: grid;
  gap: 1.1rem;
}
.four {
  grid-template-columns: repeat(4, 1fr);
}
.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
}
.card,
.price-card,
.form-box,
details,
.options {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.35rem;
  box-shadow: var(--shadow);
}
.card {
  min-height: 190px;
}
.notice {
  background: #fff6df;
  border-left: 5px solid var(--gold);
  padding: 1rem 1.2rem;
  border-radius: 14px;
  color: #4b3d2b;
}
.strong {
  font-weight: 800;
}
.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  list-style: none;
  padding: 0;
}
.steps li {
  counter-increment: step;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.25rem;
  box-shadow: var(--shadow);
}
.steps li:before {
  content: counter(step);
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--deep);
  color: #fff;
  font-weight: 900;
  margin-bottom: 0.75rem;
}
.steps span {
  display: block;
  color: var(--muted);
}
.price {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--deep);
  margin: 0.5rem 0;
}
.map-wrap iframe {
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.business {
  text-align: center;
  background: var(--deep);
  color: #fff;
}
.business .notice {
  color: #3f3529;
}
.faq-list {
  display: grid;
  gap: 0.8rem;
}
summary {
  cursor: pointer;
  font-weight: 900;
}
details p {
  margin-bottom: 0;
  color: var(--muted);
}
.contact {
  background: linear-gradient(135deg, #f5eddf, #fffaf2);
}
.contact .two-col {
  grid-template-columns: minmax(260px, 0.8fr) minmax(360px, 1.2fr);
  align-items: start;
}
.contact .form-box {
  padding: clamp(1.35rem, 3vw, 2rem);
}
.btn-phone {
  margin-top: 1rem;
}
.site-footer {
  background: #102f30;
  color: #f9efe0;
  padding: 54px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
}
.site-footer h2 {
  font-size: 1.2rem;
}
.site-footer ul {
  list-style: none;
  padding: 0;
}
.site-footer a {
  color: #f9efe0;
  text-decoration: none;
}
.site-footer a:hover,
.site-footer a:focus {
  text-decoration: none;
  color: #fff;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding: 1rem;
  margin-top: 2rem;
}
.footer-credit {
  color: #f9efe0;
  text-decoration: none;
  font-size: 0.92rem;
  opacity: 0.82;
  white-space: nowrap;
}
.footer-credit:before {
  content: "•";
  margin-right: 0.75rem;
  opacity: 0.7;
}
.footer-credit:hover,
.footer-credit:focus {
  opacity: 1;
  text-decoration: none;
}
.back-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 6;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: #102f30;
  text-decoration: none;
  font-size: 1.45rem;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(15, 74, 76, 0.24);
  border: 2px solid rgba(255, 250, 242, 0.9);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(0.96);
  transition:
    opacity 220ms ease,
    transform 260ms ease,
    background-color 220ms ease,
    box-shadow 260ms ease;
}
.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.back-to-top:hover,
.back-to-top:focus {
  background: #d8ad66;
  transform: translateY(-2px) scale(1.08);
}
.page-content,
.post-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 2rem;
  box-shadow: var(--shadow);
}
.entry-content img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 980px) {
  .header-inner {
    flex-wrap: wrap;
  }
  .brand {
    min-width: 0;
  }
  .brand-logo {
    height: 72px;
    max-width: 210px;
  }
  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    padding: 0.65rem 1rem;
    font-weight: 800;
  }
  .primary-nav {
    display: none;
    order: 4;
    width: 100%;
    margin-left: 0;
  }
  .primary-nav.is-open {
    display: block;
  }
  .menu {
    display: grid;
    gap: 0.25rem;
  }
  .menu a {
    display: block;
    padding: 0.7rem 0;
  }
  .header-actions {
    margin-left: auto;
  }
  .hero-grid,
  .two-col,
  .contact .two-col {
    grid-template-columns: 1fr;
  }
  .four,
  .pricing-grid,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-visual {
    min-height: 340px;
  }
}
@media (max-width: 640px) {
  body {
    font-size: 16px;
  }
  .section {
    padding: 58px 0;
  }
  .header-actions {
    width: 100%;
    justify-content: space-between;
  }
  .btn,
  .phone-link {
    width: auto;
  }
  .four,
  .pricing-grid,
  .steps,
  .trust-list,
  .check-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual,
  .hero-visual img {
    min-height: 300px;
  }
  .photo-card {
    width: 160px;
    height: 195px;
  }
  .photo-card.one {
    left: 28px;
  }
  .photo-card.two {
    left: 104px;
  }
  .digital-card {
    right: 18px;
    bottom: 26px;
  }
  .footer-grid {
    display: grid;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-credit {
    white-space: normal;
  }
  .footer-credit:before {
    content: none;
    margin-right: 0;
  }
  .brand small {
    font-size: 0.66rem;
  }
}
