/* =========================================================
 Holt & Thorn - Grounds & Garden Maintenance
 Fresh, clean, professional. Mobile-first.
 ========================================================= */

:root {
 --green-950: #0f2414;
 --green-900: #1a3d1f;
 --green-800: #234d28;
 --green-700: #2f6b38;
 --green-600: #3d8548;
 --green-100: #e8f0e6;
 --green-50: #f3f7f1;
 --gold: #b8922a;
 --gold-soft: #d4b45a;
 --cream: #f7f4ee;
 --cream-dark: #ebe6db;
 --ink: #1c1c1a;
 --ink-soft: #3d3d38;
 --muted: #5c5c55;
 --line: rgba(26, 61, 31, 0.12);
 --white: #ffffff;
 --shadow-sm: 0 1px 2px rgba(15, 36, 20, 0.06);
 --shadow-md: 0 8px 24px rgba(15, 36, 20, 0.08);
 --shadow-lg: 0 18px 48px rgba(15, 36, 20, 0.12);
 --radius: 12px;
 --radius-lg: 20px;
 --header-h: 76px;
 --font-display: "Outfit", system-ui, -apple-system, "Segoe UI", sans-serif;
 --font-body: "Outfit", system-ui, -apple-system, "Segoe UI", sans-serif;
 --max: 1120px;
 --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Reset / base */
*,
*::before,
*::after {
 box-sizing: border-box;
}

html {
 scroll-behavior: smooth;
 scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
 margin: 0;
 font-family: var(--font-body);
 font-size: 1.05rem;
 font-weight: 400;
 line-height: 1.65;
 color: var(--ink-soft);
 background: var(--cream);
 -webkit-font-smoothing: antialiased;
 text-rendering: optimizeLegibility;
}

img {
 max-width: 100%;
 height: auto;
 display: block;
}

a {
 color: var(--green-800);
 text-decoration-thickness: 1px;
 text-underline-offset: 0.18em;
 transition: color 0.2s var(--ease);
}

a:hover {
 color: var(--green-600);
}

h1, h2, h3, h4 {
 font-family: var(--font-display);
 color: var(--green-950);
 font-weight: 600;
 line-height: 1.18;
 letter-spacing: -0.025em;
 margin: 0 0 0.6em;
}

/* Strong, clean sans - no thin decorative serif */
h1 {
 font-size: clamp(2.1rem, 4.8vw, 3.15rem);
 font-weight: 700;
 letter-spacing: -0.03em;
 line-height: 1.12;
}
h2 {
 font-size: clamp(1.65rem, 3.2vw, 2.25rem);
 font-weight: 700;
 letter-spacing: -0.025em;
}
h3 {
 font-size: clamp(1.15rem, 2vw, 1.3rem);
 font-weight: 600;
 letter-spacing: -0.01em;
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

ul, ol { margin: 0; padding: 0; }

.container {
 width: min(100% - 2rem, var(--max));
 margin-inline: auto;
}

.skip-link {
 position: absolute;
 left: 1rem;
 top: -100px;
 z-index: 1000;
 background: var(--green-900);
 color: var(--white);
 padding: 0.65rem 1rem;
 border-radius: 8px;
 text-decoration: none;
}

.skip-link:focus {
 top: 1rem;
}

/* Buttons */
.btn {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 gap: 0.5rem;
 font-family: var(--font-body);
 font-size: 0.95rem;
 font-weight: 600;
 line-height: 1;
 text-decoration: none;
 border-radius: 999px;
 border: 2px solid transparent;
 padding: 0.85rem 1.4rem;
 cursor: pointer;
 transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }

.btn-primary {
 background: var(--green-800);
 color: #ffffff;
 border-color: var(--green-800);
 box-shadow: var(--shadow-sm);
 /* iOS Safari: stop auto darkening / low-contrast link styles */
 -webkit-text-fill-color: #ffffff;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:visited {
 background: var(--green-700);
 border-color: var(--green-700);
 color: #ffffff;
 -webkit-text-fill-color: #ffffff;
 box-shadow: var(--shadow-md);
}

.btn-ghost {
 background: transparent;
 color: var(--white);
 border-color: rgba(255, 255, 255, 0.55);
}

.btn-ghost:hover {
 background: rgba(255, 255, 255, 0.12);
 color: var(--white);
 border-color: var(--white);
}

.btn-outline {
 background: transparent;
 color: var(--green-800);
 border-color: var(--green-800);
}

.btn-outline:hover {
 background: var(--green-800);
 color: var(--white);
}

.btn-lg {
 padding: 1rem 1.65rem;
 font-size: 1rem;
}

.btn-block {
 width: 100%;
}

.btn-nav {
 padding: 0.7rem 1.15rem;
 font-size: 0.9rem;
}

/* ========== Header ========== */
.site-header {
 position: sticky;
 top: 0;
 z-index: 100;
 height: var(--header-h);
 background: rgba(247, 244, 238, 0.92);
 backdrop-filter: blur(12px);
 -webkit-backdrop-filter: blur(12px);
 border-bottom: 1px solid transparent;
 transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.site-header.is-scrolled {
 border-bottom-color: var(--line);
 box-shadow: var(--shadow-sm);
}

.header-inner {
 height: 100%;
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 1rem;
}

.brand {
 display: flex;
 align-items: center;
 text-decoration: none;
 flex-shrink: 0;
}

.brand-logo {
 width: auto;
 height: 58px;
 object-fit: contain;
 border-radius: 10px;
 background: #000;
}

.site-nav {
 display: flex;
 align-items: center;
 gap: 1.75rem;
}

.site-nav ul {
 display: flex;
 align-items: center;
 gap: 0.15rem 1.35rem;
 list-style: none;
}

.site-nav a {
 font-size: 0.92rem;
 font-weight: 500;
 color: var(--ink-soft);
 text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
 color: var(--green-800);
}

.site-nav a.is-active {
 color: var(--green-800);
}

.nav-toggle {
 display: none;
 flex-direction: column;
 justify-content: center;
 gap: 5px;
 width: 44px;
 height: 44px;
 padding: 10px;
 border: none;
 background: transparent;
 cursor: pointer;
 border-radius: 8px;
}

.nav-toggle-bar {
 display: block;
 height: 2px;
 width: 100%;
 background: var(--green-900);
 border-radius: 2px;
 transition: transform 0.25s var(--ease), opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
 transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
 opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
 transform: translateY(-7px) rotate(-45deg);
}

/* ========== Hero ========== */
.hero {
 position: relative;
 min-height: min(88vh, 760px);
 display: flex;
 align-items: flex-end;
 color: var(--white);
 overflow: hidden;
}

.hero-media {
 position: absolute;
 inset: 0;
}

.hero-media img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 object-position: center 40%;
}

.hero-overlay {
 position: absolute;
 inset: 0;
 background:
 linear-gradient(100deg, rgba(15, 36, 20, 0.88) 0%, rgba(15, 36, 20, 0.62) 48%, rgba(15, 36, 20, 0.35) 100%),
 linear-gradient(to top, rgba(15, 36, 20, 0.55) 0%, transparent 45%);
}

.hero-content {
 position: relative;
 z-index: 1;
 padding: 4.5rem 0 3.75rem;
 max-width: 38rem;
 margin-left: max(1rem, calc((100% - var(--max)) / 2));
 margin-right: auto;
 width: min(100% - 2rem, 38rem);
}

.hero h1 {
 color: var(--white);
 margin-bottom: 0.85rem;
 font-size: unset;
 font-weight: unset;
 letter-spacing: unset;
 line-height: unset;
}

.hero-name {
 display: block;
 font-size: clamp(2.75rem, 7.5vw, 4.55rem);
 font-weight: 800;
 letter-spacing: -0.04em;
 line-height: 0.98;
 margin-bottom: 0.5rem;
}

.hero-tagline {
 display: block;
 font-size: clamp(1.2rem, 2.6vw, 1.7rem);
 font-weight: 600;
 letter-spacing: -0.025em;
 line-height: 1.25;
 color: rgba(255, 255, 255, 0.94);
 text-wrap: balance;
}

.hero-lead {
 font-size: 1.12rem;
 font-weight: 300;
 line-height: 1.6;
 color: rgba(255, 255, 255, 0.9);
 margin-bottom: 1.75rem;
 max-width: 32rem;
}

.hero-actions {
 display: flex;
 flex-wrap: wrap;
 gap: 0.75rem;
 margin-bottom: 2rem;
}

/* ========== Sections ========== */
.section {
 padding: 5rem 0;
}

.section-intro {
 max-width: 38rem;
 margin-bottom: 2.75rem;
}

.section-intro-centre {
 text-align: center;
 margin-inline: auto;
}

.section-lead {
 font-size: 1.08rem;
 color: var(--muted);
}

/* ========== Services ========== */
.services {
 background: var(--white);
}

.service-grid {
 display: grid;
 grid-template-columns: 1fr;
 gap: 1.35rem;
}

.service-card {
 background: var(--cream);
 border-radius: var(--radius-lg);
 overflow: hidden;
 border: 1px solid var(--line);
 box-shadow: var(--shadow-sm);
 transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.service-card:hover {
 transform: translateY(-3px);
 box-shadow: var(--shadow-md);
}

.service-card-img {
 aspect-ratio: 16 / 10;
 overflow: hidden;
 background: var(--green-100);
}

.service-card-img img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 transition: transform 0.5s var(--ease);
}

.service-card:hover .service-card-img img {
 transform: scale(1.04);
}

.service-card-body {
 padding: 1.35rem 1.4rem 1.55rem;
}

.service-card-body h3 {
 margin-bottom: 0.4rem;
 color: var(--green-900);
}

.service-card-body p {
 font-size: 0.98rem;
 color: var(--muted);
 margin: 0;
}

/* ========== About ========== */
.about {
 background: var(--cream);
}

.about-grid {
 display: grid;
 gap: 2.5rem;
 align-items: center;
}

.about-copy p {
 color: var(--ink-soft);
}

.about-media {
 position: relative;
}

.about-media img {
 width: 100%;
 border-radius: var(--radius-lg);
 aspect-ratio: 4 / 5;
 object-fit: cover;
 box-shadow: var(--shadow-lg);
}

.about-badge {
 position: absolute;
 left: 1rem;
 bottom: 1rem;
 background: var(--white);
 padding: 1rem 1.25rem;
 border-radius: var(--radius);
 box-shadow: var(--shadow-md);
 border-left: 3px solid var(--gold);
}

.about-badge-label {
 display: block;
 font-size: 0.72rem;
 font-weight: 600;
 letter-spacing: 0.12em;
 text-transform: uppercase;
 color: var(--muted);
}

.about-badge-place {
 display: block;
 font-family: var(--font-body);
 font-size: 1.35rem;
 font-weight: 700;
 color: var(--green-900);
 line-height: 1.1;
 letter-spacing: -0.02em;
 margin-top: 0.15rem;
}

/* ========== How it works ========== */
.how {
 background: var(--green-900);
 color: rgba(255, 255, 255, 0.88);
}

.how h2 {
 color: var(--white);
}

.how .section-lead {
 color: rgba(255, 255, 255, 0.72);
}

.steps {
 list-style: none;
 display: grid;
 gap: 1.25rem;
 counter-reset: none;
}

.step {
 padding: 1.1rem 0 0.35rem;
 border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.step h3 {
 color: var(--white);
 margin-bottom: 0.4rem;
}

.step p {
 font-size: 0.98rem;
 color: rgba(255, 255, 255, 0.7);
 margin: 0;
}

/* ========== Areas ========== */
.areas {
 background: var(--green-50);
 padding: 4.25rem 0;
}

.areas-inner {
 display: grid;
 gap: 2rem;
 align-items: start;
}

.areas-list {
 list-style: none;
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 0.65rem;
}

.areas-list li {
 background: var(--white);
 border: 1px solid var(--line);
 border-radius: 10px;
 padding: 0.85rem 1rem;
 font-size: 0.95rem;
 font-weight: 500;
 color: var(--green-900);
}

/* ========== Contact ========== */
.contact {
 background: var(--white);
}

.contact-grid {
 display: grid;
 gap: 2.25rem;
 align-items: start;
}

.contact-details {
 margin: 1.75rem 0 0;
 display: grid;
 gap: 1.1rem;
}

.contact-details div {
 padding-bottom: 1rem;
 border-bottom: 1px solid var(--line);
}

.contact-details div:last-child {
 border-bottom: none;
 padding-bottom: 0;
}

.contact-details dt {
 font-size: 0.75rem;
 font-weight: 600;
 letter-spacing: 0.12em;
 text-transform: uppercase;
 color: var(--muted);
 margin-bottom: 0.25rem;
}

.contact-details dd {
 margin: 0;
 font-size: 1.05rem;
 font-weight: 500;
 color: var(--green-900);
}

.contact-details a {
 text-decoration: none;
 color: var(--green-900);
}

.contact-details a:hover {
 color: var(--green-600);
 text-decoration: underline;
}

.contact-card {
 background: var(--cream);
 border: 1px solid var(--line);
 border-radius: var(--radius-lg);
 padding: 1.85rem 1.6rem;
 box-shadow: var(--shadow-md);
}

.contact-card h3 {
 font-family: var(--font-body);
 font-size: 1.45rem;
 font-weight: 700;
 letter-spacing: -0.02em;
 margin-bottom: 0.5rem;
}

.contact-card > p {
 color: var(--muted);
 margin-bottom: 1.35rem;
}

.contact-or {
 text-align: center;
 font-size: 0.85rem;
 color: var(--muted);
 margin: 1rem 0 0.75rem !important;
 text-transform: lowercase;
}

/* ========== Footer ========== */
.site-footer {
 background: var(--green-950);
 color: rgba(255, 255, 255, 0.72);
 padding: 3rem 0 1.5rem;
}

.footer-grid {
 display: grid;
 gap: 2rem;
 margin-bottom: 2.25rem;
}

.footer-logo {
 height: 72px;
 width: auto;
 margin-bottom: 0.75rem;
 border-radius: 10px;
 background: #000;
}

.footer-brand p {
 font-size: 0.95rem;
 max-width: 18rem;
}

.footer-heading {
 font-size: 0.75rem;
 font-weight: 600;
 letter-spacing: 0.12em;
 text-transform: uppercase;
 color: var(--gold-soft);
 margin: 0 0 0.85rem;
}

.footer-links ul,
.footer-contact ul {
 list-style: none;
 display: grid;
 gap: 0.45rem;
}

.site-footer a {
 color: rgba(255, 255, 255, 0.78);
 text-decoration: none;
 font-size: 0.95rem;
}

.site-footer a:hover {
 color: var(--white);
}

.footer-bottom {
 display: flex;
 flex-wrap: wrap;
 justify-content: space-between;
 gap: 0.75rem 1.5rem;
 padding-top: 1.35rem;
 border-top: 1px solid rgba(255, 255, 255, 0.1);
 font-size: 0.88rem;
}

.footer-bottom p {
 margin: 0;
}

.footer-bottom-only {
 margin-top: 0;
 border-top: none;
 padding-top: 0;
}

/* ========== Privacy / legal page ========== */
.page-legal .site-header {
 border-bottom-color: var(--line);
}

.legal-main {
 padding: 3.5rem 0 4.5rem;
 background: var(--white);
 min-height: 60vh;
}

.legal-wrap {
 max-width: 720px;
}

.legal-wrap h1 {
 margin-bottom: 0.35rem;
}

.legal-updated {
 color: var(--muted);
 font-size: 0.95rem;
 margin-bottom: 2rem;
}

.legal-content h2 {
 font-size: 1.1rem;
 font-weight: 700;
 letter-spacing: -0.015em;
 margin-top: 2rem;
 margin-bottom: 0.65rem;
 color: var(--green-900);
}

.legal-content ul {
 padding-left: 1.25rem;
 margin: 0 0 1em;
}

.legal-content li {
 margin-bottom: 0.4rem;
}

.legal-back {
 margin-top: 2.5rem;
 padding-top: 1.5rem;
 border-top: 1px solid var(--line);
}

.legal-back a {
 font-weight: 600;
 text-decoration: none;
}

.legal-back a:hover {
 text-decoration: underline;
}

/* ========== Responsive ========== */
@media (min-width: 640px) {
 .service-grid {
 grid-template-columns: repeat(2, 1fr);
 }

 .steps {
 grid-template-columns: repeat(2, 1fr);
 }
}

@media (min-width: 900px) {
 :root {
 --header-h: 82px;
 }

 .brand-logo {
 height: 64px;
 }

 .service-grid {
 grid-template-columns: repeat(3, 1fr);
 }

 .about-grid {
 grid-template-columns: 1.05fr 0.95fr;
 gap: 3.5rem;
 }

 .areas-inner {
 grid-template-columns: 1.1fr 1fr;
 gap: 3rem;
 align-items: center;
 }

 .areas-list {
 grid-template-columns: 1fr 1fr;
 }

 .contact-grid {
 grid-template-columns: 1.1fr 0.9fr;
 gap: 3rem;
 }

 .footer-grid {
 grid-template-columns: 1.4fr 1fr 1fr;
 }

 .steps {
 grid-template-columns: repeat(4, 1fr);
 gap: 1rem;
 }

 .step {
 padding: 1.35rem 1.15rem 1.45rem;
 }

 .hero {
 align-items: center;
 }

 .hero-content {
 padding: 6rem 0 5rem;
 }
}

/* Mobile nav */
@media (max-width: 899px) {
 .nav-toggle {
 display: flex;
 z-index: 120;
 }

 .site-nav {
 position: fixed;
 inset: 0 0 auto 0;
 top: var(--header-h);
 flex-direction: column;
 align-items: stretch;
 gap: 0;
 padding: 1rem 1.25rem 1.5rem;
 background: var(--cream);
 border-bottom: 1px solid var(--line);
 box-shadow: var(--shadow-md);
 transform: translateY(-120%);
 opacity: 0;
 visibility: hidden;
 transition: transform 0.3s var(--ease), opacity 0.25s var(--ease), visibility 0.3s;
 }

 .site-nav.is-open {
 transform: translateY(0);
 opacity: 1;
 visibility: visible;
 }

 .site-nav ul {
 flex-direction: column;
 align-items: stretch;
 gap: 0;
 }

 .site-nav ul a {
 display: block;
 padding: 0.9rem 0.25rem;
 font-size: 1.05rem;
 border-bottom: 1px solid var(--line);
 }

 .site-nav .btn-nav {
 margin-top: 1rem;
 width: 100%;
 }

 .hero {
 min-height: min(82vh, 640px);
 }

 .hero-content {
 padding: 3.25rem 0 2.75rem;
 }

 .section {
 padding: 3.75rem 0;
 }
}

@media (max-width: 480px) {
 .hero-actions {
 flex-direction: column;
 }

 .hero-actions .btn {
 width: 100%;
 }

 .areas-list {
 grid-template-columns: 1fr;
 }

 .footer-bottom {
 flex-direction: column;
 }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
 html { scroll-behavior: auto; }
 *, *::before, *::after {
 animation-duration: 0.01ms !important;
 transition-duration: 0.01ms !important;
 }
}

/* Focus visible */
:focus-visible {
 outline: 2px solid var(--gold);
 outline-offset: 3px;
}

.btn:focus-visible {
 outline-offset: 3px;
}
