:root {
  --bg: #10130f;
  --bg-soft: #171c16;
  --surface: #f8f5ef;
  --surface-2: #eee6da;
  --text: #f7f1e6;
  --text-dark: #151713;
  --muted: #b8b0a3;
  --muted-dark: #625d52;
  --brand: #c9791f;
  --brand-light: #e8a85c;
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: #ded6ca;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 94px;
  padding: 22px clamp(22px, 5vw, 72px);
  background: rgba(16, 19, 15, 0.96);
  border-bottom: 1px solid var(--line);
  box-shadow: none;
  backdrop-filter: blur(16px);
  transform: none;
}

.home-page .site-header {
  background: linear-gradient(180deg, rgba(16, 19, 15, 0.78), rgba(16, 19, 15, 0));
  border-bottom: 0;
  backdrop-filter: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--brand-light), var(--brand));
  color: #160d05;
  box-shadow: 0 12px 28px rgba(201, 121, 31, 0.18);
  font-weight: 900;
  font-size: 0.88rem;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: #fff;
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: 0;
  text-shadow: none;
}

.brand small {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-top: 1px;
  text-shadow: none;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  color: var(--muted);
  font-weight: 750;
}

.main-nav a {
  padding: 10px 15px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 850;
  text-shadow: none;
}

.main-nav a:hover,
.main-nav [aria-current="page"] {
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
}

.nav-phone {
  margin-left: 4px;
  padding: 11px 16px !important;
  border: 0;
  border-radius: 999px;
  background: var(--brand);
  color: #170e06 !important;
  backdrop-filter: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
}

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

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  width: min(1440px, calc(100% - 40px));
  min-height: calc(100svh - 82px);
  margin: 0 auto;
  padding: clamp(30px, 5vw, 72px) 0;
}

.home-hero--cover {
  position: relative;
  display: flex;
  align-items: flex-end;
  width: 100%;
  min-height: 100svh;
  margin-top: 0;
  margin: 0;
  padding: clamp(150px, 16vw, 230px) clamp(20px, 7vw, 96px) clamp(72px, 9vw, 118px);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(16, 19, 15, 0.36) 0%, rgba(16, 19, 15, 0) 28%),
    linear-gradient(90deg, rgba(16, 19, 15, 0.86) 0%, rgba(16, 19, 15, 0.56) 43%, rgba(16, 19, 15, 0.18) 100%),
    url("assets/hero-main.png") center / cover no-repeat;
}

.home-hero--cover::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 19, 15, 0.26), rgba(16, 19, 15, 0.42));
  content: "";
  pointer-events: none;
}

.home-hero--cover .home-hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  transform: translateY(38px);
}

.home-hero__image {
  overflow: hidden;
  border-radius: 0 0 48px 0;
  box-shadow: var(--shadow);
}

.home-hero__image img {
  width: 100%;
  min-height: 580px;
  object-fit: cover;
}

.home-hero__content {
  max-width: 650px;
}

.home-hero--cover h1 {
  max-width: 820px;
  font-size: clamp(4.2rem, 11vw, 9.5rem);
}

.home-hero--cover p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(247, 241, 230, 0.86);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand-light);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 7vw, 6.3rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.24rem;
  line-height: 1.2;
}

.home-hero__content p,
.section-heading p,
.page-hero p,
.content-panel p {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  cursor: pointer;
}

.button--primary {
  background: var(--brand);
  color: #170e06;
  box-shadow: 0 16px 34px rgba(201, 121, 31, 0.22);
}

.button--primary:hover {
  background: var(--brand-light);
}

.button--secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.button--secondary:hover {
  border-color: rgba(255, 255, 255, 0.34);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-bottom: 96px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.about-section {
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: clamp(24px, 5vw, 74px);
  padding: clamp(64px, 9vw, 108px) 0;
}

.about-section h2 {
  max-width: 860px;
}

.about-section p:not(.eyebrow) {
  max-width: 780px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.26rem);
}

.intro-grid div {
  padding: 28px;
  background: var(--bg-soft);
}

