:root {
  --bg: #f6f4ee;
  --bg-soft: #fffdfa;
  --ink: #1b2628;
  --muted: #617172;
  --line: rgba(29, 31, 33, 0.12);
  --brand: #e07a2d;
  --brand-deep: #9f4e1b;
  --card: rgba(255, 255, 255, 0.92);
  --shadow: 0 24px 60px rgba(36, 48, 50, 0.12);
  --radius: 28px;
  --wrap: min(1160px, calc(100vw - 32px));
}

@font-face {
  font-family: "Exo 2";
  src: url("assets/fonts/exo2-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Exo 2";
  src: url("assets/fonts/exo2-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Exo 2";
  src: url("assets/fonts/exo2-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Exo 2";
  src: url("assets/fonts/exo2-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Fraunces";
  src: url("assets/fonts/fraunces-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Fraunces";
  src: url("assets/fonts/fraunces-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Exo 2", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(224, 122, 45, 0.14), transparent 28%),
    radial-gradient(circle at top right, rgba(120, 182, 177, 0.14), transparent 22%),
    linear-gradient(180deg, #fffefb 0%, var(--bg) 38%, #ffffff 100%);
}

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

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

a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 4px;
}

p {
  line-height: 1.65;
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  font-family: "Fraunces", serif;
  line-height: 1.06;
  margin: 0 0 1rem;
}

.wrap {
  width: var(--wrap);
  margin: 0 auto;
}

.site-shell {
  overflow: clip;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -64px;
  z-index: 100;
  padding: 12px 16px;
  border-radius: 14px;
  background: #ffffff;
  border: 2px solid var(--brand);
  box-shadow: var(--shadow);
  font-weight: 700;
  transition: top 160ms ease;
}

.skip-link:focus-visible {
  top: 16px;
}

.topbar {
  font-size: 0.92rem;
  color: #fff8ef;
  background: linear-gradient(90deg, #46676a 0%, #6d8c8a 100%);
}

.topbar-inner,
.footer-inner,
.nav-row,
.contact-actions,
.hero-actions,
.topbar-links,
.footer-links {
  display: flex;
  align-items: center;
}

.topbar-inner,
.footer-inner {
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
}

.topbar-links {
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links {
  gap: 18px;
  flex-wrap: wrap;
}

.masthead {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(255, 253, 248, 0.84);
  border-bottom: 1px solid rgba(29, 31, 33, 0.08);
}

.nav-row {
  justify-content: space-between;
  gap: 24px;
  min-height: 104px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 108px;
  height: 108px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.3rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.98rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 600;
}

.site-nav a {
  position: relative;
  padding: 6px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
  border-radius: 12px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  position: relative;
  padding: 34px 0 64px;
}

.hero-media {
  position: absolute;
  inset: 24px 24px auto;
  height: 520px;
  border-radius: 36px;
  background:
    linear-gradient(90deg, rgba(255, 249, 241, 0.18) 0%, rgba(255, 249, 241, 0.02) 100%),
    url("assets/images/slide_01.jpg") center/cover no-repeat;
  box-shadow: var(--shadow);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.8fr);
  gap: 28px;
  padding-top: 72px;
}

.hero-copy,
.hero-panel,
.intro-card,
.story-copy,
.trust-list,
.contact-card {
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 46px;
  color: var(--ink);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 244, 0.88));
}

.hero-copy h1 {
  max-width: 11ch;
  font-size: clamp(2.6rem, 5vw, 5.2rem);
}

.lead {
  max-width: 52ch;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-panel {
  align-self: end;
  padding: 28px;
}

.panel-kicker,
.eyebrow {
  margin-bottom: 12px;
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.bullet-list {
  margin: 0;
  padding-left: 1.2rem;
}

.bullet-list li {
  margin-bottom: 0.8rem;
  line-height: 1.5;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

main:focus {
  outline: none;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand) 0%, #df7c36 100%);
}

.button-secondary {
  border-color: rgba(29, 31, 33, 0.14);
  background: rgba(255, 255, 255, 0.92);
}

.hero-actions,
.contact-actions {
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.intro,
.services,
.story,
.projects,
.trust,
.contact,
.legal {
  padding: 72px 0;
}

.intro-grid,
.story-grid,
.trust-grid,
.contact-grid,
.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: center;
}

.intro-card,
.story-copy {
  padding: 34px;
}

.intro-image,
.story-photo {
  position: relative;
}

.intro-image::before,
.story-photo::before {
  content: "";
  position: absolute;
  inset: auto -16px -18px 18%;
  height: 48%;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(204, 97, 35, 0.18), rgba(73, 58, 31, 0.16));
  z-index: -1;
}

.intro-image img,
.story-photo img {
  width: 100%;
  border-radius: 30px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.section-head {
  max-width: 680px;
  margin-bottom: 28px;
}

.section-head h2,
.story-copy h2,
.intro-card h2,
.trust-copy h2,
.contact-copy h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.service-grid,
.project-grid {
  display: grid;
  gap: 20px;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.project-tile {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: 0 18px 46px rgba(39, 28, 16, 0.09);
}

.service-card img,
.project-tile img {
  width: 100%;
  aspect-ratio: 1.28;
  object-fit: cover;
}

.service-card div {
  padding: 22px 22px 24px;
}

.service-card h3 {
  font-size: 1.42rem;
}

.projects {
  background:
    linear-gradient(180deg, rgba(255, 251, 245, 0.3), rgba(243, 247, 246, 0.95)),
    repeating-linear-gradient(135deg, rgba(224, 122, 45, 0.04) 0 14px, rgba(255, 255, 255, 0) 14px 28px);
}

.project-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.project-tile figcaption {
  padding: 16px 18px 18px;
  font-weight: 600;
}

.trust-grid {
  align-items: start;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
}

.trust-item {
  padding: 20px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
}

.trust-item strong {
  display: block;
  margin-bottom: 12px;
  color: var(--brand);
  font-size: 1.5rem;
}

.contact-card {
  padding: 34px;
}

.hours {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.hours h4 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  font-family: "Exo 2", sans-serif;
}

.legal-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.legal {
  background: linear-gradient(180deg, rgba(246, 244, 238, 0.35), rgba(255, 255, 255, 0.96));
}

.legal-card {
  height: 100%;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.94);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.legal-card h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.contact-card h3 {
  font-size: 2rem;
}

.footer {
  padding: 22px 0 34px;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid,
  .intro-grid,
  .story-grid,
  .trust-grid,
  .contact-grid,
  .legal-grid,
  .service-grid,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    inset: 16px 16px auto;
    height: 600px;
  }

  .hero-grid {
    padding-top: 44px;
  }
}

@media (max-width: 760px) {
  .topbar-inner,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    border-radius: 24px;
    background: rgba(255, 250, 244, 0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    width: 100%;
  }

  .hero {
    padding-top: 20px;
  }

  .hero-media {
    height: 660px;
  }

  .hero-copy,
  .hero-panel,
  .intro-card,
  .story-copy,
  .contact-card {
    padding: 24px;
  }

  .trust-list {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}
