:root {
    --green: #063f2f;
    --green-2: #0b5f43;
    --gold: #c69034;
    --gold-2: #bd802c;
    --brown: #7b4d18;
    --cream: #f6efe3;
    --paper: #fbf6ec;
    --ink: #201b17;
    --muted: #5a5147;
    --border: #cbbda8;
    --purple: #341039;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
    line-height: 1.45;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(90deg, #083b2d, #053321 60%, #063624);
    height: 52px;
}
.nav-inner {
    width: min(100% - 76px, 1140px);
    height: 52px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.brand {
    color: #fff;
    text-decoration: none;
    font-family: Georgia, "Times New Roman", serif;
    font-variant: small-caps;
    font-size: 24px;
    letter-spacing: .07em;
    line-height: 1;
}
nav { display: flex; gap: 34px; }
nav a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .1em;
}
nav a.active, nav a:hover { color: #e0a844; }

.hero {
    height: clamp(330px, 31vw, 500px);
    overflow: hidden;
    background: #0a3d2d;
}
.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.main-panel {
    position: relative;
    background: var(--paper);
    padding: 0 0 30px;
}
.main-panel::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -38px;
    height: 58px;
    background: var(--paper);
    clip-path: polygon(0 65%, 5% 60%, 10% 67%, 16% 56%, 23% 64%, 30% 53%, 38% 63%, 46% 51%, 54% 62%, 62% 55%, 70% 66%, 78% 58%, 86% 64%, 94% 56%, 100% 65%, 100% 100%, 0 100%);
    z-index: 1;
}

.intro-section {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto 32px;
    padding: 0 22px;
    text-align: center;
}
.estate-logo {
    width: clamp(155px, 13.7vw, 210px);
    display: block;
    margin: -30px auto 18px;
    margin-bottom: 18px;
    transform: none;
    filter: drop-shadow(0 12px 18px rgba(0,0,0,.22));
}
.intro-section h1, .page-title h1 {
    margin: 0;
    color: var(--green);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .13em;
    font-size: clamp(42px, 5.1vw, 62px);
    line-height: 1.06;
}
.ornament {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 210px;
    margin: 18px auto 18px;
    color: var(--gold);
}
.ornament::before,
.ornament::after {
    content: "";
    display: block;
    width: 84px;
    height: 1px;
    background: var(--gold);
    opacity: .55;
}
.ornament span { font-size: 14px; line-height: 1; }
.intro-section p {
    max-width: 760px;
    margin: 0 auto 12px;
    font-size: 16px;
    color: #2f2a25;
}
.intro-line {
    color: #9a5c19 !important;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 23px !important;
    font-style: italic;
    margin-top: 18px !important;
}

.activity-grid {
    width: min(100% - 76px, 1140px);
    margin: 0 auto 24px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 12px;
}
.activity-card {
    background: rgba(255, 255, 255, .25);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    min-height: 386px;
}
.activity-image-wrap { padding: 12px 14px 0; }
.activity-image {
    width: 100%;
    height: 218px;
    object-fit: cover;
    border-radius: 3px 3px 0 0;
}
.stables .activity-image { object-position: center 45%; }
.cattery .activity-image { object-position: center 50%; }
.offroad .activity-image { object-position: center 45%; }
.trails .activity-image { object-position: center 50%; }
.activity-content {
    text-align: center;
    padding: 12px 44px 22px;
}
.activity-content h2 {
    margin: 0 0 10px;
    color: #271b13;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 30px;
    line-height: 1;
    letter-spacing: .055em;
}
.activity-content p {
    margin: 0 auto 16px;
    max-width: 500px;
    min-height: 78px;
    color: #302b26;
    font-size: 14px;
    line-height: 1.55;
}
.activity-button,
.contact-form button,
.footer-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    min-width: 285px;
    min-height: 35px;
    padding: 9px 18px;
    color: #fff;
    border: 0;
    border-radius: 6px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .05em;
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
}
.stables .activity-button,
.cattery .activity-button { background: linear-gradient(90deg, #0b5c3e, #1c7a5c); }
.offroad .activity-button { background: #31112f; }
.trails .activity-button { background: #765014; }
.activity-button span, .footer-cta a span { font-size: 20px; line-height: 1; }

.values-strip {
    width: min(100% - 76px, 1140px);
    margin: 18px auto 22px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    border: 1px solid var(--border);
    border-radius: 10px;
    background: rgba(255,255,255,.24);
    overflow: hidden;
}
.values-strip div {
    min-height: 122px;
    padding: 20px 14px 12px;
    text-align: center;
    border-right: 1px solid #d2c4af;
}
.values-strip div:last-child { border-right: 0; }
.values-strip span {
    display: block;
    color: #0a4f3a;
    font-size: 36px;
    line-height: 1;
    margin-bottom: 12px;
}
.values-strip small {
    display: block;
    color: #211c18;
    font-size: 13px;
    line-height: 1.25;
}

.site-footer {
    background: linear-gradient(90deg, #053321, #06402e 60%, #0a4a36);
    color: #fff;
}
.footer-main {
    width: min(100% - 76px, 1140px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 54px;
    padding: 28px 0 24px;
}
.footer-block h3 {
    margin: 0 0 10px;
    color: var(--gold);
    font-family: Georgia, "Times New Roman", serif;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 18px;
    font-weight: 400;
}
.footer-block h3 span { margin-right: 8px; }
.footer-block p {
    margin: 0;
    line-height: 1.45;
    font-size: 15px;
}
.footer-cta a {
    min-width: 250px;
    margin-top: 12px;
    background: linear-gradient(90deg, #bd802c, #d7a44b);
}
.footer-bottom {
    position: relative;
    background: linear-gradient(90deg, #bb842f, #d8a84d);
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 13px;
}
.footer-bottom p { margin: 0; }
.socials {
    position: absolute;
    right: 40px;
    display: flex;
    gap: 14px;
    color: #17120f;
    font-weight: 700;
    font-size: 19px;
}

.contact-page {
    min-height: 70vh;
    padding: 80px 20px;
    background: var(--paper);
}
.page-title {
    max-width: 900px;
    margin: 0 auto 28px;
    text-align: center;
}
.page-title p { font-size: 17px; color: var(--muted); }
.contact-form {
    width: min(100% - 40px, 720px);
    margin: 0 auto;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: rgba(255,255,255,.35);
}
.contact-form label {
    display: block;
    margin-bottom: 18px;
    color: var(--green);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    font-size: 13px;
}
.contact-form input,
.contact-form textarea {
    display: block;
    width: 100%;
    margin-top: 7px;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 5px;
    background: #fff;
    font: inherit;
}
.contact-form button { background: linear-gradient(90deg, #0b5c3e, #1c7a5c); }



.form-message {
    width: min(100% - 40px, 720px);
    margin: 0 auto 24px;
    padding: 16px 20px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.45);
}

.form-error {
    color: #8b1e1e;
    border-color: #d7a4a4;
    background: #fff3f3;
}

.contact-success {
    width: min(100% - 40px, 720px);
    margin: 0 auto;
    padding: 42px 36px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: rgba(255,255,255,.35);
    text-align: center;
}

.contact-success h2 {
    margin: 0 0 18px;
    color: var(--green);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 38px;
    font-weight: 400;
    letter-spacing: .04em;
}

.contact-success p {
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.success-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.success-buttons .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    min-height: 44px;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: .05em;
    color: #fff;
    background: linear-gradient(90deg, #0b5c3e, #1c7a5c);
}

.success-buttons .button.secondary {
    background: linear-gradient(90deg, #bd802c, #d7a44b);
}
.contact-logo {
    display: block;
    width: 180px;      /* was probably around 380-450px */
    max-width: 40vw;
    height: auto;
    margin: 20px auto 30px;
}

@media (max-width: 820px) {
    .nav-inner, .activity-grid, .values-strip, .footer-main { width: calc(100% - 32px); }
    .site-header, .nav-inner { height: 58px; }
    .brand { font-size: 20px; }
    nav { gap: 18px; }
    nav a { font-size: 12px; }
    .hero { height: 260px; }
    .estate-logo { width: 142px; }
    .intro-section h1, .page-title h1 { font-size: 40px; letter-spacing: .08em; }
    .activity-grid { grid-template-columns: 1fr; }
    .activity-content { padding: 12px 24px 22px; }
    .activity-button { min-width: 240px; }
    .values-strip { grid-template-columns: repeat(2, 1fr); }
    .values-strip div { border-bottom: 1px solid #d2c4af; }
    .footer-main { grid-template-columns: 1fr; gap: 22px; }
    .footer-bottom { padding: 12px 70px 12px 20px; text-align: center; }
}

.designer-credit {
    margin-top: 6px;
    font-size: 0.8rem;
    color: #cfcfcf;
}

.designer-credit a {
    color: #cfcfcf;
    text-decoration: none;
    transition: color 0.2s ease;
}

.designer-credit a:hover {
    color: #d4af37;   /* Gold */
}