:root {
  --bg: #f5f1eb;
  --paper: #f9f6f1;
  --ink: #171412;
  --muted: #6f665f;
  --line: rgba(23, 20, 18, 0.12);
  --panel: #24211f;
  --panel-soft: #312d29;
  --accent: #b78a5d;
  --shadow: 0 30px 70px rgba(18, 17, 16, 0.08);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { line-height: 1.7; color: var(--muted); }

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.topline {
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  background: rgba(255,255,255,0.35);
}
.topline-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
}
.topline a { font-weight: 700; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(245,241,235,0.86);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled { border-color: var(--line); }
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.brand-text strong,
.brand-text small { display: block; }
.brand-text strong { font-size: 15px; }
.brand-text small { color: var(--muted); font-size: 12px; margin-top: 3px; }
.site-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 14px;
}
.site-nav a { position: relative; }
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--ink);
  transition: transform 0.25s ease;
}
.site-nav a:hover::after { transform: scaleX(1); }
.menu-toggle { display: none; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.button:hover { transform: translateY(-2px); }
.button-dark { background: var(--ink); color: #fff; }
.button-light { border-color: var(--line); background: rgba(255,255,255,0.5); }

.hero {
  padding: 42px 0 56px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}
.eyebrow,
.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 14px;
}
.hero h1 {
  font-size: clamp(3.3rem, 8vw, 6.2rem);
  line-height: 0.92;
  margin: 0;
  letter-spacing: -0.05em;
}
.hero h1 span {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  display: inline-block;
  letter-spacing: 0.01em;
}
.sketch-line {
  margin: 10px 0 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
}
.sketch-line svg {
  width: 180px;
  min-width: 180px;
  stroke: var(--ink);
  stroke-width: 1.4;
}
.lead { font-size: 18px; max-width: 62ch; }
.hero-actions {
  display: flex;
  gap: 14px;
  margin: 28px 0 26px;
  flex-wrap: wrap;
}
.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.hero-meta strong,
.mini-stat strong,
.review-badge strong { display: block; font-size: 18px; color: var(--ink); }
.hero-meta span,
.mini-stat span,
.review-badge span { color: var(--muted); font-size: 13px; }

.hero-visual {
  position: relative;
  min-height: 650px;
}
.hero-main-card,
.floating-card,
.project-card,
.review-photo,
.contact-media,
.service-card,
.contact-panel,
.gallery-stack,
.step {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-main-card {
  position: absolute;
  inset: 40px 40px 0 0;
  background: #ddd;
}
.hero-main-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.floating-card {
  position: absolute;
  background: #ece6df;
  padding: 10px;
}
.floating-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}
.floating-a {
  width: 230px;
  right: 0;
  bottom: 74px;
  transform: rotate(4deg);
}
.floating-b {
  width: 230px;
  left: 0;
  bottom: 0;
  transform: rotate(-4deg);
}

.logo-strip {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.35);
}
.strip-inner {
  display: flex;
  gap: 34px;
  padding: 18px 0;
  white-space: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}
.strip-inner::-webkit-scrollbar { display: none; }
.strip-inner span { color: var(--muted); font-weight: 600; }

.section { padding: 90px 0; }
.editorial-grid,
.process-grid,
.reviews-grid,
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}
.section-heading { max-width: 760px; margin-bottom: 34px; }
.section-heading h2,
.editorial-copy h2,
.process-copy h2,
.review-copy h2,
.contact-panel h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  margin: 0 0 14px;
  letter-spacing: -0.04em;
}
.feature-list {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}
.feature-list strong,
.service-card h3,
.project-card strong,
.step strong,
.footer-grid h3 { font-size: 18px; }
.feature-list p,
.service-card p,
.project-card span,
.step p { margin: 6px 0 0; }

.editorial-gallery {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 20px;
  align-items: end;
}
.gallery-stack {
  background: #e9e1d8;
}
.gallery-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-left { height: 420px; }
.gallery-right { position: relative; height: 560px; }
.mini-stat {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(249,246,241,0.92);
  backdrop-filter: blur(10px);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: rgba(255,255,255,0.5);
  padding: 28px;
  border: 1px solid rgba(23,20,18,0.06);
}

