:root {
  color-scheme: light;
  --bg: #fbf4e8;
  --bg-strong: #f3e5cf;
  --surface: #fffaf1;
  --surface-strong: #fff5e4;
  --ink: #241711;
  --muted: #765d4a;
  --soft: #a98b70;
  --line: rgba(75, 47, 31, 0.14);
  --accent: #d77c1d;
  --accent-dark: #9b4f13;
  --accent-soft: #f7d49c;
  --green: #3f6f5e;
  --blue: #385f75;
  --green-soft: #edf4ef;
  --blue-soft: #eef4f7;
  --shadow: 0 24px 70px rgba(80, 48, 24, 0.14);
  --shadow-small: 0 12px 32px rgba(80, 48, 24, 0.12);
  --radius: 8px;
  --max: 1180px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 20;
  padding: 10px 14px;
  background: var(--ink);
  color: #fffaf1;
  border-radius: var(--radius);
  transition: top 160ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 244, 232, 0.9);
  border-bottom: 1px solid rgba(75, 47, 31, 0.08);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  width: min(var(--max), calc(100% - 40px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 700;
  letter-spacing: 0;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--accent);
}

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

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.91rem;
  font-weight: 700;
}

.nav a {
  text-decoration: none;
  color: var(--ink);
  opacity: 0.8;
}

.nav a:hover,
.nav a[aria-current="page"] {
  opacity: 1;
  color: var(--accent-dark);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--accent);
  color: #fffaf1;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(191, 102, 24, 0.26);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  background: #c96f18;
  box-shadow: 0 16px 34px rgba(191, 102, 24, 0.32);
}

.button.secondary {
  background: transparent;
  color: var(--accent-dark);
  border-color: rgba(155, 79, 19, 0.4);
  box-shadow: none;
}

.button.secondary:hover {
  background: rgba(215, 124, 29, 0.08);
  box-shadow: none;
}

.button svg {
  width: 17px;
  height: 17px;
  flex: none;
}

main {
  overflow: hidden;
}

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0;
}

.section.tight {
  padding: 64px 0;
}

.hero {
  width: min(1280px, calc(100% - 40px));
  min-height: min(760px, calc(100vh - 140px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(330px, 0.9fr);
  gap: clamp(30px, 4vw, 58px);
  align-items: center;
  padding: 46px 0 46px;
}

.hero-copy {
  max-width: 570px;
  min-width: 0;
}

h1,
h2,
h3,
.display {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(3.25rem, 6.8vw, 5.55rem);
}

.product-page h1 {
  font-size: clamp(3.1rem, 6.6vw, 5.7rem);
}

h2 {
  font-size: clamp(2.1rem, 4.4vw, 4rem);
}

h3 {
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  line-height: 1.08;
}

.lead {
  margin: 24px 0 0;
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.25rem);
}

.copy {
  color: var(--muted);
}

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

.micro-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-media {
  position: relative;
  min-height: 480px;
  display: grid;
  place-items: center;
}

.phone-stack {
  position: relative;
  width: min(100%, 680px);
  min-height: 480px;
}

.phone {
  position: absolute;
  width: 172px;
  aspect-ratio: 660 / 1434;
  border: 10px solid #1c1613;
  border-radius: 34px;
  background: #1c1613;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.phone::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 8px;
  left: 50%;
  width: 66px;
  height: 18px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #050505;
}

.phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone.primary {
  width: 212px;
  left: 36%;
  top: 22px;
  z-index: 3;
}

.phone.left {
  left: 8%;
  top: 86px;
  z-index: 2;
  transform: rotate(-4deg);
}

.phone.right {
  right: 3%;
  top: 92px;
  z-index: 1;
  transform: rotate(4deg);
}

.product-band {
  background: linear-gradient(135deg, #fffaf1 0%, #f7ecdc 58%, var(--green-soft) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(330px, 1fr);
  gap: clamp(40px, 6vw, 86px);
  align-items: center;
}

.product-photo {
  position: relative;
  min-height: 430px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.product-photo img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.product-card {
  max-width: 520px;
  min-width: 0;
}

.small-title {
  margin: 0 0 18px;
  color: var(--accent-dark);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}

.proof-item {
  min-width: 0;
}

.proof-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  color: var(--accent-dark);
}

.proof-item:nth-child(2) .proof-icon,
.feature:nth-child(4) .feature-icon {
  color: var(--green);
}

.proof-item:nth-child(3) .proof-icon,
.feature:nth-child(1) .feature-icon {
  color: var(--blue);
}

.proof-icon svg,
.feature-icon svg,
.contact-icon svg {
  width: 100%;
  height: 100%;
}

.proof-item h3 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.02rem;
  line-height: 1.2;
}

.proof-item p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.page-hero {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 74px 0 82px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1fr);
  gap: clamp(42px, 7vw, 90px);
  align-items: center;
}

