:root {
  --ink: #1c1917;
  --ink-soft: #3f3a35;
  --muted: #6f675e;
  --line: #e6dfd6;
  --paper: #f7f2eb;
  --white: #fffcf8;
  --accent: #c45c26;
  --accent-dark: #9c4118;
  --oak: #c4a06a;
  --footer: #14110f;
  --shadow: 0 24px 60px rgba(28, 25, 23, 0.12);
  --radius: 18px;
  --nav-h: 76px;
  --max: 1180px;
  --font: "Outfit", system-ui, sans-serif;
  --display: "Instrument Serif", Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 100;
}

.skip:focus {
  left: 1rem;
  top: 1rem;
}

.wrap {
  width: min(calc(100% - 2.5rem), var(--max));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.eyebrow::before {
  content: "";
  width: 1.6rem;
  height: 1px;
  background: var(--accent);
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 400;
  line-height: 1.1;
}

h1,
h2 {
  font-family: var(--display);
}

h2 {
  font-size: clamp(2.1rem, 4.4vw, 3.6rem);
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.2rem;
  font-weight: 600;
}

p {
  margin: 0;
}

.lede {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 38rem;
}

.section {
  padding: 5.5rem 0;
}

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

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
  background: #fff;
  color: var(--ink);
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.btn-dark:hover {
  background: #000;
}

.btn-line {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.btn-line:hover {
  border-color: var(--ink);
}

/* Nav */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}

.nav.scrolled,
.nav.open {
  background: rgba(247, 242, 235, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(28, 25, 23, 0.08);
}

.nav-inner {
  width: min(calc(100% - 2.5rem), 1280px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #fff;
  line-height: 1;
}

.nav.scrolled .logo,
.nav.open .logo {
  color: var(--ink);
}

.logo-mark {
  font-family: var(--display);
  font-size: 1.55rem;
  letter-spacing: 0.04em;
}

.logo-sub {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 0.22rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.7rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
  font-weight: 500;
}

.nav.scrolled .nav-links a,
.nav.open .nav-links a {
  color: var(--ink-soft);
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-phone {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
}

.nav.scrolled .nav-phone,
.nav.open .nav-phone {
  color: var(--ink);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  position: relative;
  transition: 0.2s ease;
}

.nav.scrolled .menu-toggle span,
.nav.scrolled .menu-toggle span::before,
.nav.scrolled .menu-toggle span::after,
.nav.open .menu-toggle span,
.nav.open .menu-toggle span::before,
.nav.open .menu-toggle span::after {
  background: var(--ink);
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle span::before {
  top: -7px;
}

.menu-toggle span::after {
  top: 7px;
}

/* Hero */
.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  align-items: end;
  color: #fff;
  isolation: isolate;
}

.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-media img {
  transform: scale(1.04);
  object-position: 70% center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(20, 17, 15, 0.28) 0%, rgba(20, 17, 15, 0.18) 35%, rgba(20, 17, 15, 0.78) 100%);
}

.hero-content {
  width: min(calc(100% - 2.5rem), var(--max));
  margin: 0 auto 5.5rem;
}

.hero h1 {
  font-size: clamp(3.1rem, 8vw, 6.4rem);
  max-width: 12ch;
  margin: 0.7rem 0 1rem;
}

.hero p {
  max-width: 34rem;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.86);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  margin-top: 2.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

/* Trust */
.trust {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 1.6rem 0;
}

.trust-item strong {
  display: block;
  font-size: 0.95rem;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.88rem;
}

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

.service-card {
  position: relative;
  min-height: 340px;
  border-radius: var(--radius);
  overflow: hidden;
  color: #fff;
  isolation: isolate;
  text-decoration: none;
}

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 0.6s ease;
}

.service-card:hover img {
  transform: scale(1.06);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(20, 17, 15, 0.05), rgba(20, 17, 15, 0.78));
}

.service-card div {
  position: absolute;
  left: 1.3rem;
  right: 1.3rem;
  bottom: 1.3rem;
}

.service-card p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  margin-top: 0.35rem;
}

/* Featured */
.featured {
  background: var(--ink);
  color: #fff;
}

.featured-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.featured-copy .eyebrow {
  color: var(--oak);
}

.featured-copy .eyebrow::before {
  background: var(--oak);
}

.featured-copy h2 {
  margin: 0.7rem 0 1rem;
}

.featured-copy p {
  color: rgba(255, 255, 255, 0.74);
  max-width: 34rem;
}

.featured-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0 1.6rem;
}

.featured-stats strong {
  display: block;
  font-family: var(--display);
  font-size: 1.8rem;
}

.featured-stats span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
}

.featured-photos {
  display: grid;
  gap: 0.8rem;
}

.featured-photos img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius);
}

.featured-photos img:last-child {
  height: 210px;
}

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.process-step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.3rem 1.6rem;
  min-height: 100%;
}

