:root {
  color-scheme: light;
  --ink: #15221b;
  --muted: #65756a;
  --paper: #f7f7f2;
  --white: #ffffff;
  --green: #245d3d;
  --green-2: #6f8f4d;
  --red: #a43b3d;
  --red-dark: #7e272a;
  --gold: #c49b58;
  --charcoal: #141a16;
  --line: rgba(21, 34, 27, 0.14);
  --shadow: 0 24px 70px rgba(20, 26, 22, 0.12);
  --radius: 8px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #eaeee7;
  color: var(--ink);
}

body,
button,
input,
select,
textarea {
  font: inherit;
}

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

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

button,
select,
input,
textarea {
  border-radius: var(--radius);
}

.deck-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(220px, 360px) 1fr;
  gap: 20px;
  align-items: center;
  padding: 12px clamp(16px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

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

.deck-brand img {
  width: 70px;
  height: 46px;
  object-fit: contain;
}

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

.deck-brand strong {
  font-size: 14px;
  line-height: 1.1;
}

.deck-brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.prototype-tabs {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.prototype-tabs::-webkit-scrollbar {
  display: none;
}

.tab-button {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: #f7f7f2;
  color: #24322a;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.tab-button.is-active {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

main {
  width: min(1440px, 100%);
  margin: 0 auto;
}

.review-brief,
.concept-board {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(22px, 4vw, 52px);
  align-items: center;
  padding: clamp(34px, 6vw, 82px) clamp(18px, 5vw, 72px);
}

.review-brief h1,
.concept-board h2 {
  max-width: 780px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 6vw, 78px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0;
}

.review-brief p,
.concept-board p {
  max-width: 720px;
  color: #526358;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.65;
}

.deck-label,
.micro {
  margin: 0 0 14px;
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brief-card {
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.brief-card h2 {
  margin: 0 0 16px;
  font-size: 22px;
}

.brief-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.brief-card li {
  position: relative;
  padding-left: 22px;
  color: #4c5b51;
  line-height: 1.45;
}

.brief-card li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green-2);
  content: "";
}

.concept-board {
  padding-top: 18px;
  border-top: 1px solid rgba(21, 34, 27, 0.08);
}

.concept-board h2 {
  font-size: clamp(30px, 4vw, 52px);
}

.concept-board img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.prototype {
  display: none;
  margin: 28px clamp(12px, 2.5vw, 36px) 72px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(21, 34, 27, 0.12);
  box-shadow: 0 30px 90px rgba(20, 26, 22, 0.13);
}

.prototype.is-visible {
  display: block;
}

.site-nav {
  display: grid;
  grid-template-columns: minmax(160px, 260px) 1fr auto;
  gap: 20px;
  align-items: center;
  min-height: 86px;
  padding: 14px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid rgba(21, 34, 27, 0.1);
  background: rgba(255, 255, 255, 0.92);
}

.site-logo img {
  width: 180px;
  height: 56px;
  object-fit: contain;
}

.wordmark {
  color: var(--red-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 800;
}

.site-links {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 36px);
  color: #304038;
  font-size: 14px;
  font-weight: 750;
}

.nav-cta,
.primary-action,
.secondary-action,
.slot-button,
.request-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.nav-cta,
.primary-action,
.request-button {
  background: var(--red);
  color: var(--white);
}

.primary-action.light {
  background: #f4f1e8;
  color: #16241d;
}

.secondary-action {
  border-color: rgba(21, 34, 27, 0.18);
  background: rgba(255, 255, 255, 0.7);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  min-height: 690px;
  padding: clamp(42px, 7vw, 92px) clamp(20px, 5vw, 70px);
}

.hero-copy h2,
.booking-section h3,
.service-band h3,
.portfolio-hero h2,
.local-services h3,
.seasonal-hero h2,
.seasonal-services h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 5vw, 76px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy p,
.booking-section p,
.service-band p,
.portfolio-hero p,
.seasonal-services p {
  max-width: 630px;
  color: #536258;
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions,
.quick-steps,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 26px;
}

.trust-row span,
.quick-steps span {
  padding: 8px 12px;
  border: 1px solid rgba(36, 93, 61, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  color: #324339;
  font-size: 13px;
  font-weight: 800;
}

.estate-hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.68)),
    #edf1e9;
}

.estate-media {
  position: relative;
  min-height: 520px;
}

.hero-photo,
.floating-photo,
.booking-contact img,
.local-photo-wrap img,
.seasonal-services img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo {
  height: 500px;
  border-radius: 0 0 92px 0;
  box-shadow: var(--shadow);
}

.floating-photo {
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 48%;
  height: 250px;
  border: 10px solid var(--white);
  box-shadow: 0 22px 54px rgba(20, 26, 22, 0.2);
}

.service-band,
.booking-section,
.local-services,
.seasonal-services {
  padding: clamp(38px, 6vw, 78px) clamp(20px, 5vw, 70px);
}

.service-band {
  background: #f8faf6;
  border-top: 1px solid rgba(21, 34, 27, 0.08);
  border-bottom: 1px solid rgba(21, 34, 27, 0.08);
}

.service-band h3,
.local-services h3,
.seasonal-services h3,
.booking-section h3 {
  max-width: 760px;
  font-size: clamp(31px, 4vw, 54px);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

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

.service-grid div,
.portfolio-services div,
.route-strip div,
.plan-cards div {
  display: grid;
  gap: 8px;
  min-height: 132px;
  padding: 22px;
  border: 1px solid rgba(21, 34, 27, 0.12);
  background: var(--white);
}

.service-grid strong,
.portfolio-services strong,
.route-strip strong,
.plan-cards strong {
  font-size: 18px;
}

.service-grid span,
.portfolio-services span,
.route-strip small,
.plan-cards span {
  color: #5d6b62;
  line-height: 1.45;
}

.booking-section.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.image-proof {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  padding: 10px;
  background: #13221a;
}

.image-proof img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.booking-widget {
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(21, 34, 27, 0.13);
  box-shadow: var(--shadow);
}

.booking-card {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 3vw, 28px);
}

.booking-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(21, 34, 27, 0.1);
}

