:root {
  --bg: #faf9f7;
  --bg-alt: #f1eeea;
  --card: #ffffff;
  --card-soft: rgba(255, 255, 255, 0.95);
  --text: #1e293b;
  --muted: #5a6578;
  --accent: #c2590a;
  --accent-soft: rgba(194, 89, 10, 0.08);
  --accent-hover: #a94b08;
  --navy: #0f2540;
  --border: rgba(0, 0, 0, 0.07);
  --shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 12px 36px rgba(0, 0, 0, 0.1);
  --max-width: 1140px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Source Sans 3", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

body::before {
  display: none;
}

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

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

/* ─── Hero ─── */
.hero {
  padding: 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 100%);
  color: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -60px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(194, 89, 10, 0.2), transparent 70%);
  z-index: 0;
}

.nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.brand {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  color: #fff;
}

.phone {
  font-weight: 700;
  color: #fff;
  background: var(--accent);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 1.1rem;
  transition: background 0.2s;
  letter-spacing: 0.02em;
}

.phone:hover {
  background: var(--accent-hover);
}

.hero-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px 20px 72px;
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 16px;
  color: #fff;
}

.eyebrow {
  color: var(--accent);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin: 0 0 12px;
}

.lead {
  color: #fff;
  font-size: 1.1rem;
  margin: 0 0 24px;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 20px rgba(194, 89, 10, 0.3);
}

.btn.primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(194, 89, 10, 0.4);
}

.btn.ghost {
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff;
  background: transparent;
}

.btn.ghost:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.05);
}

.hero-stats {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}

.hero-stats .stat {
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
}

.hero-stats .label {
  display: block;
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
}

.hero-panel {
  display: flex;
  justify-content: center;
}

.panel-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}

.panel-card h2 {
  font-family: "Playfair Display", Georgia, serif;
  margin-top: 0;
  color: #fff;
}

.panel-card p {
  color: #fff;
}

.panel-highlight {
  margin-top: 20px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(194, 89, 10, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: #fff;
}

.panel-highlight a {
  color: var(--accent);
  font-weight: 600;
}

/* ─── Sections (light bg) ─── */
.section {
  padding: 72px 20px;
  position: relative;
  z-index: 1;
}

.section:nth-of-type(even) {
  background: var(--bg-alt);
}

.section-header {
  max-width: var(--max-width);
  margin: 0 auto 36px;
}

.section-header h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin: 0 0 12px;
  color: var(--navy);
}

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

/* ─── Services ─── */
.services-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 20px 22px;
  border-radius: 14px;
  font-weight: 600;
  color: var(--navy);
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

/* ─── Gallery ─── */
.gallery-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  column-count: 3;
  column-gap: 16px;
}

.gallery-item {
  width: 100%;
  border: none;
  background: transparent;
  padding: 0;
  margin: 0 0 16px;
  cursor: pointer;
  break-inside: avoid;
  position: relative;
}

.gallery-item img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-item::after {
  content: "View";
  position: absolute;
  bottom: 16px;
  left: 16px;
  padding: 6px 12px;
  background: rgba(15, 37, 64, 0.75);
  border-radius: 999px;
  color: #fff;
  font-size: 0.8rem;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.gallery-item:hover img {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.gallery-item:hover::after {
  opacity: 1;
}

/* ─── Reviews ─── */
.reviews-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.review-card {
  background: var(--card);
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 28px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--accent);
}

.review-card h3 {
  margin-top: 0;
  color: var(--navy);
  font-size: 1rem;
}

.review-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ─── Contact ─── */
.contact {
  background: var(--bg-alt);
  color: var(--text);
}

.contact .eyebrow {
  color: var(--accent);
}

.contact h2 {
  color: var(--navy);
}

.contact .section-subtitle {
  color: var(--muted);
  font-size: 1.1rem;
}

.contact-card {
  max-width: var(--max-width);
  margin: 0 auto;
  background: var(--card);
  border-radius: 24px;
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.contact-actions {
  display: grid;
  gap: 20px;
}

.contact-meta h4 {
  margin: 0 0 6px;
  color: var(--accent);
  font-size: 1.05rem;
}

.contact-meta p {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 1.05rem;
}

/* ─── Footer ─── */
.footer {
  padding: 28px 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  border-top: 1px solid var(--border);
  color: var(--text);
  flex-wrap: wrap;
  gap: 12px;
}

.footer a {
  color: var(--accent);
  font-weight: 600;
}

/* ─── Lightbox ─── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 37, 64, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 100;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: min(960px, 92vw);
  max-height: 88vh;
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 10px 20px;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.9rem;
}

.lightbox-close:hover {
  background: var(--accent-hover);
}

/* ─── Animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .gallery-grid {
    column-count: 2;
  }
}

@media (max-width: 640px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .gallery-grid {
    column-count: 1;
  }

  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .panel-highlight {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-card {
    padding: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
  }

  .reveal {
    transition: none;
  }
}

html {
  scroll-behavior: smooth;
}

/* Services note */
.services-note {
  text-align: center;
  max-width: var(--max-width);
  margin: 2rem auto 0;
  color: var(--accent);
  font-size: 1.1rem;
  font-style: italic;
  padding: 1rem;
  border-top: 1px solid rgba(194, 89, 10, 0.2);
}

/* Reviews CTA */
.reviews-cta {
  text-align: center;
  max-width: var(--max-width);
  margin: 2rem auto 0;
}

/* About section */
.about-content {
  max-width: 720px;
  margin: 0 auto;
}

.about-content p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--muted);
  margin: 0 0 16px;
}

.about-content p:first-child {
  font-size: 1.25rem;
  color: var(--text);
  font-weight: 500;
}
