/* ─── YORKSHIRE LAWN CO. — shared styles ─── */
:root {
  --ink:      #0d1409;
  --forest:   #152010;
  --moss:     #1f3018;
  --lime:     #b6e030;
  --cream:    #f0e9d6;
  --parchment:#e4d9c2;
  --muted:    #a8bfa0;
  --rule:     rgba(182,224,48,0.2);
  --serif:    'DM Serif Display', Georgia, serif;
  --sans:     'DM Sans', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--forest);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

/* ─── NAV ─── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem 3rem;
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(21,32,16,0.94);
  backdrop-filter: blur(14px);
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--cream);
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
}
.nav-logo span {
  display: inline-block;
  width: 7px; height: 7px;
  background: var(--lime);
  border-radius: 50%;
  margin-bottom: 2px;
}
.nav-cta {
  background: var(--lime);
  color: var(--ink);
  padding: 0.55rem 1.3rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.18s;
}
.nav-cta:hover { opacity: 0.82; }

/* ─── BREADCRUMB ─── */
.breadcrumb {
  padding: 0.7rem 3rem;
  font-size: 0.73rem;
  color: var(--muted);
  border-bottom: 1px solid var(--rule);
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--cream); }
.breadcrumb .sep { opacity: 0.4; }

/* ─── HERO ─── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 88vh;
  position: relative;
}
.hero-left {
  padding: 5.5rem 3rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--rule);
}
.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--lime);
  flex-shrink: 0;
}
h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 5.5vw, 6rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--cream);
}
h1 em  { font-style: italic; color: var(--lime); font-weight: 300; }
h1 strong { font-weight: 700; display: block; }

.hero-price {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-top: 1.8rem;
  background: rgba(182,224,48,0.1);
  border: 1px solid rgba(182,224,48,0.3);
  padding: 0.6rem 1.1rem;
  width: fit-content;
}
.hero-price .from { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.hero-price .amount { font-family: var(--serif); font-size: 2.4rem; font-weight: 400; color: var(--lime); line-height: 1; }
.hero-price .amount sup { font-size: 1rem; vertical-align: 0.38em; margin-right: 0.06em; }
.hero-price .per { font-size: 0.8rem; color: var(--muted); font-weight: 300; }

.hero-sub {
  margin-top: 1.6rem;
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 440px;
  font-weight: 300;
  line-height: 1.75;
}
.hero-sub strong { color: var(--cream); font-weight: 400; }

.hero-towns {
  margin-top: 2.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.7rem;
}
.town-tag {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid rgba(122,143,114,0.3);
  padding: 0.28rem 0.65rem;
  text-decoration: none;
  transition: border-color 0.18s, color 0.18s;
}
a.town-tag:hover { border-color: var(--lime); color: var(--cream); }

/* ─── FORM ─── */
.hero-right {
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--moss);
}
.form-header { margin-bottom: 1.8rem; }
.form-header h2 {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.2;
}
.form-header p {
  margin-top: 0.4rem;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 300;
}

.lead-form { display: flex; flex-direction: column; gap: 0.9rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; }

