/* Henry's Landscaping — luxury demo
   Palette: black / white / gold */

:root {
  --black: #0a0a0a;
  --black-soft: #141414;
  --charcoal: #1c1c1c;
  --gray-900: #222;
  --gray-700: #4a4a4a;
  --gray-500: #7a7a7a;
  --gray-200: #e8e6e1;
  --cream: #f7f5f0;
  --white: #ffffff;
  --gold: #c9a227;
  --gold-light: #e0c35c;
  --gold-dark: #9a7b1a;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Outfit", system-ui, -apple-system, sans-serif;
  --radius: 4px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  --max: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  color: var(--black);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
  color: var(--gold-dark);
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.25rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.35rem; }

p { margin: 0 0 1em; }

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

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.75rem;
}

.stars {
  color: var(--gold);
  letter-spacing: 0.08em;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.2s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
  color: inherit;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 45%, var(--gold-dark));
  color: var(--black);
  border-color: var(--gold-dark);
}

.btn--gold:hover {
  filter: brightness(1.05);
  color: var(--black);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn--outline-light:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.btn--sm {
  padding: 0.55rem 1rem;
  font-size: 0.75rem;
}

/* ========== GATE ========== */
.gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background:
    linear-gradient(160deg, rgba(10, 10, 10, 0.92), rgba(20, 20, 20, 0.88)),
    url("https://images.unsplash.com/photo-1558904541-efa843a96f01?auto=format&fit=crop&w=1920&q=80") center / cover no-repeat;
  padding: 1.5rem;
}

.gate[hidden] {
  display: none;
}

.gate__panel {
  width: min(100%, 420px);
  background: var(--black);
  border: 1px solid rgba(201, 162, 39, 0.45);
  box-shadow: var(--shadow), 0 0 0 1px rgba(255, 255, 255, 0.04);
  padding: 2.75rem 2rem 2rem;
  text-align: center;
  color: var(--white);
}

.gate__eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1rem;
}

.gate__title {
  font-size: 2.4rem;
  color: var(--white);
  margin: 0 0 0.35rem;
}

.gate__sub {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  margin: 0;
}

.gate__rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem auto;
}

.gate__form {
  display: grid;
  gap: 0.75rem;
}

.gate__form input {
  width: 100%;
  padding: 0.95rem 1rem;
  background: var(--charcoal);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-family: var(--sans);
  font-size: 1rem;
  text-align: center;
  letter-spacing: 0.2em;
  border-radius: var(--radius);
  outline: none;
}

.gate__form input:focus {
  border-color: var(--gold);
}

.gate__form input::placeholder {
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.35);
}

.gate__error {
  color: #e8a0a0;
  font-size: 0.85rem;
  margin: 0.75rem 0 0;
}

