@import url('https://fonts.googleapis.com/css2?family=Anonymous+Pro:wght@400;700&family=Playfair+Display:wght@700&family=Source+Serif+Pro:wght@400;600;700&display=swap');

:root {
 --primary-green: #1B5E20;
 --primary-blue: #0D47A1;
 --accent-gold: #FFB300;
 --neutral-grey: #78909C;
 --bg-light: #F5F5F5;
 --text-dark: #212121;
 --text-light: #616161;
 --bg-white: #FFFFFF;
 --border-color: #E0E0E0;

 --font-title: 'Playfair Display', serif;
 --font-body: 'Source Serif Pro', serif;
 --font-label: 'Anonymous Pro', monospace;

 --radius-sm: 4px;
 --radius-md: 8px;
 --radius-lg: 16px;
 --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
 --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
 --shadow-lg: 0 10px 30px rgba(0,0,0,0.1);
 --transition: all 0.3s ease-in-out;
}

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

html {
 scroll-behavior: smooth;
 font-size: 16px;
}

body {
 font-family: var(--font-body);
 font-size: clamp(1.0rem, 1.5vw, 1.125rem); /* 18px base */
 line-height: 1.87;
 color: var(--text-dark);
 background-color: var(--bg-white);
 -webkit-font-smoothing: antialiased;
 overflow-x: hidden;
}

.container {
 max-width: 1250px;
 margin-left: auto;
 margin-right: auto;
 padding-left: 1rem;
 padding-right: 1rem;
}