.field { display: flex; flex-direction: column; gap: 0.28rem; }
.field label {
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.field input,
.field select,
.field textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--cream);
  padding: 0.7rem 0.85rem;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.18s, background 0.18s;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  width: 100%;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a8bfa0' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2rem;
  cursor: pointer;
}
.field select option { background: var(--moss); color: var(--cream); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--lime);
  background: rgba(182,224,48,0.04);
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(240,233,214,0.22); }
.field.error input,
.field.error select { border-color: #e05050; }

.form-consent {
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.5;
}
.submit-btn {
  background: var(--lime);
  color: var(--ink);
  border: none;
  padding: 0.95rem 1.4rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.18s, transform 0.14s;
  width: 100%;
}
.submit-btn:hover { opacity: 0.85; transform: translateY(-1px); }
.submit-btn:active { transform: translateY(0); }
.submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.form-success.visible { display: flex; }
.success-icon {
  width: 52px; height: 52px;
  background: var(--lime);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.form-success h3 { font-family: var(--serif); font-size: 1.7rem; font-weight: 600; color: var(--cream); }
.form-success p { font-size: 0.88rem; color: var(--muted); max-width: 300px; font-weight: 300; }

/* ─── STRIP ─── */
.strip {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 1rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  background: rgba(0,0,0,0.18);
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 300;
  white-space: nowrap;
}
.strip-item .dot { width: 5px; height: 5px; background: var(--lime); border-radius: 50%; flex-shrink: 0; }
.strip-item strong { color: var(--cream); font-weight: 500; }

/* ─── SECTIONS ─── */
.section {
  padding: 6rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}
.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
  font-weight: 500;
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.section-label::after { content: ''; flex: 1; height: 1px; background: var(--rule); }
.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.8vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
  max-width: 680px;
  margin-bottom: 3.5rem;
}
.section-title em { font-style: italic; color: var(--lime); }

/* ─── PRICING TABLE ─── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.price-card {
  background: var(--forest);
  padding: 2rem 1.8rem;
  position: relative;
}
.price-card.featured { background: var(--moss); }
.price-card.featured::before {
  content: 'Most common';
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: var(--lime);
  color: var(--ink);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.8rem;
}
.price-card h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.3rem;
}
.price-card .size { font-size: 0.75rem; color: var(--muted); font-weight: 300; margin-bottom: 1.2rem; }
.price-card .price {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 0.2rem;
}
.price-card .price sup { font-size: 1.2rem; vertical-align: top; margin-top: 0.5rem; display: inline-block; }
.price-card .price-sub { font-size: 0.75rem; color: var(--muted); font-weight: 300; margin-bottom: 1.5rem; }
.price-card ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.price-card ul li {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 300;
  padding-left: 1.1rem;
  position: relative;
}
.price-card ul li::before { content: '→'; position: absolute; left: 0; color: var(--lime); font-size: 0.75rem; }

/* ─── STEPS ─── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
}
.step { padding: 2.5rem 2rem; border-right: 1px solid var(--rule); }
.step:last-child { border-right: none; }
.step-num {
  font-family: var(--serif);
  font-size: 4.5rem;
  font-weight: 700;
  color: rgba(182,224,48,0.1);
  line-height: 1;
  margin-bottom: 0.8rem;
  letter-spacing: -0.04em;
}
.step h3 { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; color: var(--cream); margin-bottom: 0.6rem; line-height: 1.2; }
.step p { font-size: 0.85rem; color: var(--muted); font-weight: 300; line-height: 1.7; }

/* ─── AREAS ─── */
.areas-section {
  padding: 6rem 3rem;
  background: var(--moss);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.areas-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}
.areas-copy h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 1.2rem;
}
.areas-copy h2 em { font-style: italic; color: var(--lime); }
.areas-copy p { font-size: 0.88rem; color: var(--muted); font-weight: 300; line-height: 1.8; max-width: 360px; }
.areas-copy .cta-link {
  display: inline-block;
  margin-top: 1.8rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.area-cell {
  background: var(--moss);
  padding: 1.1rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transition: background 0.2s;
  text-decoration: none;
}
.area-cell:hover { background: rgba(182,224,48,0.07); }
.area-name { font-family: var(--serif); font-size: 1rem; font-weight: 600; color: var(--cream); }
.area-postcodes { font-size: 0.65rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.area-status { font-size: 0.62rem; color: var(--lime); font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 0.15rem; }
.area-status.limited { color: #e8a030; }

/* ─── TRUST ─── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.trust-card { background: var(--forest); padding: 2rem 1.5rem; }
.trust-card .icon { font-size: 1.3rem; margin-bottom: 0.9rem; }
.trust-card h4 { font-family: var(--serif); font-size: 1.15rem; font-weight: 600; color: var(--cream); margin-bottom: 0.45rem; line-height: 1.2; }
.trust-card p { font-size: 0.8rem; color: var(--muted); font-weight: 300; line-height: 1.65; }

/* ─── REVIEWS ─── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.review-card {
  background: var(--forest);
  padding: 1.8rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.review-stars {
  color: var(--lime);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}
.review-text {
  font-size: 0.85rem;
  color: var(--cream);
  font-weight: 300;
  line-height: 1.7;
  font-style: italic;
}
.review-author {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0.04em;
}
.review-author strong { color: var(--cream); font-weight: 500; }
@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ─── FAQ ─── */
.faq-list { display: flex; flex-direction: column; border: 1px solid var(--rule); }
.faq-item {
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
}
.faq-item:last-child { border-bottom: none; }
.faq-q {
  padding: 1.4rem 1.6rem;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
  transition: background 0.18s;
}
.faq-q:hover { background: rgba(182,224,48,0.04); }
.faq-q .chevron {
  width: 18px; height: 18px; flex-shrink: 0;
  border: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: center;
  font-style: normal; font-size: 0.75rem; color: var(--lime);
  transition: transform 0.25s;
}
.faq-item.open .faq-q .chevron { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1.6rem;
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.8;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 1.4rem; }

/* ─── CTA BAND ─── */
.cta-band {
  background: var(--lime);
  padding: 5rem 3rem;
  text-align: center;
}
.cta-band h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 4.5rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.08;
  margin-bottom: 1.8rem;
}
.cta-band h2 em { font-style: italic; }
.btn-dark {
  display: inline-block;
  background: var(--ink);
  color: var(--lime);
  padding: 0.95rem 2.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.18s;
}
.btn-dark:hover { opacity: 0.78; }

/* ─── FOOTER ─── */
footer {
  padding: 2.5rem 3rem;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
}
.footer-brand { font-family: var(--serif); font-size: 1rem; font-weight: 600; color: var(--cream); margin-bottom: 0.3rem; }
.footer-copy { font-size: 0.72rem; color: var(--muted); font-weight: 300; line-height: 1.8; }
.footer-links { display: flex; gap: 1.8rem; font-size: 0.72rem; color: var(--muted); }
.footer-links a { color: inherit; text-decoration: none; }
.footer-links a:hover { color: var(--cream); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow { animation: fadeUp 0.55s ease both; animation-delay: 0.08s; }
h1            { animation: fadeUp 0.65s ease both; animation-delay: 0.18s; }
.hero-price   { animation: fadeUp 0.65s ease both; animation-delay: 0.28s; }
.hero-sub     { animation: fadeUp 0.65s ease both; animation-delay: 0.35s; }
.hero-towns   { animation: fadeUp 0.65s ease both; animation-delay: 0.45s; }
.hero-right   { animation: fadeUp 0.75s ease both; animation-delay: 0.25s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 480px) {
  .nav-cta .full { display: none; }
  .nav-cta { padding: 0.55rem 1rem; }
}

@media (max-width: 900px) {
  nav, footer { padding: 1rem 1.4rem; }
  .breadcrumb { padding: 0.6rem 1.4rem; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 3.5rem 1.4rem 2.5rem; border-right: none; border-bottom: 1px solid var(--rule); }
  .hero-right { padding: 2.5rem 1.4rem; }
  .strip { padding: 0.9rem 1.4rem; gap: 1.5rem; flex-wrap: wrap; justify-content: flex-start; }
  .section { padding: 4.5rem 1.4rem; }
  .steps { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--rule); }
  .step:last-child { border-bottom: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .areas-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-section { padding: 4.5rem 1.4rem; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .cta-band { padding: 3.5rem 1.4rem; }
  footer { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
