:root {
  --navy: #1c2b3a;
  --navy-mid: #243647;
  --navy-dark: #121c26;
  --gold: #c6a35a;
  --gold-dark: #a8873f;
  --gold-soft: #e8d7a8;
  --cream: #f5f1ea;
  --paper: #faf8f4;
  --white: #ffffff;
  --ink: #1a1f26;
  --muted: #5c6773;
  --line: rgba(198, 163, 90, 0.28);
  --shadow: 0 18px 50px rgba(18, 28, 38, 0.14);
  --radius: 14px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Outfit", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }

.container { width: min(1140px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 96px 0; }
.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 10px;
}
h1, h2, h3 { font-family: "Cormorant Garamond", Georgia, serif; font-weight: 600; line-height: 1.15; }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
h3 { font-size: 1.35rem; }
.lead { font-size: 1.12rem; color: var(--muted); max-width: 640px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 14px 26px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: 0.2s ease;
}
.btn:hover { background: var(--gold-soft); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); color: var(--white); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-mid); color: var(--white); }

/* Header */
header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background 0.25s, box-shadow 0.25s;
}
header.scrolled {
  background: rgba(18, 28, 38, 0.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  height: 58px;
  width: 58px;
  object-fit: contain;
  background: #fff;
  border-radius: 50%;
  padding: 3px;
}
.brand-text { color: #fff; line-height: 1.1; }
.brand-text strong {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  font-weight: 700;
}
.brand-text span {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  color: #fff;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta { padding: 10px 18px !important; font-size: 0.85rem; }
.menu-btn {
  display: none;
  background: none;
  border: 0;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
}

/* Hero */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(18,28,38,0.55) 0%, rgba(18,28,38,0.72) 100%),
    url("images/hero-home.jpg") center/cover no-repeat;
  color: #fff;
  display: flex;
  align-items: flex-end;
  padding: 140px 0 90px;
}
.hero-inner { max-width: 760px; }
.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  margin: 8px 0 18px;
}
.hero p { font-size: 1.15rem; color: rgba(255,255,255,0.82); max-width: 540px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.badge-row { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 40px; }
.badge {
  border: 1px solid rgba(198,163,90,0.4);
  background: rgba(18,28,38,0.35);
  padding: 10px 16px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

/* Services */
.services { background: var(--white); }
.section-head { margin-bottom: 48px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 32px 28px;
  border-radius: var(--radius);
  transition: 0.25s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold); }
.card-icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  margin-bottom: 18px;
  font-size: 1.2rem;
}
.card p { color: var(--muted); margin-top: 10px; font-size: 0.98rem; }

/* About */
.about { background: var(--navy); color: #fff; }
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.about .eyebrow { color: var(--gold); }
.about p { color: rgba(255,255,255,0.78); margin: 16px 0; }
.about-photo {
  position: relative;
}
.about-photo img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
}
.license-card {
  position: absolute;
  left: -28px;
  bottom: 28px;
  background: var(--white);
  color: var(--navy);
  padding: 22px 24px;
  width: min(280px, 80%);
  box-shadow: var(--shadow);
}
.license-card small { letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-dark); font-weight: 600; font-size: 0.7rem; }
.license-card strong { display: block; font-family: "Cormorant Garamond", serif; font-size: 1.45rem; margin: 6px 0 4px; }

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}
.stat { border-top: 1px solid rgba(198,163,90,0.35); padding-top: 14px; }
.stat b {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--gold);
}
.stat span { font-size: 0.88rem; color: rgba(255,255,255,0.7); }

/* Work */
.work { background: var(--cream); }
.gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 250px 250px;
  gap: 14px;
}
.gallery figure {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin: 0;
}
.gallery figure:first-child { grid-row: 1 / 3; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: 0.4s; }
.gallery figure:hover img { transform: scale(1.05); }
.gallery figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 16px 18px;
  background: linear-gradient(transparent, rgba(18,28,38,0.82));
  color: #fff;
  font-size: 0.92rem;
}

/* Process */
.process-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.process-item { padding-right: 10px; }
.process-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
}
.process-item h3 { margin: 8px 0 8px; }
.process-item p { color: var(--muted); font-size: 0.95rem; }

/* Testimonials */
.quotes { background: var(--white); }
.quote-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
blockquote {
  background: var(--paper);
  border-left: 3px solid var(--gold);
  padding: 28px;
  color: var(--ink);
}
blockquote p { font-family: "Cormorant Garamond", serif; font-size: 1.35rem; line-height: 1.4; }
blockquote cite { display: block; margin-top: 16px; font-style: normal; color: var(--muted); font-size: 0.9rem; }

/* Contact */
.contact { background: var(--navy-dark); color: #fff; }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; }
.contact .eyebrow { color: var(--gold); }
.contact p { color: rgba(255,255,255,0.75); }
.contact-details { list-style: none; margin-top: 28px; }
.contact-details li { margin: 12px 0; color: rgba(255,255,255,0.85); }
.contact-details span { display: block; color: var(--gold); font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 2px; }

form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(198,163,90,0.22);
  padding: 28px;
  border-radius: var(--radius);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { display: block; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; margin: 12px 0 6px; color: var(--gold-soft); }
input, select, textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  padding: 12px 14px;
  border-radius: 4px;
}
textarea { min-height: 120px; resize: vertical; }
input:focus, select:focus, textarea:focus {
  outline: 1px solid var(--gold);
}
form .btn { margin-top: 18px; width: 100%; justify-content: center; }
.form-note { font-size: 0.82rem; color: rgba(255,255,255,0.55); margin-top: 10px; }
.form-success {
  display: none;
  background: rgba(198,163,90,0.12);
  border: 1px solid var(--gold);
  color: var(--gold-soft);
  padding: 16px;
  margin-top: 12px;
}

footer {
  background: #0d151c;
  color: rgba(255,255,255,0.62);
  padding: 36px 0;
  font-size: 0.88rem;
}
.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 10px; color: #fff; }
.footer-brand img { height: 42px; width: 42px; background: #fff; border-radius: 50%; padding: 2px; }

@media (max-width: 900px) {
  .menu-btn { display: block; }
  .nav-links {
    position: absolute;
    top: 84px; left: 0; right: 0;
    background: var(--navy-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px 28px;
    gap: 16px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .grid-3, .process-list, .quote-grid, .about-grid, .contact-grid, .form-row, .stats {
    grid-template-columns: 1fr;
  }
  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px 220px;
  }
  .gallery figure:first-child { grid-column: 1 / 3; grid-row: auto; }
  .about-photo img { height: 380px; }
  .license-card { left: 16px; }
  .hero { align-items: center; min-height: 92vh; }
}
@media (max-width: 560px) {
  .gallery { grid-template-columns: 1fr; grid-template-rows: none; }
  .gallery figure:first-child { grid-column: auto; }
  .gallery figure { height: 220px; }
  .section { padding: 72px 0; }
}