h1, h2, h3, h4, h5, h6 {
 font-family: var(--font-title);
 line-height: 1.2;
 color: var(--text-dark);
}
h1 { font-size: clamp(2.5rem, 5vw, 3rem); } /* 48px base */
h2 { font-size: clamp(2rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }

p {
 margin-bottom: 1.5rem;
}

a {
 color: var(--primary-blue);
 text-decoration: none;
 transition: var(--transition);
}

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

img {
 max-width: 100%;
 height: auto;
 display: block;
 border-radius: var(--radius-md);
}

/* Header & Navigation */
.header {
 position: fixed;
 top: 0;
 left: 0;
 right: 0;
 z-index: 1000;
 background: rgba(255,255,255,0.8);
 backdrop-filter: blur(10px);
 border-bottom: 1px solid var(--border-color);
 transition: var(--transition);
}
.header.scrolled {
 background: rgba(255,255,255,0.95);
 box-shadow: var(--shadow-md);
}
.nav {
 display: flex;
 justify-content: space-between;
 align-items: center;
 height: 80px;
}
.nav-logo {
 font-family: var(--font-label);
 font-weight: 700;
 font-size: 1.2rem;
 color: var(--text-dark);
}
.nav-links {
 display: flex;
 align-items: center;
 gap: 2rem;
 list-style: none;
}
.nav-links a {
 color: var(--text-dark);
 font-family: var(--font-body);
 font-weight: 600;
 padding-bottom: 5px;
 position: relative;
}
.nav-links a:not(.nav-cta)::after {
 content: '';
 position: absolute;
 bottom: 0;
 left: 0;
 width: 0;
 height: 2px;
 background-color: var(--accent-gold);
 transition: var(--transition);
}
.nav-links a:not(.nav-cta):hover::after,
.nav-links a.active:not(.nav-cta)::after {
 width: 100%;
}
.nav-cta {
 background-color: var(--primary-green);
 color: var(--bg-white) !important;
 padding: 0.6rem 1.2rem;
 border-radius: 50px;
 transition: var(--transition);
}
.nav-cta:hover {
 background-color: var(--accent-gold);
 color: var(--text-dark) !important;
 transform: translateY(-2px);
}
.nav-toggle { display: none; }

/* Hero Section */
.hero {
 position: relative;
 min-height: 90vh;
 display: flex;
 align-items: center;
 justify-content: center;
 text-align: center;
 color: var(--bg-white);
 background-size: cover;
 background-position: center;
 padding: 4rem 1rem;
}
.hero::before {
 content: '';
 position: absolute;
 inset: 0;
 background: linear-gradient(to bottom, rgba(27, 94, 32, 0.6), rgba(13, 71, 161, 0.7));
}
.hero-content {
 position: relative;
 z-index: 2;
 max-width: 800px;
}
.hero-subheading {
 font-family: var(--font-label);
 text-transform: uppercase;
 letter-spacing: 2px;
 font-size: 1rem;
}
.hero-title {
 font-size: clamp(3rem, 6vw, 4.5rem);
 margin: 1rem 0;
 color: var(--bg-white);
}
.hero-text {
 font-size: 1.25rem;
 max-width: 650px;
 margin: 0 auto 2rem;
 color: rgba(255, 255, 255, 0.9);
}
.hero-stats {
 display: flex;
 justify-content: center;
 gap: 3rem;
 margin-top: 3rem;
 font-family: var(--font-label);
}
.stat-item {
 text-align: center;
}
.stat-number {
 font-size: 2.5rem;
 font-weight: 700;
 color: var(--accent-gold);
}
.stat-label {
 font-size: 0.9rem;
 text-transform: uppercase;
 letter-spacing: 1px;
}

/* Page Hero */
.hero-page {
 position: relative;
 min-height: 50vh;
 display: flex;
 align-items: center;
 justify-content: center;
 text-align: center;
 color: var(--bg-white);
 background-size: cover;
 background-position: center;
}
.hero-page::before {
 content: '';
 position: absolute;
 inset: 0;
 background: linear-gradient(to bottom, rgba(27, 94, 32, 0.5), rgba(13, 71, 161, 0.6));
}

/* Sections */
.section {
 padding-block: clamp(4rem, 8vw, 6rem);
}
.bg-light { background-color: var(--bg-light); }
.bg-pattern {
 background-color: var(--bg-light);
 background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23B0BEC5' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.section-header {
 text-align: center;
 max-width: 750px;
 margin: 0 auto 3rem;
}
.section-label {
 display: inline-block;
 font-family: var(--font-label);
 font-weight: 700;
 color: var(--primary-green);
 background-color: rgba(255, 179, 0, 0.2);
 padding: 0.4rem 1rem;
 border-radius: 50px;
 margin-bottom: 1rem;
 text-transform: uppercase;
 font-size: 0.8rem;
 letter-spacing: 1px;
}
.section-title {
 margin-bottom: 1rem;
}
.section-subtitle {
 font-size: 1.2rem;
 color: var(--text-light);
 line-height: 1.7;
}
.grid-3 {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
 gap: 2rem;
}

/* Cards */
.card-link { display: block; }
.card {
 background-color: var(--bg-white);
 border-radius: var(--radius-md);
 box-shadow: var(--shadow-md);
 overflow: hidden;
 transition: var(--transition);
 border: 1px solid var(--border-color);
 display: flex;
 flex-direction: column;
 height: 100%;
}
.card:hover {
 transform: translateY(-8px);
 box-shadow: var(--shadow-lg);
}
.card-image {
 width: 100%;
 height: 220px;
 object-fit: cover;
 border-radius: 0;
}
.card-body {
 padding: 1.5rem;
 flex-grow: 1;
 display: flex;
 flex-direction: column;
}
.card-title {
 margin-bottom: 0.5rem;
}
.card-text {
 color: var(--text-light);
 flex-grow: 1;
}
.card-cta {
 margin-top: 1rem;
 font-family: var(--font-label);
 font-weight: 700;
 color: var(--primary-blue);
}
.card-cta:hover {
 color: var(--accent-gold);
}

/* Interactive Map */
.interactive-map-container {
 text-align: center;
}
.map-title { margin-bottom: 0.5rem; }
.map-subtitle { margin-bottom: 2rem; color: var(--text-light); }
.map-placeholder {
 position: relative;
 max-width: 900px;
 margin: 0 auto;
 border-radius: var(--radius-lg);
 overflow: hidden;
 box-shadow: var(--shadow-lg);
}
.map-hotspot {
 position: absolute;
 width: 30px;
 height: 30px;
 background-color: rgba(255, 179, 0, 0.7);
 border: 2px solid var(--bg-white);
 border-radius: 50%;
 transform: translate(-50%, -50%);
 cursor: pointer;
 transition: var(--transition);
 animation: pulse 2s infinite;
}
.map-hotspot::after {
 content: attr(data-region);
 position: absolute;
 bottom: 120%;
 left: 50%;
 transform: translateX(-50%);
 background-color: var(--text-dark);
 color: var(--bg-white);
 padding: 5px 10px;
 border-radius: var(--radius-sm);
 font-size: 0.8rem;
 white-space: nowrap;
 opacity: 0;
 visibility: hidden;
 transition: var(--transition);
 font-family: var(--font-label);
}
.map-hotspot:hover {
 transform: translate(-50%, -50%) scale(1.3);
 background-color: var(--accent-gold);
 animation: none;
}
.map-hotspot:hover::after {
 opacity: 1;
 visibility: visible;
 bottom: 150%;
}
@keyframes pulse {
 0% { box-shadow: 0 0 0 0 rgba(255,179,0, 0.7); }
 70% { box-shadow: 0 0 0 15px rgba(255,179,0, 0); }
 100% { box-shadow: 0 0 0 0 rgba(255,179,0, 0); }
}

/* Media Object */
.media-object {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 3rem;
 align-items: center;
}
.media-visual img {
 box-shadow: var(--shadow-lg);
 border-radius: var(--radius-lg);
}
.checklist {
 list-style: none;
 padding-left: 0;
}
.checklist li {
 padding-left: 2rem;
 position: relative;
 margin-bottom: 1rem;
}
.checklist li::before {
 content: '';
 color: var(--primary-green);
 font-weight: 700;
 position: absolute;
 left: 0;
 top: 0;
 font-family: var(--font-body);
}

/* Testimonials */
.testimonial-card {
 background: var(--bg-white);
 padding: 2rem;
 border-radius: var(--radius-lg);
 text-align: center;
 box-shadow: var(--shadow-md);
 border: 1px solid var(--border-color);
 border-top: 4px solid var(--accent-gold);
}
.testimonial-img {
 width: 90px;
 height: 90px;
 border-radius: 50%;
 object-fit: cover;
 margin: 0 auto 1rem;
 border: 4px solid var(--bg-white);
 box-shadow: var(--shadow-md);
}
.testimonial-text {
 font-style: italic;
 color: var(--text-light);
 font-size: 1.1rem;
 margin-bottom: 1rem;
}
.testimonial-author {
 font-weight: 700;
 font-family: var(--font-body);
}
.testimonial-role {
 font-family: var(--font-label);
 font-size: 0.9rem;
 color: var(--neutral-grey);
}

/* Page Content */
.page-content {
 padding-top: 4rem;
 padding-bottom: 4rem;
}
.prose {
 max-width: 800px;
 margin: 0 auto;
}
.prose h2 {
 margin-top: 3rem;
 margin-bottom: 1rem;
}
.prose figure {
 margin: 3rem 0;
}
.prose figcaption {
 font-family: var(--font-label);
 font-size: 0.9rem;
 text-align: center;
 color: var(--neutral-grey);
 margin-top: 0.5rem;
}
.field-notes-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
 gap: 1.5rem;
 margin: 3rem 0;
}
.field-note {
 background-color: var(--bg-white);
 border-left: 3px solid var(--accent-gold);
 padding: 1.5rem;
 border-radius: var(--radius-md);
 box-shadow: var(--shadow-sm);
 border: 1px solid var(--border-color);
}
.field-note-label {
 display: block;
 font-family: var(--font-label);
 font-size: 0.8rem;
 color: var(--neutral-grey);
 margin-bottom: 0.5rem;
}
.field-note h3 {
 font-size: 1.2rem;
 margin-bottom: 0.5rem;
}