.booking-head h4 {
  margin: 0;
  font-size: 26px;
  line-height: 1.1;
}

.booking-head p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.availability-chip {
  flex: 0 0 auto;
  padding: 8px 10px;
  border-radius: var(--radius);
  background: rgba(36, 93, 61, 0.1);
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.booking-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label,
.calendar-label,
.slots-label {
  color: #3c4b42;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.field select,
.field input,
.field textarea {
  min-height: 44px;
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(21, 34, 27, 0.17);
  background: #fbfcfa;
  color: #1b2a21;
  font-size: 14px;
}

.field textarea {
  min-height: 84px;
  resize: vertical;
}

.calendar {
  display: grid;
  gap: 10px;
}

.calendar-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
}

.duration-note {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.weekday {
  color: #6c796f;
  font-size: 11px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.calendar-day {
  display: grid;
  place-items: center;
  min-height: 48px;
  border: 1px solid rgba(21, 34, 27, 0.1);
  background: #f6f8f4;
  color: #718077;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.calendar-day.has-slots {
  border-color: rgba(36, 93, 61, 0.28);
  background: rgba(36, 93, 61, 0.08);
  color: var(--green);
}

.calendar-day.is-selected {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.calendar-day small {
  display: block;
  margin-top: 2px;
  font-size: 9px;
  font-weight: 800;
}

.slot-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.slot-button {
  min-height: 38px;
  padding: 0 13px;
  border-color: rgba(21, 34, 27, 0.15);
  background: #f9faf7;
  color: #26362d;
}

.slot-button.is-selected {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
}

.booking-note {
  margin: 0;
  color: #607168;
  font-size: 13px;
  line-height: 1.45;
}

.request-button {
  width: 100%;
}

.status-line {
  margin: 0;
  color: #67766d;
  font-size: 12px;
  line-height: 1.45;
}

.theme-booking {
  background: #f6fbf7;
}

.service-nav {
  background: #f6fbf7;
}

.booking-hero {
  grid-template-columns: minmax(0, 0.85fr) minmax(390px, 1fr);
  min-height: 650px;
  align-items: start;
  background:
    linear-gradient(110deg, rgba(246, 251, 247, 0.96) 0%, rgba(246, 251, 247, 0.76) 52%, rgba(36, 93, 61, 0.16) 100%),
    url("assets/front-yard.webp") right center / 52% 100% no-repeat;
}

.booking-hero .hero-copy h2 {
  max-width: 560px;
  font-size: clamp(38px, 4vw, 62px);
  line-height: 1;
}

.hero-widget {
  align-self: center;
}

.route-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0 clamp(20px, 5vw, 70px) clamp(44px, 6vw, 72px);
}

.route-day {
  width: max-content;
  padding: 6px 9px;
  background: rgba(164, 59, 61, 0.1);
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 900;
}

.booking-contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1fr);
  gap: clamp(20px, 4vw, 48px);
  align-items: center;
  padding: clamp(38px, 6vw, 78px) clamp(20px, 5vw, 70px);
  background: var(--white);
}

.booking-contact h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1;
}

.booking-contact p {
  color: #536258;
  font-size: 18px;
  line-height: 1.6;
}

.booking-contact img {
  height: 380px;
}

.theme-portfolio {
  background: var(--charcoal);
  color: #f5f1e8;
}

