:root {
  --black: #0b0b0b;
  --charcoal: #171717;
  --cream: #f5f1e8;
  --white: #ffffff;
  --gold: #c9a45d;
  --muted: #6f6f6f;
  --border: rgba(0,0,0,.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--charcoal);
  background: var(--cream);
  font-family: "Libre Franklin", Arial, sans-serif;
  line-height: 1.6;
}
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: absolute;
  z-index: 20;
  top: 0; left: 0; right: 0;
  height: 106px;
  padding: 14px clamp(22px, 5vw, 78px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.brand img {
  width: 118px;
  height: 78px;
  object-fit: contain;
}
nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: white;
  font-size: .92rem;
  font-weight: 600;
}
nav a:hover { color: var(--gold); }
.nav-cta {
  border: 1px solid rgba(255,255,255,.6);
  padding: 11px 18px;
  border-radius: 999px;
}

.hero {
  min-height: 820px;
  position: relative;
  display: grid;
  align-items: center;
  background-image: url("assets/kitchen.jpeg");
  background-size: cover;
  background-position: center 58%;
  color: var(--white);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.86) 0%, rgba(0,0,0,.62) 45%, rgba(0,0,0,.22) 100%),
    linear-gradient(0deg, rgba(0,0,0,.38), transparent 45%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(780px, 90%);
  margin-left: clamp(24px, 7vw, 110px);
  padding-top: 80px;
}
.eyebrow {
  margin: 0 0 15px;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: .76rem;
}
.eyebrow.dark { color: #8a682f; }
.hero h1, h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.08;
}
.hero h1 {
  margin: 0;
  max-width: 740px;
  font-size: clamp(3.1rem, 6vw, 6.3rem);
  letter-spacing: -.035em;
}
.hero-copy {
  max-width: 680px;
  margin: 28px 0 34px;
  font-size: clamp(1rem, 1.6vw, 1.24rem);
  color: rgba(255,255,255,.88);
}
.hero-actions, .contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 4px;
  font-weight: 800;
  transition: .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  background: var(--gold);
  color: var(--black);
}
.button-secondary {
  border: 1px solid rgba(255,255,255,.72);
  color: white;
  background: rgba(0,0,0,.14);
  backdrop-filter: blur(4px);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: white;
  padding: 0 clamp(22px, 5vw, 78px);
  border-bottom: 1px solid var(--border);
}
.trust-strip div {
  padding: 28px 34px;
  border-right: 1px solid var(--border);
}
.trust-strip div:last-child { border-right: 0; }
.trust-strip strong, .trust-strip span { display: block; }
.trust-strip strong { font-size: 1rem; margin-bottom: 3px; }
.trust-strip span { color: var(--muted); font-size: .86rem; }

.section { padding: 100px clamp(22px, 6vw, 96px); }
.section-heading { max-width: 790px; margin-bottom: 48px; }
.section-heading h2, .about-copy h2, .contact-section h2 {
  margin: 0 0 20px;
  font-size: clamp(2.25rem, 4.1vw, 4.25rem);
  letter-spacing: -.025em;
}
.section-heading > p:last-child { color: var(--muted); font-size: 1.08rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.service-card {
  min-height: 265px;
  padding: 34px;
  background: white;
}
.service-card span {
  color: var(--gold);
  font-size: .79rem;
  font-weight: 800;
}
.service-card h3 { margin: 28px 0 14px; font-size: 1.25rem; }
.service-card p { margin: 0; color: var(--muted); }

.work-section { background: var(--black); color: white; }
.section-heading.light p:last-child { color: rgba(255,255,255,.7); }
.gallery {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  grid-template-rows: repeat(2, 360px);
  gap: 18px;
}
.gallery-expanded {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: 420px 350px 350px;
}
.gallery-expanded .gallery-large {
  grid-column: 1 / 3;
  grid-row: auto;
}
.gallery-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #222;
}
.gallery-large { grid-row: 1 / 3; }
.gallery-card img {
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-card:hover img { transform: scale(1.025); }
.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.78), transparent 55%);
}
.gallery-card figcaption {
  position: absolute;
  z-index: 2;
  left: 26px; right: 26px; bottom: 24px;
}
.gallery-card strong, .gallery-card span { display: block; }
.gallery-card strong { font-size: 1.16rem; }
.gallery-card span { color: rgba(255,255,255,.72); font-size: .9rem; }

