:root {
  --bg: #f4f6fb;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --text: #0f172a;
  --muted: #52607a;
  --line: rgba(15, 23, 42, 0.1);
  --brand: #0f4c81;
  --brand-strong: #0a2f57;
  --accent: #b9965b;
  --accent-soft: rgba(185, 150, 91, 0.16);
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.1);
  --radius: 24px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Instrument Sans", "Helvetica Neue", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(15, 76, 129, 0.12), transparent 30%),
    radial-gradient(circle at top right, rgba(185, 150, 91, 0.14), transparent 22%),
    linear-gradient(180deg, #fbfcfe 0%, var(--bg) 100%);
  min-height: 100vh;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(20px);
  background: rgba(244, 246, 251, 0.76);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
}

.brand-mark img {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.brand-name {
  line-height: 1;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 44px;
  height: 44px;
  border-radius: 12px;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  content: "";
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--text);
}

.nav-cta {
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  background: var(--brand-strong);
  color: #ffffff;
  font-weight: 700;
}

.site-nav a.nav-cta,
.site-nav a.nav-cta:hover,
.site-nav a.nav-cta.is-active {
  color: #ffffff;
}

.site-nav a.nav-cta:hover {
  background: #123d6b;
}

.hero {
  padding: 6rem 0 4rem;
}

.hero-grid,
.split-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(15, 76, 129, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 0.72rem;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(185, 150, 91, 0.12);
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  line-height: 1.02;
}

h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.2rem, 7vw, 5.7rem);
  letter-spacing: -0.03em;
}

h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4.4vw, 3.5rem);
}

h3 {
  font-size: 1.3rem;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.75;
}

.hero p {
  font-size: 1.08rem;
  max-width: 42rem;
}

.cta-row,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 52px;
  padding: 0 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  text-decoration: none;
}

.button {
  background: linear-gradient(135deg, var(--brand-strong), var(--brand));
  color: #ffffff;
  box-shadow: 0 20px 32px rgba(10, 47, 87, 0.18);
}

.button-secondary {
  background: #ffffff;
  color: var(--brand-strong);
  border-color: rgba(15, 23, 42, 0.12);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.12);
}

a.button,
a.button:hover,
a.button:visited,
a.button.is-active {
  color: #ffffff;
}

a.button-secondary,
a.button-secondary:hover,
a.button-secondary:visited,
a.button-secondary.is-active {
  color: var(--brand-strong);
}

.button:hover,
.button-secondary:hover {
  transform: translateY(-1px);
}

.button:focus-visible,
.button-secondary:focus-visible {
  outline: 3px solid rgba(185, 150, 91, 0.35);
  outline-offset: 3px;
}

.quote-card .button-secondary {
  background: #ffffff;
  color: var(--brand-strong);
  border-color: rgba(255, 255, 255, 0.9);
}

.hero-card,
.panel,
.service-card,
.stat-card,
.timeline-item,
.contact-card,
.quote-card {
  position: relative;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-card {
  padding: 2rem;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: auto -10% -30% 45%;
  height: 65%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(185, 150, 91, 0.42), transparent 70%);
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 8% 0 auto auto;
  width: 170px;
  height: 170px;
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(15, 76, 129, 0.16), rgba(15, 76, 129, 0.04));
  transform: rotate(28deg);
}

.hero-card-content {
  position: relative;
  z-index: 1;
}

.metric-grid,
.card-grid,
.feature-grid,
.stats-grid,
.timeline,
.contact-grid,
.portfolio-grid {
  display: grid;
  gap: 1.25rem;
}

.metric-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.5rem;
}

.metric {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.metric strong,
.stat-card strong {
  display: block;
  color: var(--brand-strong);
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.section {
  padding: 2.5rem 0 4.5rem;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.section-head p {
  max-width: 36rem;
}

.card-grid,
.feature-grid,
.portfolio-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.service-card,
.panel,
.quote-card,
.contact-card {
  padding: 1.6rem;
}

.split-grid > .panel,
.split-grid > .quote-card {
  height: 100%;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
}

.testimonial-card .meta-link {
  margin-top: auto;
  padding-top: 1rem;
}

.inline-highlight {
  display: inline-block;
  padding: 0.08rem 0.45rem;
  border-radius: 999px;
  background: rgba(243, 209, 132, 0.2);
  color: #fff0c4;
  font-weight: 700;
  white-space: nowrap;
}

.service-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 72px rgba(15, 23, 42, 0.12);
}

.card-kicker {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  font-weight: 700;
}

.meta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
  color: var(--brand);
  font-size: 0.95rem;
  font-weight: 600;
}

.meta-link::after {
  content: "->";
}

.quote-card .meta-link,
.quote-card .meta-link:hover,
.quote-card .meta-link:visited {
  color: #ffffff;
}

.service-link,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1rem;
  color: var(--brand);
  font-weight: 600;
}