.product-shot-wrap {
  min-height: 540px;
  position: relative;
}

.product-shot-wrap .phone {
  width: 205px;
}

.product-shot-wrap .phone.primary {
  width: 250px;
  left: 31%;
  top: 0;
}

.product-shot-wrap .phone.left {
  left: 1%;
  top: 54px;
}

.product-shot-wrap .phone.right {
  right: 0;
  top: 70px;
}

.feature-strip {
  background: linear-gradient(180deg, rgba(255, 250, 241, 0.86), rgba(237, 244, 239, 0.82));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.feature {
  min-width: 0;
}

.feature-icon {
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  color: var(--accent-dark);
}

.feature h3 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.2;
}

.feature p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.91rem;
}

.gallery {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: clamp(32px, 6vw, 74px);
  align-items: start;
}

.shot-tabs {
  display: grid;
  gap: 12px;
}

.shot-tabs button {
  width: 100%;
  min-height: 66px;
  padding: 14px 16px;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.68);
  color: var(--ink);
  font: inherit;
  cursor: pointer;
}

.shot-tabs button[aria-selected="true"] {
  border-color: rgba(155, 79, 19, 0.45);
  background: var(--surface);
  box-shadow: var(--shadow-small);
}

.shot-tabs strong {
  display: block;
  font-size: 1rem;
}

.shot-tabs span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.9rem;
}

.gallery-stage {
  min-height: 580px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 250, 241, 0.9), rgba(238, 244, 247, 0.8));
  overflow: hidden;
}

.gallery-phone {
  width: min(300px, 82vw);
  aspect-ratio: 660 / 1434;
  border: 12px solid #1c1613;
  border-radius: 42px;
  overflow: hidden;
  background: #1c1613;
  box-shadow: var(--shadow);
}

.gallery-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.panel {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.72);
}

.panel h3 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.08rem;
  line-height: 1.2;
}

.panel p,
.panel li {
  color: var(--muted);
}

.panel p:last-child {
  margin-bottom: 0;
}

.policy {
  max-width: 860px;
  margin: 0 auto;
  padding: 70px 20px 96px;
}

.policy h1 {
  max-width: 760px;
  font-size: clamp(2.8rem, 7vw, 5.3rem);
}

.policy .lead {
  max-width: 780px;
}

.policy-section {
  padding-top: 44px;
}

.policy-section h2 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.45rem;
  line-height: 1.2;
}

.policy-section ul {
  padding-left: 1.25rem;
}

.policy-section li + li {
  margin-top: 8px;
}

.contact-grid {
  margin-top: 38px;
}

.contact-card {
  min-height: 240px;
}

.contact-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  color: var(--accent-dark);
}

.mail-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-top: 12px;
  color: var(--accent-dark);
  font-weight: 900;
  text-decoration: none;
  word-break: break-word;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(255, 250, 241, 0.78);
}

.footer-wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 32px 0;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  gap: 28px;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  font-size: 0.9rem;
  font-weight: 700;
}

.footer-links a,
.footer-contact a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--accent-dark);
}

.footer-contact {
  justify-self: end;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: right;
}

