*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --brand: #1a3a2a; --brand-mid: #2d6247; --brand-light: #4a9068;
  --brand-pale: #e8f4ed; --accent: #c8860a; --accent-light: #f7e9cc;
  --text: #1a1a1a; --text-mid: #444; --text-muted: #777;
  --border: #e0e0e0; --bg: #fafaf8; --white: #ffffff;
  --shadow: 0 2px 16px rgba(0,0,0,0.07);
  --radius: 16px; --nav-h: 70px;
}
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', Arial, sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ── NAV ── */
.hs-nav { position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h); background: var(--white); border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; padding: 0 40px; z-index: 9999; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.hs-nav-logo { font-family: 'Playfair Display', Georgia, serif; font-size: 24px; font-weight: 700; color: var(--brand); text-decoration: none; }
.hs-nav-logo span { color: var(--accent); }
.hs-nav-links { display: flex; gap: 4px; list-style: none; }
.hs-nav-links a { text-decoration: none; color: var(--text-mid); font-size: 14px; font-weight: 500; padding: 8px 14px; border-radius: 8px; transition: all 0.2s; white-space: nowrap; }
.hs-nav-links a:hover, .hs-nav-links a.active { background: var(--brand-pale); color: var(--brand-mid); }
.hs-nav-links a.hs-nav-cta { background: var(--brand); color: var(--white) !important; }
.hs-nav-links a.hs-nav-cta:hover { background: var(--brand-mid); }
.hs-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; border: none; background: none; }
.hs-hamburger span { display: block; width: 24px; height: 2px; background: var(--brand); border-radius: 2px; transition: all 0.3s; }
.hs-mobile-menu { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); z-index: 9998; padding: 16px; flex-direction: column; gap: 4px; box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.hs-mobile-menu.open { display: flex; }
.hs-mobile-menu a { text-decoration: none; color: var(--text-mid); font-size: 15px; font-weight: 500; padding: 12px 16px; border-radius: 8px; }
.hs-mobile-menu a:hover { background: var(--brand-pale); color: var(--brand-mid); }
.hs-mobile-menu a.hs-nav-cta { background: var(--brand); color: var(--white) !important; text-align: center; margin-top: 8px; }

/* ── UTILS ── */
.hs-container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.hs-section { padding: 72px 0; }
.hs-tag { display: inline-block; background: var(--brand-pale); color: var(--brand-mid); font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; padding: 5px 12px; border-radius: 20px; margin-bottom: 14px; }
.hs-h1 { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(28px,4vw,52px); font-weight: 700; color: var(--brand); line-height: 1.15; margin: 0 0 12px; }
.hs-h2 { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(22px,3vw,38px); font-weight: 600; color: var(--brand); line-height: 1.25; margin: 0 0 16px; }
.hs-sub { color: var(--text-muted); font-size: 16px; line-height: 1.7; }
.hs-center { text-align: center; }

