:root {
  --bg: #faf6ec;
  --bg-alt: #f1e9d6;
  --card: #ffffff;
  --text: #241f1a;
  --text-muted: #6b6258;
  --red: #a82725;
  --green: #0e4d38;
  --green-bright: #156a4d;
  --gold: #a8801f;
  --gold-bright: #8c6a16;
  --border: rgba(168, 39, 37, 0.15);
  --radius: 10px;
  --max-width: 1140px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

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

section {
  padding: 90px 0;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 14px;
  color: var(--gold-bright);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
}

.section-intro {
  max-width: 640px;
  margin: 0 auto 50px;
  text-align: center;
  color: var(--text-muted);
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 246, 236, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-link img {
  height: 144px;
  width: auto;
}

nav ul {
  display: flex;
  gap: 32px;
  list-style: none;
}

nav a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
  transition: color 0.2s;
}

nav a:hover {
  color: var(--gold-bright);
}

.nav-cta {
  background: var(--gold);
  color: #14140f;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s, transform 0.2s;
}

.nav-cta:hover {
  background: var(--gold-bright);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.6rem;
  cursor: pointer;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 180px;
  background: var(--bg);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(168, 39, 37, 0.18), transparent 40%),
    radial-gradient(circle at 80% 30%, rgba(14, 77, 56, 0.25), transparent 45%),
    var(--bg);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(2px 2px at 20% 30%, rgba(168,39,37,0.3) 1px, transparent 0),
    radial-gradient(2px 2px at 60% 70%, rgba(14,77,56,0.3) 1px, transparent 0),
    radial-gradient(2px 2px at 80% 20%, rgba(168,128,31,0.3) 1px, transparent 0),
    radial-gradient(2px 2px at 40% 80%, rgba(168,128,31,0.25) 1px, transparent 0);
  background-size: 600px 600px;
  opacity: 0.6;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
}

.hero-content {
  max-width: 680px;
}

.hero-video-box {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(36, 31, 26, 0.18);
  aspect-ratio: 9/16;
  max-width: 360px;
  margin: 0 auto;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero h1 {
  font-size: 3.2rem;
  margin-bottom: 18px;
  color: var(--text);
}

.hero h1 span {
  color: var(--gold-bright);
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 540px;
}

.btn-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.98rem;
  transition: all 0.2s;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--gold);
  color: #14140f;
}

.btn-primary:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
}

.btn-outline {
  border-color: var(--gold);
  color: var(--gold-bright);
}

.btn-outline:hover {
  background: rgba(201, 162, 39, 0.1);
}

/* Trust bar */
.trust-bar {
  background: var(--bg-alt);
  padding: 22px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-bar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.trust-bar strong {
  color: var(--gold-bright);
  display: block;
  font-size: 1.5rem;
  font-family: 'Playfair Display', serif;
}

.trust-dot {
  color: var(--gold);
  font-size: 1.2rem;
}

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

.services-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 820px;
  margin: 0 auto;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: transform 0.25s, border-color 0.25s;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--red), var(--green-bright));
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--text);
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* How it works */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  color: var(--gold-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 16px;
  font-family: 'Playfair Display', serif;
}

.step h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.step p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Gallery */
.gallery-section {
  background: var(--bg-alt);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 820px;
  margin: 0 auto;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--green), var(--bg-alt));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-placeholder {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-align: center;
  padding: 20px;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.stars {
  color: var(--gold);
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.testimonial .author {
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Quote / Contact */
.contact-section {
  background: var(--bg-alt);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-info h3 {
  margin-bottom: 12px;
  color: var(--gold-bright);
}

.contact-info p {
  color: var(--text-muted);
  margin-bottom: 22px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--text);
}

.contact-detail .icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: var(--text-muted);
}

input, select, textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 12px 14px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
}

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

button[type="submit"] {
  width: 100%;
  background: var(--gold);
  color: #14140f;
  border: none;
  padding: 14px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}

button[type="submit"]:hover {
  background: var(--gold-bright);
}

.form-success {
  display: none;
  text-align: center;
  padding: 30px;
  color: var(--gold-bright);
}

/* Footer */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 40px 0 24px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

footer .logo-link {
  justify-content: center;
  margin-bottom: 16px;
}

footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

footer .footer-links a:hover {
  color: var(--gold-bright);
}

/* Responsive */
@media (max-width: 900px) {
  .services-grid, .gallery-grid, .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-video-box {
    order: -1;
  }
}

@media (max-width: 680px) {
  nav ul, .nav-cta {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  nav.open ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-alt);
    padding: 20px 24px;
    gap: 18px;
    border-bottom: 1px solid var(--border);
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .services-grid, .gallery-grid, .testimonial-grid, .steps, .form-row {
    grid-template-columns: 1fr;
  }
  section {
    padding: 60px 0;
  }
}