/* Contact Page */
.contact-layout {
 display: grid;
 grid-template-columns: 1.5fr 1fr;
 gap: 3rem;
 align-items: flex-start;
}
.contact-form-container {
 background: var(--bg-white);
 padding: clamp(1.5rem, 5vw, 3rem);
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-md);
}
.contact-form .form-group {
 margin-bottom: 1.5rem;
}
.contact-form label {
 display: block;
 font-family: var(--font-label);
 font-weight: 700;
 margin-bottom: 0.5rem;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea,
.contact-form select {
 width: 100%;
 padding: 0.8rem 1rem;
 border: 1px solid var(--border-color);
 border-radius: var(--radius-md);
 font-family: var(--font-body);
 font-size: 1rem;
 background-color: var(--bg-light);
 transition: var(--transition);
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
 outline: none;
 border-color: var(--primary-blue);
 box-shadow: 0 0 0 3px rgba(13, 71, 161, 0.1);
}
.contact-form .checkbox-group {
 display: flex;
 align-items: flex-start;
 gap: 0.75rem;
}
.contact-form .checkbox-group input {
 margin-top: 5px;
 flex-shrink: 0;
}
.contact-form .checkbox-group label {
 font-family: var(--font-body);
 font-weight: 400;
 font-size: 0.9rem;
}
.contact-info-container h3 { margin-bottom: 1rem; }
.contact-info-item { margin-bottom: 2rem; }

.map-section { margin-top: 4rem; }
.map-container {
 width: 100%;
 height: 450px;
 border-radius: var(--radius-lg);
 overflow: hidden;
 box-shadow: var(--shadow-lg);
}
.map-container iframe {
 width: 100%;
 height: 100%;
 border: none;
}

/* Thank You page */
.thank-you-section {
 min-height: 60vh;
 display: flex;
 align-items: center;
 justify-content: center;
}

/* Legal Pages */
.legal-prose {
 max-width: 800px;
 margin: 0 auto;
}
.legal-prose h3 {
 margin-top: 2rem;
 margin-bottom: 0.5rem;
}
.cookie-table {
 width: 100%;
 margin: 2rem 0;
 border-collapse: collapse;
}
.cookie-table th, .cookie-table td {
 border: 1px solid var(--border-color);
 padding: 0.75rem;
 text-align: left;
}
.cookie-table th {
 background-color: var(--bg-light);
 font-family: var(--font-label);
}

/* Buttons */
.btn {
 display: inline-block;
 padding: 1rem 2rem;
 font-family: var(--font-body);
 font-weight: 700;
 font-size: 1rem;
 border: none;
 border-radius: 50px;
 cursor: pointer;
 transition: var(--transition);
 text-align: center;
}
.btn-primary {
 background-color: var(--primary-blue);
 color: var(--bg-white);
}
.btn-primary:hover {
 background-color: var(--accent-gold);
 color: var(--text-dark);
 transform: translateY(-3px);
 box-shadow: var(--shadow-md);
}

/* Footer */
.footer {
 background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
 color: rgba(255,255,255,0.8);
 padding: 4rem 1rem 2rem;
 margin-top: 4rem;
}
.footer-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
 gap: 2rem;
 margin-bottom: 3rem;
}
.footer-logo {
 font-family: var(--font-label);
 font-weight: 700;
 font-size: 1.3rem;
 color: var(--bg-white);
 margin-bottom: 1rem;
 display: block;
}
.footer-description {
 font-size: 0.9rem;
 line-height: 1.6;
}
.footer-heading {
 font-family: var(--font-label);
 font-size: 1rem;
 font-weight: 700;
 color: var(--bg-white);
 text-transform: uppercase;
 letter-spacing: 1px;
 margin-bottom: 1.5rem;
}
.footer-links {
 list-style: none;
}
.footer-links li {
 margin-bottom: 0.8rem;
}
.footer-links a, .footer-contact-item a {
 color: rgba(255,255,255,0.8);
 font-size: 0.9rem;
}
.footer-links a:hover, .footer-contact-item a:hover {
 color: var(--accent-gold);
}
.footer-contact-item {
 display: flex;
 gap: 1rem;
 align-items: flex-start;
 margin-bottom: 1rem;
 font-size: 0.9rem;
}
.footer-contact-item svg {
 width: 20px;
 height: 20px;
 flex-shrink: 0;
 color: var(--accent-gold);
 margin-top: 2px;
}
.footer-hours {
 font-size: 0.9rem; line-height: 1.6;
}
.footer-bottom {
 border-top: 1px solid rgba(255,255,255,0.2);
 padding-top: 2rem;
 display: flex;
 justify-content: space-between;
 align-items: center;
 font-size: 0.85rem;
 color: rgba(255,255,255,0.6);
}
.footer-legal-links { display: flex; gap: 1.5rem;}
.footer-legal-links a { color: rgba(255,255,255,0.6); }
.footer-legal-links a:hover { color: var(--bg-white); }