/* ── BUTTONS ── */
.btn { display: inline-block; padding: 13px 28px; border-radius: 10px; font-family: 'DM Sans', Arial, sans-serif; font-size: 15px; font-weight: 600; cursor: pointer; border: none; transition: all 0.2s; text-decoration: none; }
.btn-primary { background: var(--brand); color: var(--white) !important; }
.btn-primary:hover { background: var(--brand-mid); }
.btn-outline { background: transparent; color: var(--brand) !important; border: 2px solid var(--brand); }
.btn-outline:hover { background: var(--brand-pale); }
.btn-accent { background: var(--accent); color: var(--white) !important; }
.btn-accent:hover { background: #b0740a; }
.btn-white { background: var(--white); color: var(--brand) !important; }
.btn-white:hover { background: #f0f0ee; }
.btn-ghost { background: transparent; color: var(--white) !important; border: 2px solid rgba(255,255,255,0.5); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); }
.btn-sm { padding: 8px 16px; font-size: 13px; border-radius: 8px; }

/* ── PAGE HEADER ── */
.hs-page-header { background: var(--white); padding: 48px 0 36px; border-bottom: 1px solid var(--border); margin-top: var(--nav-h); }

/* ── HERO ── */
.hs-hero { position: relative; min-height: 580px; display: flex; align-items: center; overflow: hidden; margin-top: var(--nav-h); }
.hs-hero-bg { position: absolute; inset: 0; background-image: url('https://images.unsplash.com/photo-1553284965-83fd3e82fa5a?w=1600&q=80'); background-size: cover; background-position: center 30%; filter: brightness(0.45); }
.hs-hero-inner { position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; padding: 80px 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; width: 100%; }
.hs-hero h1 { color: var(--white); text-shadow: 0 2px 12px rgba(0,0,0,0.3); }
.hs-hero .hs-tag { background: rgba(255,255,255,0.15); color: var(--white); border: 1px solid rgba(255,255,255,0.3); }
.hs-hero-sub { color: rgba(255,255,255,0.85); font-size: 18px; margin: 0 0 36px; line-height: 1.6; }
.hs-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hs-badges { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hs-badge { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25); border-radius: 14px; padding: 20px; text-align: center; backdrop-filter: blur(8px); }
.hs-badge.accent { background: rgba(200,134,10,0.35); border-color: rgba(200,134,10,0.6); }
.hs-badge-num { font-size: 30px; font-weight: 700; color: var(--white); font-family: 'Playfair Display', Georgia, serif; }
.hs-badge-lbl { font-size: 12px; color: rgba(255,255,255,0.75); margin-top: 4px; }

/* ── FEATURES ── */
.hs-features { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.hs-feat-card { background: var(--white); border-radius: var(--radius); padding: 32px 28px; border: 1px solid var(--border); transition: all 0.25s; text-decoration: none; display: block; }
.hs-feat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.hs-feat-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--brand-pale); display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 18px; }
.hs-feat-card h3 { font-size: 17px; font-weight: 600; color: var(--text); margin: 0 0 10px; }
.hs-feat-card p { color: var(--text-muted); font-size: 14px; line-height: 1.7; margin: 0; }

/* ── HORSE CARDS ── */
.hs-horse-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 36px; }
.hs-horse-card { border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; background: var(--white); transition: all 0.25s; }
.hs-horse-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.hs-horse-img { width: 100%; height: 200px; object-fit: cover; background: var(--brand-pale); display: flex; align-items: center; justify-content: center; font-size: 64px; position: relative; }
.hs-horse-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.hs-horse-badge { position: absolute; top: 12px; left: 12px; background: var(--accent); color: var(--white); font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 20px; text-transform: uppercase; }
.hs-horse-body { padding: 18px 20px; }
.hs-horse-body h3 { font-size: 16px; font-weight: 600; color: var(--text); margin: 0 0 4px; }
.hs-horse-breed { font-size: 13px; color: var(--text-muted); margin-bottom: 10px; }
.hs-horse-details { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 12px; }
.hs-horse-detail { font-size: 12px; color: var(--text-muted); }
.hs-horse-detail strong { color: var(--text-mid); }
.hs-horse-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 12px; border-top: 1px solid #f0f0f0; margin-top: 12px; }
.hs-horse-price { font-size: 18px; font-weight: 700; color: var(--brand-mid); }

/* ── STATS ── */
.hs-stats { background: var(--brand); padding: 48px 0; }
.hs-stats-row { display: grid; grid-template-columns: repeat(4,1fr); text-align: center; }
.hs-stat-item { padding: 0 20px; }
.hs-stat-item + .hs-stat-item { border-left: 1px solid rgba(255,255,255,0.12); }
.hs-stat-num { font-size: 36px; font-weight: 700; color: var(--white); font-family: 'Playfair Display', Georgia, serif; }
.hs-stat-lbl { font-size: 13px; color: rgba(255,255,255,0.65); margin-top: 4px; }

/* ── FEATURED SECTION ── */
.hs-featured { background: var(--white); padding: 72px 0; }

/* ── FILTERS ── */
.hs-filters { background: var(--white); padding: 18px 0; border-bottom: 1px solid var(--border); position: sticky; top: var(--nav-h); z-index: 100; }
.hs-filters-inner { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.hs-search-input { flex: 1; min-width: 200px; padding: 10px 16px; border: 1px solid var(--border); border-radius: 8px; font-family: 'DM Sans', Arial, sans-serif; font-size: 14px; outline: none; }
.hs-search-input:focus { border-color: var(--brand-light); }
.hs-filter-select { padding: 10px 16px; border: 1px solid var(--border); border-radius: 8px; font-family: 'DM Sans', Arial, sans-serif; font-size: 14px; background: var(--white); outline: none; cursor: pointer; }
.hs-filter-select:focus { border-color: var(--brand-light); }

/* ── LISTING GRID ── */
.hs-listings-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; padding: 40px 0; }
.hs-listing-card { border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; background: var(--white); transition: all 0.25s; }
.hs-listing-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.hs-listing-img { height: 200px; background: var(--brand-pale); display: flex; align-items: center; justify-content: center; font-size: 64px; position: relative; overflow: hidden; }
.hs-listing-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.hs-listing-badge { position: absolute; top: 12px; left: 12px; background: var(--accent); color: var(--white); font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 20px; text-transform: uppercase; z-index: 1; }
.hs-listing-body { padding: 20px; }
.hs-listing-body h3 { font-size: 17px; font-weight: 600; color: var(--text); margin: 0 0 4px; }
.hs-listing-breed { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }
.hs-listing-details { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 12px; }
.hs-listing-detail { font-size: 12px; color: var(--text-muted); }
.hs-listing-detail strong { color: var(--text-mid); }
.hs-listing-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.hs-listing-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 14px; border-top: 1px solid #f0f0f0; }
.hs-listing-price { font-size: 20px; font-weight: 700; color: var(--brand-mid); }