.gate__note {
  margin: 1.5rem 0 0;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

/* Site unlock */
.site[hidden] {
  display: none;
}

body.is-unlocked .gate {
  display: none;
}

body.is-unlocked .site {
  display: block;
}

/* ========== HEADER ========== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 162, 39, 0.25);
  color: var(--white);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0.85rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  min-width: 0;
}

.logo:hover { color: var(--white); }

.logo__mark {
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--serif);
  font-weight: 700;
  font-size: 0.95rem;
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  min-width: 0;
}

.logo__text strong {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
}

.logo__text small {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav {
  display: none;
  gap: 1.25rem;
  margin-left: auto;
  font-size: 0.85rem;
  font-weight: 500;
}

.nav a {
  color: rgba(255, 255, 255, 0.75);
}

.nav a:hover {
  color: var(--gold-light);
}

.header__phone {
  display: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gold-light);
  white-space: nowrap;
}

.header__phone:hover {
  color: var(--gold);
}

.header__cta {
  margin-left: auto;
}

@media (min-width: 900px) {
  .nav { display: flex; }
  .header__phone { display: inline; }
  .header__cta { margin-left: 0; }
  .logo__text small { white-space: normal; }
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    url("https://images.unsplash.com/photo-1558904541-efa843a96f01?auto=format&fit=crop&w=2000&q=80")
    center / cover no-repeat;
  transform: scale(1.02);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(10, 10, 10, 0.88) 0%, rgba(10, 10, 10, 0.55) 55%, rgba(10, 10, 10, 0.35) 100%),
    linear-gradient(to top, rgba(10, 10, 10, 0.75), transparent 45%);
}

.hero__content {
  position: relative;
  padding: 5rem 0 4rem;
  max-width: 720px;
  margin-left: max(1rem, calc((100% - var(--max)) / 2));
  margin-right: auto;
  width: min(100% - 2rem, 720px);
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 400;
}

.hero__lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 34rem;
  margin-bottom: 1.75rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

/* ========== TRUST BAR ========== */
.trust-bar {
  background: var(--black);
  color: var(--white);
  border-top: 1px solid rgba(201, 162, 39, 0.35);
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  padding: 1.75rem 0;
  text-align: center;
}

@media (min-width: 720px) {
  .trust-bar__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-bar__value {
  display: block;
  font-family: var(--serif);
  font-size: 1.65rem;
  color: var(--gold);
  margin-bottom: 0.2rem;
}

.trust-bar__label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

/* ========== SECTIONS ========== */
.section {
  padding: 5rem 0;
}

.section--dark {
  background: var(--black-soft);
  color: var(--white);
}

.section--dark .section__intro {
  color: rgba(255, 255, 255, 0.65);
}

.section__head {
  max-width: 36rem;
  margin-bottom: 2.75rem;
}

.section__intro {
  color: var(--gray-700);
  font-size: 1.05rem;
  margin: 0;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 600px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 1.5rem 1.35rem;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.service-card:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.service-card__icon {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

.service-card p {
  color: var(--gray-700);
  font-size: 0.95rem;
  margin: 0;
}

/* Pillars */
.pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

@media (min-width: 700px) {
  .pillars {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .pillars {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pillar {
  border: 1px solid rgba(201, 162, 39, 0.25);
  background: rgba(255, 255, 255, 0.02);
  padding: 1.5rem;
}

.pillar__num {
  display: block;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.pillar h3 {
  color: var(--white);
  margin-bottom: 0.4rem;
}

.pillar p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  margin: 0;
}

.process {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2.5rem;
}

.process__title {
  font-family: var(--serif);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--gold-light);
}

.process__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

@media (min-width: 800px) {
  .process__steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

.process__steps li {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.1rem 1rem;
  background: rgba(201, 162, 39, 0.08);
  border-left: 2px solid var(--gold);
}

.process__steps strong {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--white);
}

.process__steps span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Reviews */
.reviews {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 800px) {
  .reviews {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews .review:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 36rem;
    justify-self: center;
  }
}

.review {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.review__stars {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

.review__text {
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.45;
  color: var(--gray-900);
  margin: 0;
  flex: 1;
}

.review__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--gray-200);
  font-size: 0.85rem;
}

.review__name {
  font-weight: 600;
  color: var(--black);
}

.review__date {
  color: var(--gray-500);
}

.review__source {
  margin-left: auto;
  color: var(--gold-dark);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* CTA band */
.cta-band {
  background:
    linear-gradient(120deg, rgba(10, 10, 10, 0.88), rgba(10, 10, 10, 0.7)),
    url("https://images.unsplash.com/photo-1585320806297-9794b3e4eeae?auto=format&fit=crop&w=1800&q=80")
    center / cover no-repeat;
  color: var(--white);
  padding: 4rem 0;
}

.cta-band__inner {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  align-items: flex-start;
}

@media (min-width: 800px) {
  .cta-band__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.cta-band h2 {
  margin-bottom: 0.4rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  max-width: 28rem;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* Contact */
.section--contact {
  background: var(--cream);
}

.contact {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 860px) {
  .contact {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: start;
  }
}

.contact__list {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.contact__list li {
  display: grid;
  gap: 0.15rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-200);
}

.contact__list span:first-child {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-500);
}

.contact__list a {
  color: var(--black);
  font-weight: 500;
  border-bottom: 1px solid transparent;
}

.contact__list a:hover {
  color: var(--gold-dark);
  border-bottom-color: var(--gold);
}

.contact__form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 1.75rem;
  display: grid;
  gap: 1rem;
}

.contact__form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gray-700);
}

.contact__form input,
.contact__form textarea {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  color: var(--black);
  background: var(--cream);
  outline: none;
  resize: vertical;
}

.contact__form input:focus,
.contact__form textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}

.form-note {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin: 0;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 400;
}

.form-note a {
  color: var(--gold-dark);
  font-weight: 500;
}

.form-thanks {
  margin: 0;
  padding: 0.75rem;
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.35);
  color: var(--black);
  font-size: 0.9rem;
}

/* Footer */
.footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.65);
  padding: 2.5rem 0;
  border-top: 1px solid rgba(201, 162, 39, 0.3);
  font-size: 0.9rem;
}

.footer__inner {
  display: grid;
  gap: 1.25rem;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.footer__brand strong {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--white);
  font-weight: 600;
}

.footer__disclaimer {
  max-width: 48rem;
  line-height: 1.55;
  margin: 0;
}

.footer__disclaimer a {
  color: var(--gold-light);
}

.footer__disclaimer a:hover {
  color: var(--gold);
}

.footer__copy {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}