.about-section {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
}
.about-copy p { color: var(--muted); }
.text-link {
  display: inline-block;
  margin-top: 16px;
  color: #7e5d25;
  font-weight: 800;
}
.about-panel {
  min-height: 430px;
  padding: 55px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(rgba(0,0,0,.25), rgba(0,0,0,.7)),
    url("assets/deck.jpeg") center/cover;
  color: white;
}
.team-panel {
  min-height: 580px;
  background:
    linear-gradient(0deg, rgba(0,0,0,.78), rgba(0,0,0,.04) 60%),
    url("assets/family-team.jpeg") center 38%/cover;
}
.team-caption { margin-top: auto; }
.about-panel p {
  margin: 0 0 20px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.16;
}
.about-panel span { color: var(--gold); font-weight: 700; }

.contact-section {
  padding: 74px clamp(22px, 6vw, 96px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: #8a682f;
  color: white;
}
.contact-section h2 { margin-bottom: 12px; }
.contact-section p:not(.eyebrow) { margin: 0; color: rgba(255,255,255,.84); }
.contact-section .eyebrow { color: #f1d59e; }
.light-button { background: white; color: var(--black); }
.button-outline-light { border: 1px solid rgba(255,255,255,.65); color: white; }

footer {
  padding: 44px clamp(22px, 6vw, 96px);
  display: grid;
  grid-template-columns: 130px 1fr auto;
  align-items: center;
  gap: 30px;
  background: #050505;
  color: rgba(255,255,255,.7);
  font-size: .86rem;
}
footer img { width: 110px; height: 76px; object-fit: contain; }
.footer-note { text-align: right; }

.mobile-call { display: none; }

@media (max-width: 920px) {
  nav a:not(.nav-cta) { display: none; }
  .hero { min-height: 720px; }
  .hero-content { margin-left: 24px; }
  .trust-strip { grid-template-columns: 1fr; padding: 0; }
  .trust-strip div { border-right: 0; border-bottom: 1px solid var(--border); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery, .gallery-expanded {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  .gallery-card { min-height: 360px; }
  .gallery-large, .gallery-expanded .gallery-large {
    grid-column: auto;
    grid-row: auto;
  }
  .about-section { grid-template-columns: 1fr; }
  .contact-section { align-items: flex-start; flex-direction: column; }
  footer { grid-template-columns: 100px 1fr; }
  .footer-note { display: none; }
}

@media (max-width: 620px) {
  .site-header { height: 86px; padding: 8px 18px; }
  .brand img { width: 92px; height: 66px; }
  .nav-cta { padding: 9px 13px; font-size: .82rem; }
  .hero { min-height: 680px; background-position: 60% center; }
  .hero-overlay {
    background: linear-gradient(90deg, rgba(0,0,0,.9), rgba(0,0,0,.5)),
                linear-gradient(0deg, rgba(0,0,0,.5), transparent);
  }
  .hero-content { width: calc(100% - 38px); margin-left: 19px; }
  .hero h1 { font-size: clamp(2.75rem, 14vw, 4.3rem); }
  .hero-actions .button { width: 100%; }
  .section { padding: 72px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .gallery, .gallery-expanded { grid-template-rows: none; }
  .gallery-card { min-height: 330px; }
  .gallery-large { min-height: 440px; }
  .about-panel { min-height: 360px; padding: 34px; }
  .contact-actions { width: 100%; }
  .contact-actions .button { width: 100%; }
  footer { grid-template-columns: 1fr; text-align: center; padding-bottom: 92px; }
  footer img { margin: auto; }
  .mobile-call {
    display: flex;
    position: fixed;
    z-index: 50;
    left: 14px; right: 14px; bottom: 14px;
    height: 54px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: var(--gold);
    color: var(--black);
    font-weight: 900;
    box-shadow: 0 10px 34px rgba(0,0,0,.28);
  }
}

.social-text-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
}
