@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --primary: #3c4a3e; /* Bush Green */
    --secondary: #b35a38; /* Outback Ochre */
    --accent: #d4a373; /* Clay / Warm Earth */
    --bg: #f4f1ea; /* Coastal Sand */
    --titles: #2a2a2a; /* Ironstone */
    --text: #2d2d2d;
    --text-light: #5a5a5a;
    --white: #ffffff;
    --spacing: 2rem;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .serif {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    color: var(--titles);
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

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

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 var(--spacing);
}

.container-narrow {
    max-width: 800px;
}

.text-ochre { color: var(--secondary); }
.text-white { color: var(--white); }
.mb-2 { margin-bottom: 2rem; }
.text-center { text-align: center; }
.bg-sand { background-color: var(--bg); }
.bg-bush { background-color: var(--primary); }
.section-padding { padding: 8rem 0; }

/* Layout Parts */
section {
    padding: 6rem 0;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Navigation */
.site-header {
    background: var(--white);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(60, 74, 62, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--primary);
}

.logo span {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links > li {
    position: relative;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    padding: 0.5rem 0;
}

.nav-links a:hover {
    color: var(--secondary);
}

/* Dropdown Menu */
.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 240px;
    box-shadow: 0 10px 30px rgba(60, 74, 62, 0.08);
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    border-top: 2px solid var(--secondary);
}

.dropdown li a {
    display: block;
    padding: 0.8rem 1.5rem;
    text-transform: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0;
    color: var(--text);
}

.dropdown li a:hover {
    background: var(--bg);
    color: var(--secondary);
    padding-left: 1.8rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-gold, .btn-ochre {
    background: var(--secondary);
    color: var(--white);
}

.btn-gold:hover, .btn-ochre:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* Hero */
.hero {
    height: 90vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-small {
    height: 50vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(42, 42, 42, 0.3); /* Ironstone overlay */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-content h1 {
    font-size: 5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-content p {
    font-size: 1.4rem;
    font-weight: 300;
    opacity: 0.9;
}

/* Guide Header */
.guide-header {
    background: var(--bg);
    padding: 5rem 0;
    text-align: center;
}

.guide-header h1 {
    font-size: 3.5rem;
    margin: 1.5rem 0;
    color: var(--primary);
}

.badge-gold, .badge-ochre {
    background: rgba(179, 90, 56, 0.1);
    color: var(--secondary);
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 2px;
    display: inline-block;
}

.guide-intro {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: var(--text-light);
}

.guide-image-full {
    width: 100%;
    height: 600px;
    object-fit: cover;
    margin: 2rem 0;
    border-radius: 2px;
}

/* Home Sections */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

/* Premium State Grid */
.premium-state-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.premium-state-item {
    position: relative;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 15px 40px rgba(60, 74, 62, 0.05);
}

.premium-state-inner {
    display: flex;
    flex-direction: column;
}

.premium-state-image {
    height: 400px;
    overflow: hidden;
    position: relative;
}

.premium-state-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.premium-state-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(60, 74, 62, 0.4));
    opacity: 0;
    transition: var(--transition);
}

.premium-state-item:hover .premium-state-overlay {
    opacity: 1;
}

.premium-state-item:hover .premium-state-image img {
    transform: scale(1.05);
}

.premium-state-content {
    padding: 2.5rem;
    background: var(--white);
    position: relative;
    z-index: 2;
}

.premium-state-meta {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.premium-state-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.premium-state-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1rem;
    height: 3em;
    overflow: hidden;
}

.premium-state-link {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
}

.premium-state-link:hover {
    color: var(--secondary);
    gap: 1.25rem;
}

/* Style Rows */
.style-list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.style-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.style-image {
    height: 500px;
    overflow: hidden;
    border-radius: 2px;
}

.style-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

@media (max-width: 992px) {
    .premium-state-grid { grid-template-columns: repeat(2, 1fr); }
    .style-row { grid-template-columns: 1fr; gap: 2rem; }
    .style-image { height: 350px; }
}

@media (max-width: 768px) {
    .premium-state-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .hero-content h1 { font-size: 3rem; }
    .premium-state-content h3 { font-size: 1.8rem; }
}

/* Footer */
footer {
    background: var(--primary);
    color: var(--white);
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-grid h4 {
    color: var(--secondary);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    font-family: 'Inter', sans-serif;
}

.footer-grid p {
    color: rgba(255,255,255,0.7);
    max-width: 300px;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

.lead {
    font-size: 1.2rem;
    color: var(--text-light);
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: 1fr 1fr;
}

@media (max-width: 768px) {
    .grid-2 { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
}