:root {
  --bg: #ffffff;
  --paper: #f7f5f1;
  --paper-strong: #ede7dc;
  --ink: #1c1d1a;
  --muted: #6d7068;
  --line: #ded8cc;
  --accent: #7a5a35;
  --accent-dark: #3d4a3a;
  --copper: #b4744f;
  --shadow: 0 24px 60px rgba(42, 35, 26, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.96)),
    url("https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?auto=format&fit=crop&w=360&q=55");
  background-attachment: fixed;
  background-repeat: repeat;
  background-size: 360px auto;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 16px clamp(20px, 4vw, 54px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(222, 216, 204, 0.72);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: var(--ink);
  color: #fff;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  font-size: 15px;
  letter-spacing: 0;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #44463f;
  font-size: 14px;
  font-weight: 650;
}

.site-nav a {
  transition: color 160ms ease;
}

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

.nav-cta {
  padding: 11px 16px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.section-band {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: min(760px, calc(100vh - 76px));
  padding: clamp(40px, 7vw, 88px) 0 clamp(28px, 5vw, 64px);
}

.hero::before {
  position: absolute;
  inset: 28px auto auto -58px;
  z-index: -1;
  width: 240px;
  height: 320px;
  background:
    linear-gradient(rgba(247, 245, 241, 0.88), rgba(247, 245, 241, 0.88)),
    url("https://images.unsplash.com/photo-1602872030490-4a484a7b3ba6?auto=format&fit=crop&w=320&q=50");
  background-repeat: repeat;
  background-size: 160px auto;
  border-radius: var(--radius);
  content: "";
}

.hero-copy h1 {
  max-width: 620px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 7vw, 92px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 570px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 21px);
}

.hero-note {
  max-width: 470px;
  margin-top: 16px !important;
  color: #3f4738 !important;
  font-size: 15px !important;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 750;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  background: var(--ink);
  color: #fff;
}

.button-secondary {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

.hero-media {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--paper);
}

.hero-media img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 900ms ease;
}

.hero-media img.is-active {
  opacity: 1;
}

.hero-media::after {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: 160px;
  height: 112px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(18px);
  content: "";
}

.carousel-dots {
  position: absolute;
  right: 32px;
  bottom: 32px;
  z-index: 2;
  display: flex;
  gap: 9px;
}

.carousel-dots button {
  width: 34px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
}

.carousel-dots button.is-active {
  background: #fff;
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto 36px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.intro-strip div {
  min-height: 128px;
  padding: 26px;
  background: var(--paper);
}

.intro-strip strong,
.intro-strip span {
  display: block;
}

.intro-strip strong {
  font-size: 15px;
}

.intro-strip span {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(62px, 8vw, 108px) 0;
}

.section-split {
  display: grid;
  grid-template-columns: minmax(240px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(34px, 5vw, 72px);
}

.section-number {
  display: block;
  margin-bottom: 18px;
  color: var(--copper);
  font-size: 13px;
  font-weight: 800;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.4vw, 58px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 20px;
  letter-spacing: 0;
}

.section-heading p,
.story-copy p,
.capability-copy p,
.process-content > p,
.project-section p,
.trust-section p,
.inquiry-copy p {
  max-width: 640px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.category-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.category-card img {
  height: 260px;
}

.category-card h3 {
  margin: 22px 22px 0;
}

.category-card p {
  min-height: 72px;
  margin: 9px 22px 22px;
  color: var(--muted);
  font-size: 14px;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
}

.story-image {
  height: 540px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.story-copy {
  padding: clamp(24px, 4vw, 52px);
  background:
    linear-gradient(rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.9)),
    url("https://images.unsplash.com/photo-1600210491892-03d54c0aaf87?auto=format&fit=crop&w=320&q=45");
  background-repeat: repeat;
  background-size: 220px auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.style-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.style-points span {
  padding: 9px 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #41443e;
  font-size: 13px;
  font-weight: 750;
}

.capability-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: stretch;
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100vw - var(--max)) / 2));
  padding-left: max(20px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(rgba(61, 74, 58, 0.93), rgba(61, 74, 58, 0.93)),
    url("https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?auto=format&fit=crop&w=420&q=45");
  background-repeat: repeat;
  background-size: 360px auto;
  color: #fff;
}

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

.capability-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.18);
}