.intro-grid span,
.service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  border-radius: 50%;
  background: rgba(201, 121, 31, 0.15);
  color: var(--brand-light);
  font-size: 0.82rem;
  font-weight: 900;
}

.intro-grid h2 {
  font-size: 1.2rem;
}

.intro-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.services-preview {
  padding-bottom: 64px;
}

.info-panel {
  padding: clamp(64px, 9vw, 108px) 0 clamp(92px, 10vw, 132px);
}

.info-box {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 5vw, 64px);
  padding: 0;
}

.info-box__content {
  max-width: 560px;
}

.info-box__content h2 {
  max-width: 500px;
  line-height: 1;
}

.info-box__content .eyebrow {
  font-size: 0.92rem;
}

.info-box__content p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
}

.info-points {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.info-points li {
  position: relative;
  padding: 0 0 18px 34px;
  border-bottom: 1px solid var(--line);
}

.info-points li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.info-points li::before {
  position: absolute;
  top: 0.25em;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 6px rgba(201, 121, 31, 0.14);
  content: "";
}

.info-points strong,
.info-points span {
  display: block;
}

.info-points strong {
  margin-bottom: 0;
  color: var(--text);
  font-size: 1.12rem;
  line-height: 1.35;
}

.info-points span {
  color: var(--muted);
}

.reviews-section {
  padding-bottom: 84px;
}

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

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

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

.review-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-soft);
}

.stars {
  margin-bottom: 30px;
  color: var(--brand-light);
  font-size: 1.08rem;
  letter-spacing: 0;
}

.review-card p {
  color: var(--text);
  font-size: 1.08rem;
}

.review-card strong {
  display: block;
  margin-top: 22px;
  color: var(--muted);
}

.service-card {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8f5ef;
  color: var(--text-dark);
  transition: transform 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 121, 31, 0.55);
}

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

.service-card--accent {
  background: var(--brand);
  color: #170e06;
}

.service-card--accent p {
  color: rgba(23, 14, 6, 0.72);
}

.services-page .page-hero {
  grid-template-columns: 1fr;
  width: min(var(--max), calc(100% - 40px));
  max-width: none;
  padding-bottom: 38px;
}

.services-page .page-hero h1 {
  max-width: none;
  font-size: clamp(3.4rem, 5vw, 5.8rem);
  white-space: nowrap;
}

.services-page .page-hero p:not(.eyebrow) {
  max-width: 700px;
}

.services-page .page-hero__image {
  display: none;
}

.services-page .services-preview {
  padding-top: 0;
  padding-bottom: clamp(76px, 9vw, 116px);
}

.services-page .services-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 980px;
  margin: 0 auto;
}

.services-page .service-card {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 18px;
  min-height: auto;
  padding: 22px 24px;
  background: var(--bg-soft);
  color: var(--text);
}

.services-page .service-card h3 {
  margin-bottom: 6px;
}

.services-page .service-card p {
  grid-column: 2;
  margin-bottom: 0;
  color: var(--muted);
}

.services-page .service-card__icon {
  grid-row: 1 / span 2;
  width: 38px;
  height: 38px;
  margin-bottom: 0;
}

.services-page .service-card--accent {
  border-color: rgba(201, 121, 31, 0.42);
  background: rgba(201, 121, 31, 0.13);
}

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

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(120px, 12vw, 160px) 0 64px;
}

.page-hero h1 {
  font-size: clamp(3rem, 6vw, 5.4rem);
}

.page-hero__image {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.page-hero__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.content-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto 82px;
  padding: clamp(30px, 5vw, 58px);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text-dark);
}

.content-panel p {
  color: var(--muted-dark);
}

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

.check-list li {
  position: relative;
  padding-left: 24px;
  color: #3f3a32;
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brand);
  content: "";
}

.contact-page {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: stretch;
  width: min(var(--max), calc(100% - 40px));
  min-height: calc(100svh - 94px);
  margin: 0 auto;
  padding: 126px 0 28px;
}

.contact-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-soft);
  box-shadow: var(--shadow);
}

.contact-card {
  padding: clamp(24px, 4vw, 40px);
}

