:root {
  --bg: #f5efe4;
  --paper: #fffaf1;
  --ink: #1e2a25;
  --muted: #66736d;
  --green: #15261f;
  --gold: #c9a45c;
  --rust: #a85635;
  --line: #ded1bc;
  --shadow: 0 18px 55px rgba(25, 38, 32, 0.13);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
}
a {
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}
.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: #fff;
  padding: 10px;
  z-index: 99;
}
.skip-link:focus {
  left: 10px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 241, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.brand__mark {
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid !important;
  place-items: center;
  background: var(--green);
  color: var(--gold);
}
.brand__text {
  font-size: 1.4rem;
}
.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}
.nav__link,
.header-phone {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.96rem;
}
.nav__link:hover,
.nav__link.is-active,
.header-phone:hover {
  color: var(--rust);
}
.menu-btn {
  display: none;
  margin-left: auto;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--ink);
}
.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8, 18, 15, 0.82), rgba(21, 38, 31, 0.42)),
    url("og-watch.png") center/cover no-repeat;
  color: #fff;
}
.hero__texture {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(201, 164, 92, 0.35),
      transparent 32%
    ),
    linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.05) 0 1px,
      transparent 1px 20px
    );
  opacity: 0.9;
}
.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  min-height: 650px;
  padding-block: 70px;
}
.hero h1,
.page-hero h1 {
  font-size: clamp(2.3rem, 5vw, 5.2rem);
  line-height: 0.98;
  margin: 0 0 22px;
  letter-spacing: -0.04em;
}
.lead {
  font-size: 1.18rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 720px;
}
.page-hero .lead {
  color: #5d6862;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 700;
  margin: 0 0 14px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--rust);
  color: #fff;
  text-decoration: none;
  padding: 13px 22px;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(168, 86, 53, 0.24);
  cursor: pointer;
}
.btn:hover {
  filter: brightness(0.94);
}
.btn--light {
  background: var(--paper);
  color: var(--green);
}
.btn--ghost {
  background: transparent;
  color: var(--green);
  border: 1px solid var(--line);
  box-shadow: none;
}
.btn--small {
  padding: 10px 16px;
  font-size: 0.92rem;
}
.hero__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 34px 0 0;
}
.hero__facts div {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.06);
}
dt {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}
dd {
  margin: 0;
  font-weight: 700;
}
.watch-card {
  min-height: 420px;
  border: 1px solid rgba(201, 164, 92, 0.45);
  border-radius: 42px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.16),
    rgba(255, 255, 255, 0.04)
  );
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
}
.dial {
  position: relative;
  width: min(340px, 82vw);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 10px solid var(--gold);
  background:
    radial-gradient(circle, #fffaf1 0 6%, #d7c5a5 7% 9%, transparent 10%),
    repeating-conic-gradient(from 0deg, #385045 0 2deg, transparent 2deg 15deg),
    #f7edda;
}
.dial:before {
  content: "";
  position: absolute;
  inset: 44px;
  border: 1px solid rgba(21, 38, 31, 0.28);
  border-radius: 50%;
}
.dial span,
.dial i,
.dial b {
  position: absolute;
  left: 50%;
  top: 50%;
  transform-origin: left center;
  background: var(--green);
  height: 6px;
  border-radius: 99px;
}
.dial span {
  width: 108px;
  transform: rotate(-45deg);
}
.dial i {
  width: 86px;
  transform: rotate(245deg);
  height: 4px;
}
.dial b {
  width: 120px;
  transform: rotate(12deg);
  height: 2px;
  background: var(--rust);
}
.section {
  padding: 86px 0;
}
.section--soft {
  background: #fff6e8;
}
.section--dark {
  background: var(--green);
  color: #fff;
}
.section__head {
  max-width: 690px;
  margin-bottom: 32px;
}
.section h2,
.section__head h2,
.page-hero h1 {
  margin-top: 0;
}
.section h2,
.section__head h2 {
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.cards {
  display: grid;
  gap: 22px;
}
.cards--three {
  grid-template-columns: repeat(3, 1fr);
}
.cards--two {
  grid-template-columns: repeat(2, 1fr);
}
.card,
.panel,
.form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.card h3,
.card h2 {
  margin: 0 0 10px;
}
.icon {
  font-size: 2rem;
  color: var(--rust);
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: start;
}
.steps {
  display: grid;
  gap: 14px;
}
.steps div {
  display: flex;
  gap: 16px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
}
.steps span {
  color: var(--gold);
  font-weight: 800;
}
.map-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
  align-items: center;
}
.map-box {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 30px;
  overflow: hidden;
  background: #e8dcc9;
  box-shadow: var(--shadow);
}
.map-box img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}
.text-link {
  color: var(--rust);
  font-weight: 800;
}
.page-hero {
  padding: 88px 0 62px;
  background: linear-gradient(145deg, #fff8ec, #eadbc2);
}
.service-list {
  display: grid;
  gap: 18px;
}
.service {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 26px;
  box-shadow: var(--shadow);
}
.service h2 {
  font-size: 1.4rem;
  margin: 0 0 6px;
}
.service p {
  margin: 0;
  color: var(--muted);
}
.price-table {
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow);
}
.price-row {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.6fr;
  gap: 18px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}
.price-row:last-child {
  border-bottom: 0;
}
.price-row--head {
  background: var(--green);
  color: #fff;
  font-weight: 800;
}
.note {
  color: var(--muted);
}
.checklist {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.checklist li {
  position: relative;
  padding-left: 28px;
}
.checklist li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--rust);
  font-weight: 800;
}
.narrow {
  max-width: 780px;
}
.legal h2 {
  font-size: 1.55rem;
  margin-top: 28px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
}
.contact-line {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.contact-line span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}
.contact-line a {
  text-decoration: none;
  color: var(--rust);
  font-weight: 800;
}
.form {
  display: grid;
  gap: 15px;
}
.form label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}
.form input,
.form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 13px;
  font: inherit;
  color: var(--ink);
}
.form-note {
  font-size: 0.9rem;
  color: var(--muted);
}
.footer {
  background: #101c18;
  color: rgba(255, 255, 255, 0.78);
  padding: 54px 0 24px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr 1fr;
  gap: 30px;
}
.footer h2 {
  font-size: 1rem;
  color: var(--gold);
  margin: 0 0 12px;
}
.footer a,
.footer span {
  display: block;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.76);
  margin: 6px 0;
}
.brand--footer {
  color: #fff;
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 30px;
  padding-top: 20px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
}
.cookie {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  background: rgba(255, 250, 241, 0.98);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 18px;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  align-items: center;
}
.cookie[hidden] {
  display: none;
}
.cookie__text {
  max-width: 760px;
  color: var(--muted);
}
.cookie__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
@media (max-width: 860px) {
  .header-phone {
    display: none;
  }
  .menu-btn {
    display: block;
  }
  .nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 18px;
    box-shadow: var(--shadow);
  }
  .nav.is-open {
    display: flex;
  }
  .hero__grid,
  .split,
  .map-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero__grid {
    min-height: auto;
  }
  .cards--three,
  .cards--two,
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .service {
    align-items: flex-start;
    flex-direction: column;
  }
  .price-row {
    grid-template-columns: 1fr;
  }
  .hero__facts {
    grid-template-columns: 1fr;
  }
  .cookie {
    flex-direction: column;
    align-items: flex-start;
  }
  .cookie__actions {
    width: 100%;
    flex-direction: column;
  }
  .cookie__actions .btn {
    width: 100%;
  }
}
.feature-photo {
  margin: 0;
  border: 1px solid rgba(201, 164, 92, 0.5);
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #eadbc2;
}
.feature-photo img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.section--dark .feature-photo {
  border-color: rgba(201, 164, 92, 0.45);
}