.capability-list div {
  padding: 28px;
  background: rgba(255, 255, 255, 0.07);
}

.capability-list strong,
.capability-list span {
  display: block;
}

.capability-list span {
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.72);
}

.process-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

.process-media {
  height: 620px;
  overflow: hidden;
  border-radius: var(--radius);
}

.process-list {
  display: grid;
  gap: 18px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.process-list > li > span {
  color: var(--copper);
  font-weight: 800;
}

.process-list p {
  margin: 7px 0 0;
  color: var(--muted);
}

.project-section {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100vw - var(--max)) / 2));
  padding-left: max(20px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(rgba(247, 245, 241, 0.9), rgba(247, 245, 241, 0.95)),
    url("https://images.unsplash.com/photo-1552321554-5fefe8c9ef14?auto=format&fit=crop&w=360&q=45");
  background-repeat: repeat;
  background-size: 320px auto;
}

.compact {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(280px, 0.35fr);
  gap: 28px;
  align-items: end;
}

.compact p {
  margin-top: 0;
}

.project-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 44px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.project-row article {
  min-height: 230px;
  padding: 30px;
  background: #fff;
}

.project-row p {
  margin-top: 14px;
  font-size: 15px;
}

.trust-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.7fr);
  gap: clamp(30px, 5vw, 74px);
  align-items: start;
}

.trust-list {
  display: grid;
  gap: 14px;
}

.trust-list p {
  margin: 0;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(42, 35, 26, 0.06);
}

.inquiry-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.62fr);
  gap: clamp(34px, 5vw, 78px);
  align-items: start;
}

.inquiry-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.inquiry-form label {
  display: grid;
  gap: 7px;
  color: #3e403a;
  font-size: 13px;
  font-weight: 750;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  padding: 13px 14px;
}

.inquiry-form textarea {
  resize: vertical;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 700;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 42px clamp(20px, 4vw, 54px);
  background: var(--ink);
  color: #fff;
}

.site-footer p,
.footer-contact {
  color: rgba(255, 255, 255, 0.68);
}

.site-footer p {
  max-width: 520px;
  margin: 10px 0 0;
}

.footer-contact {
  display: grid;
  gap: 7px;
  min-width: 260px;
  text-align: right;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 700;
}

.policy-page {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 54px 0 80px;
}

.policy-page h1 {
  margin: 28px 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 500;
  line-height: 0.98;
}

.policy-page section {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.policy-page h2 {
  font-size: clamp(28px, 4vw, 38px);
}

.policy-page p {
  color: var(--muted);
}

.policy-updated {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
}

.policy-lead {
  max-width: 760px;
  margin: 0;
  color: #484b43 !important;
  font-size: clamp(18px, 2vw, 21px);
}

.policy-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 34px 0 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.policy-summary div {
  min-height: 138px;
  padding: 22px;
  background: rgba(247, 245, 241, 0.92);
}

.policy-summary strong,
.policy-summary span {
  display: block;
}

.policy-summary strong {
  color: var(--ink);
}

.policy-summary span {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.policy-back {
  display: inline-flex;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  font-weight: 750;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 75px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  .nav-cta {
    text-align: center;
  }

  .hero,
  .section-split,
  .story-section,
  .capability-band,
  .process-section,
  .compact,
  .trust-section,
  .inquiry-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media,
  .story-image,
  .process-media {
    min-height: auto;
    height: 480px;
  }

  .intro-strip,
  .project-row {
    grid-template-columns: 1fr;
  }

  .compact p {
    margin-top: 22px;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 68px;
    padding: 13px 16px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 13px;
  }

  .hero,
  .section,
  .intro-strip {
    width: calc(100% - 28px);
  }

  .hero-copy h1 {
    font-size: 44px;
  }

  .hero-media,
  .process-media {
    height: 360px;
  }

  .hero-media::after {
    display: none;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .category-card img {
    height: 225px;
  }

  .capability-band,
  .project-section {
    padding-right: 14px;
    padding-left: 14px;
  }

  .project-row article {
    min-height: 0;
  }

  .site-footer {
    display: grid;
  }

  .footer-contact {
    min-width: 0;
    text-align: left;
  }

  .footer-links {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .policy-summary {
    grid-template-columns: 1fr;
  }
}
