:root {
  --orange: #f47b20;
  --orange-dark: #c94f12;
  --charcoal: #171411;
  --ink: #241d18;
  --muted: #74685f;
  --cream: #fff7ed;
  --paper: #fffdf8;
  --line: #ead9ca;
  --white: #ffffff;
  --shadow: 0 28px 80px rgba(36, 29, 24, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 54px);
  background: rgba(255, 253, 248, 0.88);
  border-bottom: 1px solid rgba(234, 217, 202, 0.8);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
}

.nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.nav a,
.nav-call {
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 850;
  padding: 10px 14px;
}

.nav a:hover,
.nav-call {
  background: var(--charcoal);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: calc(100vh - 75px);
  display: grid;
  grid-template-columns: 1fr minmax(340px, 0.82fr);
  background: var(--charcoal);
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  min-height: 680px;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.02);
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 7vw, 92px);
  background:
    linear-gradient(135deg, rgba(244, 123, 32, 0.2), transparent 40%),
    var(--charcoal);
}

.kicker {
  margin: 0 0 18px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 850px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 6.9vw, 6.8rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.91;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 4.5vw, 5rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.95;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  font-weight: 950;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.08rem, 1.7vw, 1.32rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 0;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-weight: 950;
  padding: 13px 22px;
  box-shadow: 0 18px 36px rgba(244, 123, 32, 0.28);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.hero-strip {
  position: absolute;
  left: 50%;
  bottom: 28px;
  display: flex;
  max-width: min(920px, calc(100% - 36px));
  transform: translateX(-50%);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.hero-strip span {
  padding: 13px 18px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 850;
  white-space: nowrap;
}

.hero-strip span + span {
  border-left: 1px solid var(--line);
}

.section {
  padding: clamp(76px, 9vw, 128px) clamp(18px, 4vw, 54px);
  scroll-margin-top: 86px;
}

.section-lead {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-lead.wide {
  max-width: 980px;
}

.intro {
  background: var(--paper);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-list article {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  padding: 28px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-list article:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-list span {
  color: var(--orange);
  font-size: 0.9rem;
  font-weight: 950;
}

.service-list p,
.story-copy p,
.season-grid span,
.quote p,
.footer p {
  color: var(--muted);
}

.split-story {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: clamp(36px, 6vw, 88px);
  background: var(--cream);
}

.story-copy ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.story-copy li {
  border-left: 5px solid var(--orange);
  background: var(--white);
  padding: 13px 16px;
  font-weight: 850;
}

.story-images {
  position: relative;
  min-height: 560px;
}

.story-images img {
  position: absolute;
  width: 68%;
  height: 420px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.story-images img:first-child {
  top: 0;
  left: 0;
}

.story-images img:last-child {
  right: 0;
  bottom: 0;
  border: 10px solid var(--cream);
}

.work {
  background: var(--charcoal);
  color: var(--white);
}

.work .section-lead p:not(.kicker) {
  color: rgba(255, 255, 255, 0.7);
}

.work-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  grid-auto-rows: 250px;
  gap: 16px;
}

.work-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.work-grid img:first-child {
  grid-row: span 2;
}

.work-grid img:last-child {
  grid-column: span 2;
}

.seasonal {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 22px;
  background: var(--orange);
}

.seasonal-panel {
  border-radius: 30px;
  background: var(--paper);
  padding: clamp(34px, 6vw, 70px);
}

.seasonal > img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  border-radius: 30px;
}

.season-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 32px;
}

.season-grid div {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  padding: 20px;
}

.season-grid strong,
.season-grid span {
  display: block;
}

.season-grid strong {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.quote {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: clamp(32px, 6vw, 82px);
  align-items: start;
  background: var(--paper);
}

.big-phone {
  display: inline-block;
  margin-top: 16px;
  color: var(--orange-dark);
  font-size: clamp(2rem, 4vw, 4.4rem);
  font-weight: 950;
  line-height: 1;
}

form {
  display: grid;
  gap: 14px;
  border-radius: 30px;
  background: var(--charcoal);
  padding: clamp(24px, 4vw, 42px);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 850;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font: inherit;
  padding: 15px 16px;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 32px clamp(18px, 4vw, 54px);
  background: var(--charcoal);
  color: var(--white);
}

.footer p {
  max-width: 720px;
  margin: 0;
}

.footer a {
  color: var(--orange);
  font-weight: 950;
}

@media (max-width: 980px) {
  .site-header,
  .hero,
  .split-story,
  .seasonal,
  .quote {
    grid-template-columns: 1fr;
  }

  .site-header {
    position: static;
  }

  .nav {
    justify-content: flex-start;
  }

  .hero-media {
    min-height: 430px;
  }

  .hero-strip {
    position: static;
    max-width: none;
    transform: none;
    border-radius: 0;
    overflow-x: auto;
  }

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

  .seasonal > img {
    min-height: 360px;
  }
}

@media (max-width: 680px) {
  .site-header {
    gap: 14px;
  }

  .nav-call {
    width: max-content;
  }

  h1 {
    font-size: 3.1rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .service-list,
  .season-grid,
  .work-grid {
    grid-template-columns: 1fr;
  }

  .service-list article {
    min-height: 230px;
  }

  .story-images {
    min-height: 0;
  }

  .story-images img {
    position: static;
    width: 100%;
    height: 280px;
    margin-bottom: 14px;
    border: 0;
  }

  .work-grid {
    grid-auto-rows: 230px;
  }

  .work-grid img:first-child,
  .work-grid img:last-child {
    grid-row: auto;
    grid-column: auto;
  }

  .footer {
    display: grid;
  }
}