/* Form validation & Spinner */
.input-error {
 border-color: #dc2626 !important;
 box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1) !important;
}
.field-error {
 color: #c72c2c;
 font-size: 0.85rem;
 margin-top: 4px;
 animation: fadeIn 0.3s ease;
 font-family: var(--font-body);
}
@keyframes fadeIn {
 from { opacity: 0; transform: translateY(-5px); }
 to { opacity: 1; transform: translateY(0); }
}
.spinner {
 display: inline-block; width: 16px; height: 16px;
 border: 2px solid rgba(255,255,255,0.3);
 border-radius: 50%; border-top-color: #fff;
 animation: spin 0.8s linear infinite;
 margin-right: 8px; vertical-align: middle;
}
@keyframes spin { to { transform: rotate(360deg); } }
button:disabled { opacity: 0.7; cursor: not-allowed; }

/* Cookie Banner */
.cookie-banner {
 position: fixed;
 bottom: 0;
 left: 0;
 right: 0;
 background: var(--text-dark);
 color: var(--bg-light);
 padding: 1rem;
 display: none;
 align-items: center;
 justify-content: center;
 gap: 1rem;
 z-index: 2000;
 flex-wrap: wrap;
 text-align: center;
}
.cookie-banner p { margin: 0; font-size: 0.9rem; }
.cookie-banner a { color: var(--accent-gold); text-decoration: underline; }
.cookie-buttons { display: flex; gap: 0.5rem; flex-shrink: 0; }
.cookie-buttons button {
 font-family: var(--font-label);
 font-size: 0.8rem;
 padding: 0.5rem 1rem;
 border-radius: 50px;
 border: none;
 cursor: pointer;
}
#cookie-accept { background-color: var(--accent-gold); color: var(--text-dark); }
#cookie-decline { background-color: var(--neutral-grey); color: var(--bg-white); }

@media (max-width: 992px) {
 .nav-toggle {
 display: block;
 background: none;
 border: none;
 cursor: pointer;
 z-index: 1001;
 }
 .nav-toggle span {
 display: block;
 width: 25px;
 height: 2px;
 background-color: var(--text-dark);
 margin: 5px 0;
 transition: var(--transition);
 }
 .nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
 .nav-toggle.active span:nth-child(2) { opacity: 0; }
 .nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

 .nav-links {
 position: fixed;
 top: 0;
 right: 0;
 width: 100%;
 height: 100vh;
 background-color: var(--bg-white);
 flex-direction: column;
 justify-content: center;
 align-items: center;
 gap: 2.5rem;
 transform: translateX(100%);
 transition: transform 0.4s ease-in-out;
 }
 .nav-links.active { transform: translateX(0); }
 .nav-links a { font-size: 1.5rem; }

 .media-object { grid-template-columns: 1fr; }
 .media-visual { order: -1; }
 .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 576px) {
 .hero-stats { flex-direction: column; gap: 2rem; }
 .footer-grid { grid-template-columns: 1fr; }
 .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}