:root {
  --bg: #111412;
  --bg-soft: #181c19;
  --surface: #f3eee5;
  --surface-2: #e8dfd1;
  --text: #171916;
  --muted: #6d6c66;
  --line: rgba(255, 255, 255, 0.16);
  --dark-line: rgba(17, 20, 18, 0.12);
  --accent: #c99558;
  --accent-2: #f1d4a8;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--text);
  background: var(--surface);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  padding: 18px 0;
  color: var(--white);
  transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled,
body.nav-open .site-header {
  padding: 12px 0;
  background: rgba(17, 20, 18, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 54px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent-2);
}

.logo-text {
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
}

.logo-text em {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.08em;
  font-size: 11px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 600;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 1px;
  background: var(--accent-2);
  transition: width 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
}

.phone-link {
  color: var(--accent-2);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 0.25s ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.section-dark {
  color: var(--white);
  background: var(--bg);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg,
.contact-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-bg {
  background-image: url("assets/img/photo-1600607688969-a5bfcd646154-5d85c661.jpg");
}

.hero-overlay,
.contact-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 25%, rgba(201, 149, 88, 0.24), transparent 28%),
    linear-gradient(90deg, rgba(17, 20, 18, 0.92) 0%, rgba(17, 20, 18, 0.68) 48%, rgba(17, 20, 18, 0.34) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 150px 0 82px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

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

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 880px;
  margin-bottom: 24px;
  font-size: clamp(46px, 8vw, 92px);
  line-height: 0.94;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.62;
}

.hero-cta,
.hero-metrics {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-3px);
}

.btn-primary {
  background: var(--accent);
  color: #15110d;
  box-shadow: 0 18px 40px rgba(201, 149, 88, 0.24);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--accent-2);
  box-shadow: 0 22px 48px rgba(241, 212, 168, 0.2);
}

.btn-secondary,
.btn-outline {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.btn-secondary:hover,
.btn-outline:hover,
.btn-secondary:focus-visible,
.btn-outline:focus-visible {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.14);
}

.hero-metrics {
  margin-top: 58px;
  gap: 18px;
}

.hero-metrics div {
  min-width: 170px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.hero-metrics strong {
  display: block;
  color: var(--accent-2);
  font-size: 28px;
  letter-spacing: -0.04em;
}

.hero-metrics span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.about,
.portfolio,
.process,
.faq,
.contact,
.pricing {
  padding: 112px 0;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 64px;
  align-items: center;
}

.about-copy h2,
.section-head h2,
.faq-intro h2,
.contact-copy h2 {
  margin-bottom: 20px;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1;
}

.about-copy > p:not(.eyebrow),
.section-head > p,
.faq-intro p,
.contact-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.fact-card {
  min-height: 174px;
  padding: 24px;
  border: 1px solid var(--dark-line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 16px 46px rgba(36, 29, 20, 0.05);
}

.fact-card span,
.step-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.fact-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 17px;
}

.fact-card p,
.step-card p,
.project-body p,
.price-card p,
.price-card li,
.faq-item__panel p,
.privacy-note {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.about-media {
  position: relative;
}

.about-media img {
  width: 100%;
  height: 640px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.floating-card {
  position: absolute;
  right: -24px;
  bottom: 42px;
  width: min(240px, 72%);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.14);
}

.floating-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.floating-card p {
  margin-bottom: 0;
  color: var(--text);
  font-size: 13px;
  line-height: 1.6;
}

.section-muted {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0)),
    var(--surface-2);
}

.section-head {
  max-width: 740px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-head .eyebrow {
  justify-content: center;
}

.section-head .eyebrow::after {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.section-head.compact {
  max-width: 640px;
}

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

.project-card {
  overflow: hidden;
  border: 1px solid rgba(17, 20, 18, 0.08);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 18px 46px rgba(24, 20, 15, 0.07);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.project-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 149, 88, 0.36);
  box-shadow: 0 28px 72px rgba(24, 20, 15, 0.12);
}

.project-image {
  height: 270px;
  overflow: hidden;
  background: #d6ccbd;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.08);
}

.project-body {
  padding: 24px;
}

.project-body span {
  display: block;
  margin-bottom: 11px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.project-body h3,
.step-card h3,
.price-card h3,
.lead-form h3 {
  margin-bottom: 12px;
  font-size: 22px;
  letter-spacing: -0.035em;
}

.project-body p {
  margin-bottom: 0;
}

.steps-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.step-card {
  position: relative;
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--dark-line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.62);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.step-card::after {
  content: "";
  position: absolute;
  right: 28px;
  top: 34px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 9px rgba(201, 149, 88, 0.12);
}

.step-card:hover {
  transform: translateY(-6px);
  background: #fffaf2;
  box-shadow: 0 22px 58px rgba(24, 20, 15, 0.08);
}

.pricing {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 10%, rgba(201, 149, 88, 0.22), transparent 28%),
    radial-gradient(circle at 92% 80%, rgba(241, 212, 168, 0.12), transparent 24%),
    var(--bg);
}

.section-head.light > p,
.section-head.light h2 {
  color: var(--white);
}

.section-head.light > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.66);
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 520px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.price-card:hover {
  transform: translateY(-8px);
  border-color: rgba(241, 212, 168, 0.5);
  background: rgba(255, 255, 255, 0.1);
}

