:root {
  --clay: #BF4A31;
  --clay-ink: #9E3A24;
  --teal: #397087;
  --teal-ink: #2C5666;
  --slate: #1F3D4A;
  --ink: #1A1E20;
  --steel: #5C6266;
  --wash: #F7E9E4;
  --mist: #BFD8D2;
  --peach: #F4C89B;
  --white: #FFFFFF;
}

@font-face {
  font-family: 'Lora';
  src: url('../fonts/lora-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lora';
  src: url('../fonts/lora-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lora';
  src: url('../fonts/lora-600-italic.woff2') format('woff2');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Work Sans';
  src: url('../fonts/work-sans-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Work Sans';
  src: url('../fonts/work-sans-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Work Sans', sans-serif;
  color: var(--ink);
  background-color: var(--white);
  font-size: 1.0625rem;
  line-height: 1.65;
}

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

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

h1, h2, h3, h4 {
  font-family: 'Lora', serif;
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(2.25rem, 5vw, 4.25rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); }

:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* Preview ribbon */
.preview-ribbon {
  background: var(--ink);
  color: var(--white);
  font-size: 0.875rem;
  padding: 8px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  text-align: center;
}
.preview-ribbon a { text-decoration: underline; font-weight: 600; }
.preview-ribbon button {
  background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; line-height: 1; padding: 0 8px;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px; left: 0;
  background: var(--clay);
  color: var(--white);
  padding: 8px; z-index: 100;
}
.skip-link:focus { top: 0; }

/* Header */
.site-header {
  padding: 16px 24px;
  border-bottom: 1px solid #EBEBEB;
  position: relative;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.2;
}
.logo-sub {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--steel);
  margin-top: 2px;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-weight: 600;
}
.nav-link:hover { color: var(--teal); }
.phone-chip {
  background: var(--clay);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.phone-chip:hover { background: var(--clay-ink); }

.mobile-menu { display: none; position: relative; }
.mobile-menu summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  cursor: pointer;
  padding: 8px 16px;
  border: 1px solid var(--steel);
  border-radius: 4px;
}
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border: 1px solid #EBEBEB;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 16px 0;
  min-width: 200px;
  z-index: 50;
  display: flex;
  flex-direction: column;
}
.mobile-menu-dropdown a {
  padding: 12px 24px;
  font-weight: 600;
}
.mobile-menu-dropdown a:hover { background: var(--wash); }

/* Mobile call bar */
.mobile-call-bar {
  display: none;
  position: sticky;
  top: 0;
  background: var(--slate);
  color: var(--white);
  padding: 12px 24px;
  justify-content: space-between;
  align-items: center;
  z-index: 40;
  font-weight: 600;
}
.call-btn {
  background: var(--clay);
  padding: 8px 16px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 899px) {
  .desktop-nav { display: none; }
  .mobile-menu { display: block; }
  .mobile-call-bar { display: flex; }
}

/* Hero */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px;
}
.hero-text { margin-bottom: 40px; }
.hero-text h1 { margin-bottom: 16px; }
.hero-sub { font-size: 1.25rem; color: var(--steel); }
.two-doors { display: flex; gap: 2px; }
.door { flex: 1; display: flex; flex-direction: column; }
.door img { width: 100%; height: 230px; object-fit: cover; }
.door-panel {
  background: var(--slate);
  color: var(--white);
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.door-label {
  color: var(--peach);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-bottom: 12px;
}
.door-line {
  font-family: 'Lora', serif;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.3;
  margin-bottom: 24px;
  flex: 1;
}
.door-cta {
  background: var(--clay);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}
.door-cta:hover { background: var(--clay-ink); }

@media (max-width: 899px) {
  .two-doors { flex-direction: column; gap: 16px; }
  .door img { height: 200px; }
}

/* Proof Strip */
.proof-strip {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
  font-weight: 600;
}
.proof-item { display: flex; align-items: center; gap: 12px; }
.proof-item svg { color: var(--teal); }

/* Landscape Department list */
.ls-list-sec {
  max-width: 1200px;
  margin: 64px auto;
  padding: 0 24px;
}
.ls-list-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
  gap: 16px;
  flex-wrap: wrap;
}
.ls-list-header a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-weight: 600;
}
.ls-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 0;
  column-gap: 64px;
}
.ls-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 600;
  border-bottom: 1px solid #EBEBEB;
  padding: 16px 0;
}
.ls-ordinal {
  color: var(--clay);
  font-family: 'Lora', serif;
  font-size: 1.25rem;
  font-weight: 700;
}
@media (max-width: 899px) {
  .ls-grid { grid-template-columns: 1fr; }
}