/* ── FORM ── */
.hs-form-wrap { padding: 60px 0; }
.hs-form-card { background: var(--white); border-radius: 20px; border: 1px solid var(--border); padding: 48px; max-width: 780px; margin: 0 auto; }
.hs-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.hs-form-group { display: flex; flex-direction: column; gap: 7px; }
.hs-form-group.full { grid-column: 1 / -1; }
.hs-form-group label { font-size: 13px; font-weight: 600; color: var(--text-mid); }
.hs-input, .hs-select, .hs-textarea { padding: 11px 14px; border: 1px solid var(--border); border-radius: 10px; font-family: 'DM Sans', Arial, sans-serif; font-size: 14px; color: var(--text); outline: none; transition: border 0.2s; background: var(--white); width: 100%; }
.hs-input:focus, .hs-select:focus, .hs-textarea:focus { border-color: var(--brand-light); }
.hs-textarea { resize: vertical; min-height: 110px; }
.hs-upload-area { grid-column: 1/-1; border: 2px dashed var(--border); border-radius: 14px; padding: 40px; text-align: center; cursor: pointer; transition: all 0.2s; }
.hs-upload-area:hover { border-color: var(--brand-light); background: var(--brand-pale); }
.hs-form-submit { margin-top: 32px; display: flex; gap: 14px; justify-content: flex-end; }
.hs-alert { padding: 14px 18px; border-radius: 10px; margin-bottom: 20px; font-weight: 500; font-size: 14px; display: none; }
.hs-alert.show { display: block; }
.hs-alert-success { background: #d1fae5; border: 1px solid #34d399; color: #065f46; }
.hs-alert-error { background: #fee2e2; border: 1px solid #f87171; color: #991b1b; }

/* ── PLANS ── */
.hs-plans { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin: 32px 0 48px; }
.hs-plan-card { border: 2px solid var(--border); border-radius: 16px; padding: 24px 20px; cursor: pointer; transition: all 0.2s; position: relative; }
.hs-plan-card.selected, .hs-plan-card:hover { border-color: var(--brand-mid); background: var(--brand-pale); }
.hs-plan-card.popular { border-color: var(--accent); }
.hs-plan-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: var(--white); font-size: 11px; font-weight: 700; padding: 3px 12px; border-radius: 20px; white-space: nowrap; }
.hs-plan-name { font-size: 16px; font-weight: 700; color: var(--brand); margin-bottom: 4px; }
.hs-plan-price { font-size: 24px; font-weight: 800; color: var(--brand-mid); margin: 8px 0 4px; }
.hs-plan-duration { font-size: 12px; color: var(--text-muted); margin-bottom: 12px; }
.hs-plan-features { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.hs-plan-features li { font-size: 12px; color: var(--text-mid); display: flex; gap: 6px; align-items: flex-start; }
.hs-plan-features li::before { content: '✓'; color: var(--brand-mid); font-weight: 700; flex-shrink: 0; }

/* ── EVENTS ── */
.hs-events-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 36px; padding: 48px 0; }
.hs-event-card { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); padding: 28px; margin-bottom: 20px; display: grid; grid-template-columns: 72px 1fr; gap: 22px; align-items: start; transition: all 0.25s; }
.hs-event-card:hover { box-shadow: var(--shadow); }
.hs-event-date { background: var(--brand); border-radius: 12px; padding: 12px 10px; text-align: center; color: var(--white); }
.hs-event-month { font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; opacity: 0.8; }
.hs-event-day { font-size: 28px; font-weight: 700; font-family: 'Playfair Display', Georgia, serif; line-height: 1; }
.hs-event-info h3 { font-size: 17px; font-weight: 600; color: var(--text); margin: 0 0 8px; }
.hs-event-meta { display: flex; gap: 16px; margin-bottom: 10px; flex-wrap: wrap; }
.hs-event-meta span { font-size: 13px; color: var(--text-muted); }
.hs-event-meta strong { color: var(--text-mid); }
.hs-event-info p { font-size: 14px; color: var(--text-muted); margin-bottom: 14px; }
.hs-event-tag { display: inline-block; font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }
.et-show { background: var(--brand-pale); color: var(--brand-mid); }
.et-auction { background: #fce4ec; color: #c2185b; }
.et-training { background: #e8eaf6; color: #3949ab; }
.et-race { background: #fff3e0; color: var(--accent); }
.hs-sidebar-widget { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); padding: 24px; margin-bottom: 24px; }
.hs-sidebar-widget h3 { font-size: 15px; font-weight: 600; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border); color: var(--brand); }

/* ── PHOTOS ── */
.hs-photo-tabs { display: flex; gap: 8px; margin: 32px 0 28px; flex-wrap: wrap; }
.hs-photo-tab { padding: 9px 20px; border-radius: 24px; border: 1px solid var(--border); background: var(--white); color: var(--text-mid); font-size: 14px; font-weight: 500; cursor: pointer; transition: all 0.2s; font-family: 'DM Sans', Arial, sans-serif; text-decoration: none; }
.hs-photo-tab:hover, .hs-photo-tab.active { background: var(--brand); color: var(--white); border-color: var(--brand); }
.hs-photo-masonry { columns: 3; gap: 16px; padding-bottom: 60px; }
.hs-photo-item { border-radius: 12px; overflow: hidden; margin-bottom: 16px; break-inside: avoid; position: relative; cursor: pointer; background: var(--brand-pale); border: 1px solid var(--border); }
.hs-photo-item-inner { display: flex; align-items: center; justify-content: center; font-size: 64px; }
.hs-photo-item img { width: 100%; display: block; }
.hs-photo-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,0.6)); padding: 20px 14px 12px; opacity: 0; transition: opacity 0.2s; }
.hs-photo-item:hover .hs-photo-overlay { opacity: 1; }
.hs-photo-overlay p { color: var(--white); font-size: 13px; font-weight: 500; }