.service-link::after,
.text-link::after {
  content: "->";
}

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

.stat-card {
  padding: 1.4rem;
}

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

.timeline-item {
  padding: 1.4rem;
}

.product-feature {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
  align-items: stretch;
}

.product-hero-card {
  padding: 2.2rem;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(8, 35, 65, 0.96), rgba(15, 76, 129, 0.84)),
    var(--surface);
  color: #ffffff;
}

.product-hero-card p,
.product-hero-card h2,
.product-hero-card h3,
.product-hero-card li {
  color: #ffffff;
}

.product-hero-card .muted-light {
  color: rgba(255, 255, 255, 0.8);
}

.product-hero-card .button-row {
  margin-top: 1.75rem;
}

.product-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.product-meta .metric {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
}

.product-meta .metric strong {
  color: #ffffff;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.product-list {
  margin: 1.25rem 0 0;
  padding-left: 1.1rem;
}

.product-list li + li {
  margin-top: 0.7rem;
}

.product-side-card {
  padding: 1.8rem;
}

.promo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 1rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #f6d58b, #e8b954);
  color: #3f2a05;
  box-shadow: 0 10px 22px rgba(232, 185, 84, 0.22);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.price-highlight {
  display: inline-flex;
  align-items: baseline;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin: 1rem 0 0.85rem;
}

.price-highlight .current-price {
  color: #ffffff;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1;
}

.price-highlight .original-price {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.2rem;
  text-decoration: line-through;
  position: relative;
  top: -0.08rem;
}

.promo-note {
  color: #f3d184;
  font-weight: 600;
}

.value-callout {
  margin: 1rem 0 0;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(243, 209, 132, 0.14);
  border: 1px solid rgba(243, 209, 132, 0.28);
  color: #fff3d1;
  font-weight: 600;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 22px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 1.4rem;
  font-weight: 700;
  color: var(--text);
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brand);
  font-size: 1.3rem;
  font-weight: 600;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 1.4rem 1.35rem;
}

.timeline-step {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--brand-strong);
  font-size: 0.88rem;
  font-weight: 700;
}

.quote-card {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(10, 47, 87, 0.95), rgba(15, 76, 129, 0.82)),
    var(--surface);
  color: #fff;
}

.quote-card p,
.quote-card h2,
.quote-card h3 {
  color: #fff;
}

.quote-card .muted-light {
  color: rgba(255, 255, 255, 0.76);
}

.contact-grid {
  grid-template-columns: 0.95fr 1.05fr;
}

.contact-card form {
  display: grid;
  gap: 1rem;
}

.contact-embed {
  overflow: hidden;
  padding: 0.75rem;
}

.contact-embed iframe {
  display: block;
  width: 100%;
  min-height: 720px;
  border: 0;
  border-radius: 18px;
  background: #ffffff;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.45rem;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
  padding: 0.95rem 1rem;
  font: inherit;
  color: var(--text);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.site-footer {
  padding: 2rem 0 3rem;
}

.footer-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 0;
  border-top: 1px solid var(--line);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--muted);
}

.page-hero {
  padding: 5rem 0 2.5rem;
}

.page-hero p {
  max-width: 46rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (max-width: 960px) {
  .hero-grid,
  .split-grid,
  .contact-grid,
  .product-feature,
  .section-head,
  .card-grid,
  .services-grid,
  .feature-grid,
  .stats-grid,
  .timeline,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    align-items: start;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: inline-block;
  }
}

@media (max-width: 680px) {
  .hero,
  .page-hero {
    padding-top: 4rem;
  }

  .form-grid,
  .metric-grid,
  .product-meta {
    grid-template-columns: 1fr;
  }

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