.price-card.featured {
  background: linear-gradient(180deg, rgba(201, 149, 88, 0.24), rgba(255, 255, 255, 0.08));
  border-color: rgba(241, 212, 168, 0.42);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
}

.price-tag {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 24px;
  padding: 10px 14px;
  border: 1px solid rgba(241, 212, 168, 0.34);
  border-radius: 999px;
  color: var(--accent-2);
  font-size: 13px;
  font-weight: 800;
}

.price-card h3 {
  color: var(--white);
  font-size: 28px;
}

.price-card p,
.price-card li {
  color: rgba(255, 255, 255, 0.66);
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 30px;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 22px;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.price-card .btn {
  margin-top: auto;
}

.faq-layout {
  grid-template-columns: minmax(260px, 0.76fr) minmax(0, 1.24fr);
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 118px;
}

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

.faq-item {
  border: 1px solid var(--dark-line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.58);
  overflow: hidden;
}

.faq-item__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: 100%;
  padding: 24px 26px;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  font-weight: 800;
  cursor: pointer;
}

.faq-item__button span {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(201, 149, 88, 0.16);
}

.faq-item__button span::before,
.faq-item__button span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 2px;
  background: var(--accent);
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
}

.faq-item__button span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-item__button span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-item__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item__panel p {
  margin: 0;
  padding: 0 26px 24px;
}

.contact {
  position: relative;
  overflow: hidden;
}

.contact-bg {
  background-image: url("assets/img/photo-1503387762-592deb58ef4e-4ca2229d.jpg");
}

.contact-overlay {
  background:
    linear-gradient(90deg, rgba(17, 20, 18, 0.94), rgba(17, 20, 18, 0.74)),
    radial-gradient(circle at 80% 20%, rgba(201, 149, 88, 0.28), transparent 30%);
}

.contact-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.58fr);
  gap: 70px;
  align-items: center;
}

.contact-copy h2,
.contact-copy p {
  color: var(--white);
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.68);
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 36px;
}

.contact-details a,
.contact-details span {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
}

.contact-details a:first-child {
  color: var(--accent-2);
  font-size: 26px;
  letter-spacing: -0.04em;
}

.lead-form {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 85px rgba(0, 0, 0, 0.24);
}

.lead-form h3 {
  color: var(--white);
  font-size: 28px;
}

.lead-form label {
  display: block;
  margin-bottom: 16px;
}

.lead-form label span {
  display: block;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 700;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  outline: none;
  padding: 16px 17px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.lead-form textarea {
  resize: vertical;
  min-height: 118px;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.46);
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: rgba(241, 212, 168, 0.76);
  background: rgba(255, 255, 255, 0.13);
  box-shadow: 0 0 0 4px rgba(241, 212, 168, 0.1);
}

.lead-form .btn {
  width: 100%;
  margin-top: 4px;
}

.lead-form .btn:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-status {
  min-height: 24px;
  margin: 16px 0 0;
  color: var(--accent-2);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.form-status.is-error {
  color: #ffd1c7;
}

.privacy-note {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
}

.site-footer {
  padding: 34px 0;
  color: rgba(255, 255, 255, 0.72);
  background: #0b0d0c;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.footer-logo .logo-mark {
  width: 38px;
  height: 38px;
}

.footer-info {
  display: grid;
  gap: 8px;
  text-align: center;
  font-size: 13px;
}

.footer-info p,
.hosting-link {
  margin: 0;
}

.footer-info a,
.hosting-link a {
  color: var(--accent-2);
}

.hosting-link {
  font-size: 13px;
  text-align: right;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .main-nav {
    position: fixed;
    inset: 78px 20px auto 20px;
    display: grid;
    gap: 0;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    background: rgba(17, 20, 18, 0.94);
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 74px rgba(0, 0, 0, 0.32);
    opacity: 0;
    transform: translateY(-14px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

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

  .main-nav a {
    padding: 14px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 15px;
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .portfolio-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .two-column,
  .contact-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-intro {
    position: static;
  }

  .about-media img {
    height: 520px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .site-header {
    padding: 12px 0;
  }

  .phone-link {
    display: none;
  }

  .hero {
    min-height: 880px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(17, 20, 18, 0.88), rgba(17, 20, 18, 0.72));
  }

  .hero-content {
    padding: 132px 0 60px;
  }

  .hero-metrics,
  .hero-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-metrics div,
  .btn {
    width: 100%;
  }

  .about,
  .portfolio,
  .process,
  .faq,
  .contact,
  .pricing {
    padding: 76px 0;
  }

  .fact-grid,
  .portfolio-grid,
  .pricing-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .about-media img {
    height: 430px;
  }

  .floating-card {
    right: 16px;
    bottom: 16px;
  }

  .project-image {
    height: 235px;
  }

  .price-card,
  .lead-form {
    min-height: auto;
    padding: 26px;
  }

  .contact-layout {
    gap: 40px;
  }

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

  .footer-info,
  .hosting-link {
    text-align: left;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