/* ── CONTACT ── */
.hs-contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; padding: 60px 0; }
.hs-contact-item { display: flex; gap: 16px; margin-bottom: 28px; align-items: flex-start; }
.hs-contact-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--brand-pale); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.hs-contact-item h4 { font-size: 14px; font-weight: 600; margin-bottom: 3px; }
.hs-contact-item p { font-size: 14px; color: var(--text-muted); }

/* ── SHOP ── */
.hs-shop-cats { display: flex; gap: 10px; flex-wrap: wrap; margin: 32px 0; }
.hs-cat-btn { padding: 9px 20px; border-radius: 24px; font-size: 14px; font-weight: 500; cursor: pointer; border: 1px solid var(--border); background: var(--white); color: var(--text-mid); transition: all 0.2s; font-family: 'DM Sans', Arial, sans-serif; }
.hs-cat-btn.active, .hs-cat-btn:hover { background: var(--brand); color: var(--white); border-color: var(--brand); }
.hs-shop-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; padding-bottom: 60px; }
.hs-shop-card { border-radius: 14px; border: 1px solid var(--border); background: var(--white); overflow: hidden; transition: all 0.25s; }
.hs-shop-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.hs-shop-img { height: 160px; background: var(--brand-pale); display: flex; align-items: center; justify-content: center; font-size: 44px; }
.hs-shop-body { padding: 14px 16px; }
.hs-shop-body h3 { font-size: 14px; font-weight: 600; margin-bottom: 4px; color: var(--text); }
.hs-shop-cat { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }
.hs-shop-footer { display: flex; justify-content: space-between; align-items: center; }
.hs-shop-price { font-size: 16px; font-weight: 700; color: var(--brand-mid); }
.btn-cart { background: var(--brand-pale); color: var(--brand); border: none; padding: 7px 14px; border-radius: 8px; font-size: 13px; font-weight: 600; cursor: pointer; transition: all 0.2s; font-family: 'DM Sans', Arial, sans-serif; }
.btn-cart:hover { background: var(--brand); color: var(--white); }