.dark-band {
  background: var(--panel);
  color: #fff;
}
.dark-band p,
.dark-band span,
.dark-band .section-kicker { color: rgba(255,255,255,0.72); }
.section-heading-light h2 { color: #fff; }
.project-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 20px;
}
.project-card {
  background: var(--panel-soft);
}
.project-card.large { grid-row: span 2; min-height: 620px; }
.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 260px;
}
.project-card figcaption {
  padding: 22px;
}
.project-card.large img { min-height: 520px; }
.project-card strong { display: block; margin-bottom: 6px; color: #fff; }

.process-steps { display: grid; gap: 16px; }
.step {
  background: rgba(255,255,255,0.5);
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  padding: 24px;
}
.step span {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-weight: 700;
}

.review-photo { position: relative; }
.review-photo img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}
.review-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  max-width: 260px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(249,246,241,0.92);
}
.review-points { display: grid; gap: 22px; margin-top: 28px; }
.review-points strong { font-size: 20px; }
.review-points p { margin: 6px 0 0; }

.contact-media,
.contact-panel { background: rgba(255,255,255,0.54); }
.contact-media img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}
.contact-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 18px;
  padding: 24px;
}
.contact-details p { margin: 0; }
.contact-panel { padding: 34px; }
.enquiry-form { margin-top: 24px; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
label span {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
}
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(23,20,18,0.12);
  background: rgba(255,255,255,0.75);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  color: var(--ink);
}
textarea { resize: vertical; min-height: 140px; }
.form-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 20px;
}
.inline-call { font-weight: 700; }

.site-footer {
  background: #1e1b19;
  color: #fff;
  padding-top: 56px;
  padding-bottom: 84px;
}
.site-footer p,
.site-footer a,
.site-footer small,
.footer-bottom span { color: rgba(255,255,255,0.72); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.8fr 0.8fr;
  gap: 28px;
}
.footer-grid a,
.footer-grid p { display: block; margin: 8px 0; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 22px;
  margin-top: 34px;
  font-size: 14px;
}

.mobile-bar {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 40;
  background: rgba(23,20,18,0.95);
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}
.mobile-bar a {
  flex: 1;
  text-align: center;
  color: #fff;
  padding: 16px 12px;
  font-weight: 700;
}
.mobile-bar a:last-child { background: rgba(255,255,255,0.08); }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-grid,
  .editorial-grid,
  .reviews-grid,
  .contact-wrap,
  .process-grid,
  .service-grid,
  .project-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual { min-height: 600px; }
  .project-card.large { grid-row: auto; min-height: auto; }
  .project-card.large img { min-height: 380px; }
  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    background: rgba(249,246,241,0.97);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 16px;
    border-radius: 20px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .site-nav.open { display: flex; }
  .menu-toggle {
    display: inline-flex;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.5);
    border-radius: 999px;
    min-height: 44px;
    padding: 0 18px;
    font: inherit;
    font-weight: 700;
  }
  .desktop-cta { display: none; }
}

@media (max-width: 760px) {
  .topline-inner,
  .nav-wrap,
  .hero-meta,
  .contact-details,
  .form-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }
  .topline-inner,
  .nav-wrap,
  .footer-bottom {
    display: flex;
  }
  .hero { padding-top: 24px; }
  .hero-visual { min-height: 430px; }
  .hero-main-card { inset: 20px 20px 0 0; }
  .floating-a, .floating-b { width: 160px; }
  .sketch-line { flex-direction: column; align-items: flex-start; }
  .gallery-left, .gallery-right, .review-photo img { height: auto; }
  .editorial-gallery { grid-template-columns: 1fr; }
  .contact-details { display: grid; }
  .section { padding: 70px 0; }
  .mobile-bar { display: flex; }
  .site-footer { padding-bottom: 118px; }
}