.process-num {
  font-family: var(--display);
  font-size: 2rem;
  color: var(--accent);
}

.process-step h3 {
  margin: 0.8rem 0 0.5rem;
}

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

.process-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
  margin-top: 2.4rem;
}

.process-photos figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.process-photos img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.process-photos figcaption {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  background: rgba(20, 17, 15, 0.78);
  color: #fff;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Gallery */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.4rem;
}

.filter {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink-soft);
  border-radius: 999px;
  padding: 0.5rem 0.95rem;
  font: inherit;
  font-size: 0.88rem;
  cursor: pointer;
}

.filter.active,
.filter:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  cursor: pointer;
  border: 0;
  padding: 0;
  background: #ddd;
  height: 270px;
}

.gallery-item:first-child {
  grid-column: span 2;
  height: 420px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 55%, rgba(20, 17, 15, 0.72));
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item span {
  position: absolute;
  left: 0.95rem;
  bottom: 0.9rem;
  z-index: 1;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 600;
}

.gallery-item.is-hidden {
  display: none;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 3rem;
  align-items: center;
}

.about-copy p {
  color: var(--muted);
  margin-top: 1rem;
}

.about-points {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.about-points li {
  list-style: none;
  padding-left: 1.4rem;
  position: relative;
  color: var(--ink-soft);
}

.about-points {
  margin-left: 0;
  padding: 0;
}

.about-points li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  position: absolute;
  left: 0;
  top: 0.5rem;
}

.about-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.about-photos img {
  height: 240px;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.about-photos img:first-child {
  height: 320px;
  grid-row: span 2;
}

/* Contact */
.contact {
  background: var(--white);
}

.contact-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  background: var(--ink);
  color: #fff;
  border-radius: 28px;
  overflow: hidden;
  min-height: 460px;
}

.contact-copy {
  padding: 3.2rem 3rem;
}

.contact-copy h2 {
  margin: 0.6rem 0 0.9rem;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.contact-details {
  display: grid;
  gap: 1rem;
  margin-top: 2.2rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.contact-details strong {
  display: block;
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Footer */
.site-footer {
  background: var(--footer);
  color: rgba(255, 255, 255, 0.62);
  padding: 2.4rem 0 6.5rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  flex-wrap: wrap;
}

.site-footer .logo {
  color: #fff;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
}

.site-footer small {
  display: block;
  margin-top: 0.5rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(12, 10, 9, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 80;
  padding: 2rem;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: min(92vw, 1100px);
  max-height: 82vh;
  border-radius: 12px;
}

.lightbox-caption {
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 0.95rem;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border: 0;
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.4rem;
}

.lightbox-close {
  top: 1.2rem;
  right: 1.2rem;
}

.lightbox-nav.prev {
  left: 1.2rem;
}

.lightbox-nav.next {
  right: 1.2rem;
}

/* Mobile call bar */
.callbar {
  display: none;
  position: fixed;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.8rem;
  z-index: 40;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  text-align: center;
  padding: 0.95rem 1rem;
  font-weight: 600;
  box-shadow: var(--shadow);
}

@media (max-width: 980px) {
  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav.open {
    height: auto;
  }

  .nav.open .nav-links,
  .nav.open .nav-cta {
    display: flex;
  }

  .nav.open .nav-inner {
    flex-wrap: wrap;
  }

  .nav.open .nav-links {
    flex-direction: column;
    align-items: flex-start;
    order: 3;
    width: 100%;
    background: var(--paper);
    padding: 0.4rem 0 1rem;
    gap: 0.85rem;
  }

  .nav.open .nav-cta {
    order: 4;
    width: 100%;
    padding-bottom: 1.1rem;
    background: var(--paper);
  }

  .trust-grid,
  .services-grid,
  .process-grid,
  .featured-grid,
  .about-grid,
  .contact-card,
  .gallery {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item,
  .gallery-item:first-child {
    height: 240px;
  }

  .gallery-item:first-child {
    grid-column: span 2;
  }

  .featured-photos img,
  .featured-photos img:last-child,
  .about-photos img,
  .about-photos img:first-child,
  .process-photos img {
    height: 210px;
  }

  .contact-photo {
    display: none;
  }

  .callbar {
    display: block;
  }
}

@media (max-width: 640px) {
  .trust-grid,
  .services-grid,
  .process-grid,
  .featured-grid,
  .about-grid,
  .process-photos,
  .gallery,
  .featured-stats {
    grid-template-columns: 1fr;
  }

  .section-head,
  .footer-inner {
    flex-direction: column;
    align-items: start;
  }

  .gallery,
  .gallery-item:first-child {
    grid-template-columns: 1fr;
    grid-column: span 1;
    height: 240px;
  }

  .nav.open {
    height: auto;
  }

  .hero-content {
    margin-bottom: 7rem;
  }

  .contact-copy {
    padding: 2rem 1.4rem;
  }

  .about-photos {
    display: none;
  }
}
