:root {
  --bg: #f6f3ee;
  --surface: #ffffff;
  --ink: #1b1f23;
  --muted: #5c6166;
  --accent: #cf7a3a;
  --accent-2: #1e2f3a;
  --line: rgba(27, 31, 35, 0.14);
  --shadow: 0 20px 50px rgba(18, 22, 26, 0.12);
  --radius-lg: 26px;
  --radius-md: 16px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "DM Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 10% 10%, rgba(207, 122, 58, 0.08), transparent 40%),
    radial-gradient(circle at 90% 0%, rgba(30, 47, 58, 0.08), transparent 45%),
    var(--bg);
  line-height: 1.65;
}

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

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

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(246, 243, 238, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: var(--accent-2);
  color: #f7f2ec;
  border-radius: 14px;
  font-family: "Playfair Display", serif;
  font-weight: 700;
}

.brand-text {
  display: grid;
}

.brand-name {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brand-tag {
  font-size: 0.85rem;
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 600;
  color: var(--muted);
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  position: relative;
}

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

.site-nav a:hover::after {
  width: 100%;
}

.hero {
  padding: 90px 0 110px;
}

.hero-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}

.hero-copy h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.3rem, 3.8vw, 3.6rem);
  line-height: 1.1;
  margin: 12px 0 18px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.8rem;
  color: var(--accent-2);
  font-weight: 600;
}

.lead {
  color: var(--muted);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 26px 0 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: #fff7f0;
  box-shadow: 0 12px 30px rgba(207, 122, 58, 0.32);
}

.btn.ghost {
  border: 1px solid var(--line);
  color: var(--accent-2);
  background: rgba(255, 255, 255, 0.8);
}

.btn.small {
  padding: 8px 16px;
  border: 1px solid var(--accent-2);
  color: var(--accent-2);
  background: transparent;
}

.btn:hover {
  transform: translateY(-2px);
}

.trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.trust-value {
  display: block;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--accent-2);
}

.trust-label {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
}

.hero-media {
  position: relative;
}

.hero-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  height: 420px;
  object-fit: cover;
}

.hero-card {
  position: absolute;
  right: -20px;
  bottom: -24px;
  background: var(--surface);
  padding: 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  max-width: 260px;
}

.hero-card h2 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.hero-card-line {
  height: 1px;
  background: var(--line);
  margin: 14px 0;
}

.hero-card-note {
  color: var(--muted);
  margin: 0;
}

.section {
  padding: 90px 0;
}

.section-head {
  max-width: 560px;
  display: grid;
  gap: 10px;
}

.section-head h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin: 0;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 24px;
}

.cards {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  margin-top: 30px;
}

.card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 26px;
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(18, 22, 26, 0.08);
}

.method {
  background: #efe9e2;
}

.steps {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 30px;
}

.step {
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 22px;
  border: 1px solid var(--line);
}

.step-number {
  font-weight: 700;
  color: var(--accent);
  display: inline-block;
  margin-bottom: 10px;
}

.gallery-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 30px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--surface);
}

.gallery-item img {
  height: 230px;
  object-fit: cover;
}

.gallery-caption {
  padding: 20px;
}

.testimonials {
  background: var(--accent-2);
  color: #f7f2ec;
}

.testimonials .section-head p {
  color: rgba(247, 242, 236, 0.7);
}

.testimonials-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 30px;
}

.quote {
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.quote span {
  display: block;
  margin-top: 16px;
  color: rgba(247, 242, 236, 0.75);
  font-weight: 600;
}

.cta {
  background: #f0e1d3;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.site-footer {
  padding: 36px 0 40px;
  border-top: 1px solid var(--line);
  background: #efeae4;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.demo-flag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(207, 122, 58, 0.12);
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
}

.footer-links {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-weight: 600;
}

@media (max-width: 1000px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-media img {
    height: 360px;
  }

  .hero-card {
    position: static;
    margin-top: 16px;
  }

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

@media (max-width: 760px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero {
    padding-top: 70px;
  }
}