.copyright {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

@media (max-width: 980px) {
  .hero,
  .page-hero-grid,
  .split,
  .gallery {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding-top: 48px;
  }

  .hero-copy,
  .product-card {
    max-width: 760px;
  }

  .phone-stack,
  .product-shot-wrap {
    width: min(100%, 700px);
    margin: 0 auto;
  }

  .proof-row,
  .feature-grid,
  .studio-grid,
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-grid {
    gap: 30px;
  }

  .footer-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-contact {
    justify-self: center;
    text-align: center;
  }
}

@media (max-width: 760px) {
  .nav-wrap {
    width: min(100% - 28px, var(--max));
    min-height: 68px;
  }

  .nav-toggle {
    display: grid;
  }

  .nav {
    position: fixed;
    inset: 68px 14px auto 14px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  body.menu-open .nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 0 12px;
  }

  .nav .button {
    margin-top: 8px;
  }

  .section {
    width: min(100% - 28px, var(--max));
    padding: 68px 0;
  }

  .hero,
  .page-hero {
    width: min(100% - 28px, var(--max));
  }

  .hero {
    padding: 36px 0 26px;
  }

  .page-hero {
    padding: 52px 0 38px;
  }

  h1,
  .product-page h1 {
    font-size: clamp(2.65rem, 12.8vw, 3.45rem);
  }

  .hero-actions,
  .page-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-media,
  .product-shot-wrap {
    min-height: 210px;
    max-height: 210px;
    overflow: hidden;
  }

  .phone-stack {
    min-height: 210px;
  }

  .phone,
  .product-shot-wrap .phone {
    width: 118px;
    border-width: 6px;
    border-radius: 24px;
  }

  .phone.primary,
  .product-shot-wrap .phone.primary {
    width: 156px;
    left: 29%;
  }

  .phone.left,
  .product-shot-wrap .phone.left {
    left: 0;
    top: 74px;
  }

  .phone.right,
  .product-shot-wrap .phone.right {
    right: 0;
    top: 76px;
  }

  .studio-note {
    left: 0;
    bottom: 0;
    width: 100%;
  }

  .proof-row,
  .feature-grid,
  .studio-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .product-photo,
  .product-photo img {
    min-height: 330px;
  }

  .gallery-stage {
    min-height: 520px;
    padding: 24px 14px;
  }

  .gallery-phone {
    width: min(270px, 78vw);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

body.home-page {
  --home-bg: #f4efe2;
  --home-paper: #f7f1e6;
  --home-ink: #102018;
  --home-muted: #52655b;
  --home-line: rgba(28, 47, 37, 0.18);
  --home-pine: #11261d;
  --home-pine-2: #1e3b2f;
  --home-lake: #365d66;
  --home-brass: #d7a646;
  --home-wood: #8b5b32;
  background: var(--home-bg);
  color: var(--home-ink);
}

body.home-page .site-header {
  background: rgba(13, 29, 22, 0.92);
  border-bottom-color: rgba(247, 241, 230, 0.12);
  color: #f7f1e6;
}

body.home-page .brand-mark,
body.home-page .nav a:hover,
body.home-page .nav a[aria-current="page"] {
  color: var(--home-brass);
}

body.home-page .nav a {
  color: #f7f1e6;
  opacity: 0.82;
}

body.home-page .button {
  background: var(--home-brass);
  color: #101812;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

body.home-page .button:hover {
  background: #e1b75a;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.24);
}

body.home-page .button.secondary {
  background: rgba(247, 241, 230, 0.08);
  color: #f8f0df;
  border-color: rgba(247, 241, 230, 0.48);
  box-shadow: none;
}

body.home-page .button.secondary:hover {
  background: rgba(247, 241, 230, 0.16);
}

.home-hero {
  position: relative;
  min-height: min(900px, calc(100vh - 78px));
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background: var(--home-pine);
}

.home-hero-image,
.home-hero-overlay {
  position: absolute;
  inset: 0;
}

.home-hero-image {
  z-index: -3;
  background-image: url("/assets/home/lake-hero.webp");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.home-hero-overlay {
  z-index: -2;
  background:
    radial-gradient(circle at 78% 52%, rgba(17, 38, 29, 0.02), rgba(17, 38, 29, 0.46) 58%),
    linear-gradient(90deg, rgba(12, 25, 18, 0.9) 0%, rgba(12, 25, 18, 0.67) 38%, rgba(12, 25, 18, 0.18) 74%, rgba(12, 25, 18, 0.42) 100%);
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: clamp(520px, 46vw, 720px);
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(244, 239, 226, 0) 0%, rgba(244, 239, 226, 0) 24%, rgba(244, 239, 226, 0.02) 38%, rgba(244, 239, 226, 0.08) 52%, rgba(244, 239, 226, 0.2) 66%, rgba(244, 239, 226, 0.42) 80%, rgba(244, 239, 226, 0.72) 91%, var(--home-bg) 100%);
}

.home-hero-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 54px 0 96px;
}

.home-hero-copy {
  max-width: 660px;
  color: #f8f0df;
}

.home-hero h1 {
  font-size: clamp(3.2rem, 5.8vw, 4.85rem);
  text-wrap: balance;
}

.home-lead {
  width: min(100%, 560px);
  margin: 28px 0 0;
  color: rgba(248, 240, 223, 0.86);
  font-size: clamp(1.12rem, 1.7vw, 1.36rem);
}

.home-principles {
  position: relative;
  width: min(var(--max), calc(100% - 40px));
  margin: -6px auto 0;
  padding: 36px 34px;
  border: 1px solid rgba(32, 51, 41, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(247, 241, 230, 0.96), rgba(239, 231, 216, 0.9)),
    repeating-linear-gradient(125deg, rgba(22, 47, 35, 0.04) 0 1px, transparent 1px 42px);
  box-shadow: 0 28px 80px rgba(24, 42, 33, 0.18);
}

.home-principles::before {
  content: "";
  position: absolute;
  inset: 18px;
  pointer-events: none;
  border: 1px solid rgba(32, 51, 41, 0.08);
  border-radius: calc(var(--radius) - 2px);
}

.home-section-heading {
  max-width: 730px;
  margin-bottom: 30px;
}

.home-section-heading h2 {
  color: var(--home-pine);
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.home-section-heading p {
  margin: 16px 0 0;
  color: var(--home-muted);
  font-size: 1.06rem;
}

.home-principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.home-principle {
  min-width: 0;
  padding-top: 14px;
  border-top: 2px solid rgba(17, 38, 29, 0.16);
}

.home-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  display: grid;
  place-items: center;
  color: var(--home-lake);
}

.home-icon svg {
  width: 100%;
  height: 100%;
}

.home-principle:nth-child(2) .home-icon {
  color: var(--home-wood);
}

.home-principle:nth-child(3) .home-icon {
  color: var(--home-pine-2);
}

.home-principle h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  color: var(--home-pine);
}

.home-principle p {
  margin: 10px 0 0;
  color: var(--home-muted);
  font-size: 0.98rem;
}

.home-first-app {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 98px 0 108px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(330px, 0.7fr);
  gap: clamp(44px, 7vw, 96px);
  align-items: center;
}

.home-app-copy {
  max-width: 560px;
}

.home-app-copy h2 {
  color: var(--home-pine);
}

.home-page .home-first-app .button.secondary {
  color: var(--home-pine);
  border-color: rgba(17, 38, 29, 0.28);
}

.home-app-visual {
  position: relative;
  min-height: 480px;
}

.home-app-icon {
  position: absolute;
  left: 0;
  top: 62px;
  z-index: 2;
  width: 132px;
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(24, 42, 33, 0.24);
}

.home-phone {
  position: absolute;
  right: 0;
  top: 0;
  width: 250px;
  aspect-ratio: 660 / 1434;
  margin: 0;
  border: 10px solid #131412;
  border-radius: 38px;
  overflow: hidden;
  background: #131412;
  box-shadow: 0 30px 80px rgba(24, 42, 33, 0.24);
}

.home-phone::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 8px;
  left: 50%;
  width: 66px;
  height: 18px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #050505;
}

.home-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.home-page .site-footer {
  background: #102018;
  border-top-color: rgba(247, 241, 230, 0.12);
  color: #f7f1e6;
}

body.home-page .footer-links a,
body.home-page .footer-contact,
body.home-page .footer-contact a,
body.home-page .copyright {
  color: rgba(247, 241, 230, 0.76);
}

body.home-page .footer-links a:hover,
body.home-page .footer-contact a:hover {
  color: var(--home-brass);
}

@media (max-width: 980px) {
  .home-hero-inner {
    padding: 86px 0 118px;
  }

  .home-principle-grid,
  .home-first-app {
    grid-template-columns: 1fr;
  }

  .home-app-visual {
    width: min(100%, 460px);
    margin: 0 auto;
  }
}

@media (max-width: 760px) {
  body.home-page .site-header {
    background: rgba(13, 29, 22, 0.96);
  }

  body.home-page .nav-toggle {
    background: rgba(247, 241, 230, 0.08);
    border-color: rgba(247, 241, 230, 0.28);
    color: #f7f1e6;
  }

  body.home-page .nav {
    background: #102018;
    border-color: rgba(247, 241, 230, 0.18);
  }

  .home-hero {
    min-height: calc(100vh + 120px);
  }

  .home-hero::after {
    height: 500px;
  }

  .home-hero-image {
    background-position: 62% center;
  }

  .home-hero-overlay {
    background:
      linear-gradient(180deg, rgba(12, 25, 18, 0.48) 0%, rgba(12, 25, 18, 0.84) 34%, rgba(12, 25, 18, 0.96) 100%),
      linear-gradient(90deg, rgba(12, 25, 18, 0.84), rgba(12, 25, 18, 0.36));
  }

  .home-hero-inner {
    width: min(100% - 28px, var(--max));
    padding: 58px 0 116px;
  }

  .home-hero h1 {
    font-size: clamp(3rem, 14vw, 4.05rem);
  }

  .home-lead {
    font-size: 1.08rem;
  }

  .home-principles {
    width: min(100% - 28px, var(--max));
    margin-top: -20px;
    padding: 28px 20px;
  }

  .home-principles::before {
    inset: 12px;
  }

  .home-principle-grid {
    gap: 28px;
  }

  .home-first-app {
    width: min(100% - 28px, var(--max));
    padding: 70px 0 78px;
  }

  .home-app-visual {
    min-height: 330px;
    overflow: hidden;
  }

  .home-app-icon {
    width: 100px;
    top: 38px;
  }

  .home-phone {
    width: 190px;
    border-width: 8px;
    border-radius: 32px;
  }
}