.dark-nav {
  background: #101611;
  border-color: rgba(255, 255, 255, 0.12);
}

.dark-nav .wordmark,
.dark-nav .site-links {
  color: #f7f0e5;
}

.portfolio-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(380px, 1.26fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  min-height: 740px;
  padding: clamp(38px, 6vw, 78px) clamp(20px, 5vw, 70px);
}

.portfolio-hero p,
.dark-booking p {
  color: rgba(245, 241, 232, 0.76);
}

.portfolio-mosaic {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-auto-rows: 190px;
  gap: 10px;
}

.portfolio-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.portfolio-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 0 clamp(20px, 5vw, 70px) clamp(44px, 6vw, 72px);
}

.portfolio-services div {
  min-height: 140px;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.portfolio-services span {
  color: rgba(245, 241, 232, 0.7);
}

.dark-booking {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  background: #1c241d;
}

.dark-booking .micro {
  color: #e0bd78;
}

.theme-local {
  background: #fffdf8;
}

.local-nav {
  background: #fffdf8;
}

.local-hero {
  grid-template-columns: minmax(320px, 0.9fr) minmax(300px, 1fr);
  background: #fffdf8;
}

.local-photo-wrap {
  overflow: hidden;
  height: 560px;
  border-radius: 120px 120px 8px 8px;
  box-shadow: var(--shadow);
}

.owner-panel {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.owner-panel div {
  display: grid;
  gap: 4px;
  padding: 18px;
  border-left: 4px solid var(--red);
  background: #f8f3e9;
}

.owner-panel strong {
  font-size: 18px;
}

.owner-panel span {
  color: #5c665f;
}

.local-services {
  background: #f5f7f0;
}

.local-booking {
  background: #fffdf8;
}

.theme-seasonal {
  background: #f2f5ed;
}

.seasonal-nav {
  background: #f2f5ed;
}

.seasonal-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(380px, 1.14fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(42px, 7vw, 92px) clamp(20px, 5vw, 70px);
  background:
    linear-gradient(120deg, rgba(242, 245, 237, 1), rgba(242, 245, 237, 0.8)),
    url("assets/garden-bed.webp") right center / 48% 100% no-repeat;
}

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

.season-wheel div {
  min-height: 190px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(21, 34, 27, 0.12);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 44px rgba(20, 26, 22, 0.08);
}

.season-wheel strong {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
}

.season-wheel span {
  color: #59685f;
  line-height: 1.45;
}

.seasonal-services {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(300px, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  background: var(--white);
}

.seasonal-services img {
  height: 460px;
}

.plan-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.plan-cards div {
  min-height: 118px;
  padding: 18px;
  background: #f6f8f3;
}

@media (max-width: 980px) {
  .deck-header,
  .review-brief,
  .concept-board,
  .site-nav,
  .hero,
  .booking-section.split,
  .booking-hero,
  .portfolio-hero,
  .dark-booking,
  .local-hero,
  .seasonal-hero,
  .seasonal-services,
  .booking-contact {
    grid-template-columns: 1fr;
  }

  .deck-header {
    position: static;
  }

  .prototype-tabs {
    justify-content: flex-start;
  }

  .site-nav {
    gap: 14px;
  }

  .site-links {
    justify-content: flex-start;
    overflow-x: auto;
  }

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

  .hero,
  .seasonal-hero,
  .portfolio-hero {
    min-height: auto;
  }

  .estate-media,
  .local-photo-wrap {
    min-height: 0;
    height: auto;
  }

  .hero-photo,
  .local-photo-wrap img,
  .seasonal-services img,
  .booking-contact img {
    height: 360px;
  }

  .floating-photo {
    position: relative;
    right: auto;
    bottom: auto;
    width: 70%;
    height: 200px;
    margin: -70px 0 0 auto;
  }

  .service-grid,
  .service-grid.compact,
  .route-strip,
  .portfolio-services,
  .plan-cards {
    grid-template-columns: 1fr;
  }

  .portfolio-mosaic {
    grid-template-columns: 1fr 1fr;
  }

  .image-proof {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .deck-brand img {
    width: 58px;
  }

  .review-brief,
  .concept-board {
    padding-inline: 16px;
  }

  .prototype {
    margin-inline: 0;
    border-left: 0;
    border-right: 0;
  }

  .hero-copy h2,
  .portfolio-hero h2,
  .seasonal-hero h2 {
    font-size: clamp(34px, 13vw, 54px);
  }

  .site-logo img {
    width: 150px;
  }

  .booking-fields,
  .season-wheel,
  .portfolio-mosaic {
    grid-template-columns: 1fr;
  }

  .booking-head {
    display: grid;
  }

  .calendar-grid {
    gap: 4px;
  }

  .calendar-day {
    min-height: 44px;
    font-size: 12px;
  }
}