/* Timeline */
.timeline-sec {
  background: var(--wash);
  padding: 80px 24px;
}
.timeline-container { max-width: 1200px; margin: 0 auto; }
.timeline-intro {
  color: var(--clay-ink);
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  text-align: center;
  margin-bottom: 64px;
}
.timeline-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.timeline-item {
  border-top: 2px solid var(--teal);
  padding-top: 24px;
}
.timeline-year {
  color: var(--clay);
  font-family: 'Lora', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 16px;
}
@media (max-width: 899px) {
  .timeline-row { grid-template-columns: 1fr; }
}

/* Mosaic */
.gc-mosaic-sec {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 24px;
}
.gc-mosaic-header { margin-bottom: 40px; }
.gc-mosaic-sub {
  color: var(--steel);
  font-size: 1.125rem;
  margin-top: 8px;
}
.mosaic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.mosaic-item {
  position: relative;
  display: flex;
  flex-direction: column;
}
.mosaic-item img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}
.mosaic-label {
  background: var(--slate);
  color: var(--white);
  padding: 16px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.mosaic-item.wide { grid-column: span 2; }
.mosaic-item.narrow { grid-column: span 1; }
.mosaic-item.third { grid-column: span 1; }

@media (max-width: 899px) {
  .mosaic-grid { grid-template-columns: 1fr; }
  .mosaic-item.wide, .mosaic-item.narrow, .mosaic-item.third { grid-column: span 1; }
  .mosaic-item img { height: 240px; }
}

/* Partners */
.partners-sec {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  padding: 48px 24px;
  border-top: 1px solid #EBEBEB;
  border-bottom: 1px solid #EBEBEB;
  max-width: 1200px;
  margin: 0 auto;
}
.partners-sec img {
  max-height: 40px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.7;
}

/* Mission */
.mission-sec {
  max-width: 1000px;
  margin: 80px auto;
  padding: 24px 24px 24px 32px;
  border-left: 4px solid var(--teal);
}
.mission-quote {
  font-family: 'Lora', serif;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 24px;
}
.staff-line { color: var(--steel); font-size: 0.875rem; }

/* Contact */
.contact-sec {
  background: var(--slate);
  color: var(--white);
  padding: 80px 24px;
}
.contact-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: center;
}
.contact-info h2 { margin-bottom: 32px; }
.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-weight: 600;
  line-height: 1.4;
}
.contact-list svg { color: var(--mist); flex-shrink: 0; margin-top: 2px; }
.contact-list a:hover { color: var(--mist); }

.form-card {
  background: var(--white);
  color: var(--ink);
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.form-card h3 { margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.875rem;
}
.form-group input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
}
.form-card button {
  width: 100%;
  background: var(--clay);
  color: var(--white);
  border: none;
  padding: 16px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 8px;
}
.form-card button:hover { background: var(--clay-ink); }

@media (max-width: 899px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: var(--white);
  padding: 32px 24px;
  font-size: 0.875rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.social-links { display: flex; gap: 16px; }
.social-links a:hover { color: var(--mist); }

/* Landscape Department Deep Page */
.ld-header-band {
  background: var(--wash);
  padding: 64px 24px;
  text-align: center;
}
.ld-header-band h1 {
  margin-bottom: 16px;
}
.ld-kicker {
  font-size: 1.25rem;
  font-family: 'Lora', serif;
  font-style: italic;
  color: var(--clay-ink);
}

.process-sec {
  padding: 64px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.process-sec h2 {
  margin-bottom: 40px;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
.process-step {
  border-top: 2px solid var(--teal);
  padding-top: 16px;
}
.process-num {
  font-family: 'Lora', serif;
  font-size: 2rem;
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 8px;
}
.process-title {
  font-weight: 600;
}
.process-grid-2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-top: 48px;
  border-top: 1px solid #EBEBEB;
}

.pavers-sec {
  padding: 64px 24px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.pavers-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
  font-weight: 600;
  font-size: 1.125rem;
}
.pavers-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #EBEBEB;
  padding-bottom: 16px;
}
.pavers-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.pavers-list svg {
  color: var(--teal);
}
.pavers-img-wrap {
  position: relative;
}
.pavers-img-wrap img {
  border-radius: 8px;
  width: 100%;
  height: auto;
}
.pavers-caption {
  position: absolute;
  bottom: -20px;
  right: 20px;
  background: var(--white);
  padding: 16px 24px;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  font-weight: 600;
}

.booking-band {
  background: var(--clay);
  color: var(--white);
  padding: 48px 24px;
  text-align: center;
  margin-top: 64px;
}
.booking-band h2 {
  margin-bottom: 24px;
  color: var(--white);
}
.booking-phone {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 32px;
}
.booking-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.booking-btn-primary {
  background: var(--white);
  color: var(--clay);
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.booking-btn-secondary {
  background: var(--slate);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 899px) {
  .process-grid, .process-grid-2 { grid-template-columns: 1fr 1fr; }
  .pavers-sec { grid-template-columns: 1fr; }
  .pavers-caption { right: auto; left: 20px; }
}
@media (max-width: 599px) {
  .process-grid, .process-grid-2 { grid-template-columns: 1fr; }
}