/* ── MODAL ── */
.hs-modal { position: fixed; inset: 0; background: rgba(0,0,0,0.55); z-index: 10000; display: none; align-items: center; justify-content: center; padding: 20px; }
.hs-modal.open { display: flex; }
.hs-modal-box { background: var(--white); border-radius: 20px; padding: 40px; max-width: 560px; width: 100%; max-height: 90vh; overflow-y: auto; position: relative; }
.hs-modal-close { position: absolute; top: 16px; right: 20px; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--text-muted); line-height: 1; }

/* ── FOOTER ── */
.hs-footer { background: var(--brand); color: rgba(255,255,255,0.75); padding: 56px 0 32px; }
.hs-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.hs-footer-logo { font-family: 'Playfair Display', Georgia, serif; font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 14px; }
.hs-footer-logo span { color: var(--accent-light); }
.hs-footer-desc { font-size: 14px; line-height: 1.65; color: rgba(255,255,255,0.6); }
.hs-footer-col h4 { color: var(--white); font-size: 14px; font-weight: 600; margin-bottom: 16px; }
.hs-footer-col ul { list-style: none; }
.hs-footer-col ul li { margin-bottom: 10px; }
.hs-footer-col ul li a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.hs-footer-col ul li a:hover { color: var(--white); }
.hs-footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; font-size: 13px; color: rgba(255,255,255,0.4); flex-wrap: wrap; gap: 10px; }

/* ── TOAST ── */
.hs-toast { position: fixed; bottom: 32px; right: 32px; background: var(--brand); color: var(--white); padding: 14px 24px; border-radius: 12px; font-weight: 600; transform: translateY(100px); transition: transform 0.3s; z-index: 99999; box-shadow: 0 4px 20px rgba(0,0,0,0.2); }
.hs-toast.show { transform: translateY(0); }

/* ── RESPONSIVE ── */
@media(max-width: 1024px) {
  .hs-plans { grid-template-columns: repeat(2,1fr); }
  .hs-shop-grid { grid-template-columns: repeat(3,1fr); }
}
@media(max-width: 768px) {
  .hs-nav { padding: 0 20px; }
  .hs-nav-links { display: none; }
  .hs-hamburger { display: flex; }
  .hs-hero { min-height: 480px; }
  .hs-hero-inner { grid-template-columns: 1fr; padding: 60px 20px; }
  .hs-hero-inner > div:last-child { display: none; }
  .hs-hero h1 { font-size: 28px; }
  .hs-hero-sub { font-size: 15px; margin-bottom: 24px; }
  .hs-hero-btns { flex-direction: column; }
  .hs-hero-btns .btn { text-align: center; }
  .hs-features { grid-template-columns: 1fr; }
  .hs-horse-grid { grid-template-columns: 1fr; }
  .hs-listings-grid { grid-template-columns: 1fr; }
  .hs-stats-row { grid-template-columns: 1fr 1fr; }
  .hs-stat-item + .hs-stat-item { border-left: none; }
  .hs-stat-item:nth-child(2) { border-left: 1px solid rgba(255,255,255,0.12); }
  .hs-events-layout { grid-template-columns: 1fr; }
  .hs-contact-layout { grid-template-columns: 1fr; }
  .hs-footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .hs-footer-grid > div:first-child { grid-column: 1/-1; }
  .hs-photo-masonry { columns: 2; }
  .hs-shop-grid { grid-template-columns: repeat(2,1fr); }
  .hs-plans { grid-template-columns: 1fr 1fr; }
  .hs-form-grid { grid-template-columns: 1fr; }
  .hs-form-group.full { grid-column: 1; }
  .hs-form-card { padding: 28px 20px; }
  .hs-filters-inner { flex-direction: column; }
  .hs-search-input { min-width: unset; }
  .hs-section { padding: 48px 0; }
  .hs-featured { padding: 48px 0; }
}
@media(max-width: 480px) {
  .hs-stats-row { grid-template-columns: 1fr; }
  .hs-stat-item + .hs-stat-item { border-left: none; border-top: 1px solid rgba(255,255,255,0.12); padding-top: 20px; margin-top: 20px; }
  .hs-footer-grid { grid-template-columns: 1fr; }
  .hs-footer-bottom { flex-direction: column; text-align: center; }
  .hs-photo-masonry { columns: 1; }
  .hs-plans { grid-template-columns: 1fr; }
  .hs-shop-grid { grid-template-columns: 1fr 1fr; }
}