.contact-card h1 {
  max-width: 620px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 6vw, 5.15rem);
  line-height: 0.95;
}

.contact-card p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.04rem;
}

.contact-methods {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.contact-methods a {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.contact-methods span,
.contact-methods strong {
  display: block;
}

.contact-methods span {
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-methods strong {
  margin-top: 4px;
  color: #fff;
  font-size: 1.14rem;
}

.contact-form {
  display: grid;
  gap: 11px;
  padding: clamp(20px, 3vw, 30px);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #fff;
  font-weight: 750;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 13px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font: inherit;
}

.contact-form input {
  min-height: 48px;
}

.contact-form textarea {
  min-height: 150px;
}

.contact-form .button {
  width: fit-content;
  min-width: 0;
  min-height: 44px;
  margin-top: 2px;
  padding: 0 18px;
  border-radius: var(--radius);
  font-size: 0.94rem;
  box-shadow: none;
}

.contact-form .button:disabled {
  cursor: progress;
  opacity: 0.72;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 2px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--brand-light);
  outline: 3px solid rgba(201, 121, 31, 0.22);
}

.contact-form textarea {
  resize: vertical;
}

.form-note {
  max-width: 360px;
  margin: 0;
  padding-left: 14px;
  border-left: 2px solid rgba(201, 121, 31, 0.55);
  color: rgba(247, 241, 230, 0.72);
  font-size: 0.92rem;
  line-height: 1.35;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 44px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer > p {
  justify-self: center;
  margin: 0;
}

.footer-sponsor {
  display: grid;
  gap: 2px;
  justify-self: end;
  text-align: right;
}

.footer-sponsor span {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-sponsor strong {
  color: var(--text);
  font-size: 1rem;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: none;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(16, 19, 15, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.sticky-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  font-weight: 850;
}

.sticky-cta a:first-child {
  background: var(--brand);
  color: #170e06;
}

.sticky-cta a:last-child {
  background: var(--surface);
  color: var(--text-dark);
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 18px;
    left: 18px;
    display: none;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(23, 28, 22, 0.96);
    box-shadow: var(--shadow);
  }

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

  .home-hero,
  .page-hero,
  .about-section,
  .info-box,
  .content-panel,
  .contact-page {
    grid-template-columns: 1fr;
  }

  .contact-page {
    min-height: auto;
    padding: 110px 0 44px;
  }

  .home-hero__image img {
    min-height: 440px;
  }

  .intro-grid,
  .services-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .services-page .services-grid {
    grid-template-columns: 1fr;
  }

  .services-page .page-hero h1 {
    white-space: normal;
  }

  .sticky-cta {
    display: flex;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 76px;
    padding: 14px 18px;
  }

  .home-hero,
  .section,
  .page-hero,
  .content-panel,
  .contact-page,
  .site-footer {
    width: min(100% - 28px, var(--max));
  }

  .contact-card h1 {
    font-size: 3rem;
  }

  .form-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-hero {
    padding-top: 22px;
  }

  .home-hero--cover {
    min-height: 100svh;
    margin-top: 0;
    padding: 140px 20px 64px;
    background:
      linear-gradient(90deg, rgba(16, 19, 15, 0.9) 0%, rgba(16, 19, 15, 0.68) 62%, rgba(16, 19, 15, 0.32) 100%),
      url("assets/hero-main.png") 58% center / cover no-repeat;
  }

  .home-hero--cover .home-hero__content {
    transform: translateY(18px);
  }

  .home-hero__image img {
    min-height: 360px;
  }

  h1 {
    font-size: 3.15rem;
  }

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

  .content-panel,
  .contact-card,
  .contact-form {
    padding: 24px 18px;
  }

  .site-footer {
    align-items: flex-start;
    grid-template-columns: 1fr;
    padding-bottom: 96px;
  }

  .site-footer > p,
  .footer-sponsor {
    justify-self: start;
    text-align: left;
  }

  .sticky-cta {
    right: 14px;
    left: 14px;
  }

  .sticky-cta a {
    flex: 1;
  }
}
