/* ═══════════════════════════════════════════════════════════
   AR Murray Aberdeen Angus — Main Stylesheet
   ═══════════════════════════════════════════════════════════ */

:root {
  --color-black:     #111111;
  --color-dark:      #1a1a1a;
  --color-dark-alt:  #232320;
  --color-green:     #2a4a22;
  --color-green-lt:  #3a6430;
  --color-cream:     #f5f0e8;
  --color-cream-dk:  #ede8dc;
  --color-gold:      #8b7355;
  --color-gold-lt:   #a8905e;
  --color-white:     #ffffff;
  --color-text:      #2c2c2c;
  --color-muted:     #777777;
  --color-border:    #ddd5c5;

  --font-serif:   'Playfair Display', Georgia, serif;
  --font-sans:    'Source Sans 3', system-ui, sans-serif;

  --radius:    6px;
  --radius-lg: 12px;
  --shadow:    0 2px 12px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);

  --max-w: 1280px;
  --section-pad: 5rem;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); color: var(--color-text); background: var(--color-white); line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── Layout ─────────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.section { padding: var(--section-pad) 0; }
.text-center { text-align: center; }

/* ── Typography ──────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.25; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); font-weight: 600; }
h3 { font-size: 1.3rem; font-weight: 600; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.section-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
}
.section-label.light { color: var(--color-gold-lt); }

.section-head { text-align: center; margin-bottom: 3rem; }
.section-head p { color: var(--color-muted); max-width: 600px; margin: 0.75rem auto 0; }
.section-head h2.light, .section-head p.light { color: var(--color-cream); }
h2.light { color: var(--color-cream); }
p.light { color: var(--color-cream); opacity: 0.85; }

.section-cta { text-align: center; margin-top: 3rem; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
}
.btn-primary   { background: var(--color-green); color: var(--color-white); border-color: var(--color-green); }
.btn-primary:hover { background: var(--color-green-lt); border-color: var(--color-green-lt); }
.btn-secondary { background: var(--color-gold); color: var(--color-white); border-color: var(--color-gold); }
.btn-secondary:hover { background: var(--color-gold-lt); border-color: var(--color-gold-lt); }
.btn-outline   { background: transparent; color: var(--color-white); border-color: rgba(255,255,255,0.7); }
.btn-outline:hover { background: rgba(255,255,255,0.15); border-color: var(--color-white); }
.btn-outline-dark { background: transparent; color: var(--color-dark); border-color: var(--color-dark); }
.btn-outline-dark:hover { background: var(--color-dark); color: var(--color-white); }
.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; }
.btn-sm { padding: 0.45rem 1rem; font-size: 0.85rem; }
.btn-block { width: 100%; justify-content: center; }

/* ── Backgrounds ─────────────────────────────────────────────── */
.bg-dark     { background: var(--color-dark); }
.bg-dark-alt { background: var(--color-dark-alt); }
.bg-cream    { background: var(--color-cream); }
.bg-green    { background: var(--color-green); }

/* ── Header ──────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.site-logo {
  height: 54px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s;
}
.site-logo:hover { opacity: 0.85; }
.logo-link { display: flex; align-items: center; }

.main-nav ul { display: flex; gap: 0.25rem; align-items: center; }
.main-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius);
  transition: all 0.2s;
  letter-spacing: 0.01em;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--color-white);
  background: rgba(255,255,255,0.1);
}
.main-nav a.active { color: var(--color-gold-lt); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: white; transition: all 0.3s; border-radius: 2px; }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #1a1a1a 0%, #2a4a22 50%, #1a1a1a 100%); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.7) 100%); }

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-white);
  padding: 3rem 2rem;
  max-width: 800px;
}
.hero-logo-wrap { margin-bottom: 1.5rem; }
.hero-logo {
  height: 160px;
  width: auto;
  margin: 0 auto;
  filter: brightness(0) invert(1);
  drop-shadow(0 4px 20px rgba(0,0,0,0.5));
}
.hero-headline {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,0.9);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Announcement Bar ────────────────────────────────────────── */
.announcement-bar {
  background: var(--color-green);
  color: var(--color-white);
  padding: 0.85rem 0;
  text-align: center;
}
.announcement-bar p { font-weight: 600; font-size: 0.95rem; letter-spacing: 0.03em; margin: 0; }
.announce-icon { color: var(--color-gold-lt); margin: 0 0.5rem; }

/* ── About Intro ─────────────────────────────────────────────── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-text h2 { margin-bottom: 1.25rem; }
.about-text p { color: #555; margin-bottom: 1.75rem; font-size: 1.05rem; }
.about-brand { display: flex; flex-direction: column; align-items: center; gap: 2rem; }
.brand-feature-img { max-width: 280px; margin: 0 auto; }
.brand-stats { display: flex; gap: 2rem; }
.stat { display: flex; flex-direction: column; align-items: center; gap: 0.25rem; }
.stat-num { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 700; color: var(--color-dark); }
.stat-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-muted); }

/* ── Bull Cards ──────────────────────────────────────────────── */
.bull-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}
.bull-grid-full { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.bull-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
}
.bull-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.bull-card-sold { opacity: 0.75; }
.bull-card-img-link {
  position: relative;
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--color-cream);
}
.bull-card-img-link img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.35s ease;
}
.bull-card:hover .bull-card-img-link img { transform: scale(1.04); }
.bull-no-photo {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-cream);
}
.no-photo-logo { max-height: 80px; opacity: 0.3; }

.badge {
  position: absolute;
  top: 0.75rem;
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.badge-featured { left: 0.75rem; background: var(--color-gold); color: white; }
.badge-available { right: 0.75rem; background: var(--color-green); color: white; }
.badge-sold { right: 0.75rem; background: #666; color: white; }
.badge-reserved { right: 0.75rem; background: #c17f24; color: white; }

.bull-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; gap: 0.5rem; }
.bull-card-body h3 { font-size: 1.2rem; }
.bull-card-body h3 a:hover { color: var(--color-green); }
.bull-tag { font-size: 0.85rem; color: var(--color-muted); }
.bull-price { font-size: 1.05rem; font-weight: 700; color: var(--color-green); }
.bull-desc { font-size: 0.9rem; color: #666; flex: 1; }
.bull-meta, .bull-pedigree { display: flex; flex-direction: column; gap: 0.2rem; font-size: 0.85rem; color: var(--color-muted); }
.bull-card-body .btn { margin-top: auto; }

/* ── Bull Detail ─────────────────────────────────────────────── */
.bull-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.bull-photos { position: sticky; top: 90px; }
.main-photo { width: 100%; border-radius: var(--radius-lg); object-fit: cover; max-height: 520px; }
.bull-photo-thumbs { display: flex; gap: 0.75rem; margin-top: 0.75rem; flex-wrap: wrap; }
.photo-thumb { width: 80px; height: 60px; object-fit: cover; border-radius: var(--radius); cursor: pointer; opacity: 0.65; border: 2px solid transparent; transition: all 0.2s; }
.photo-thumb:hover, .photo-thumb.active { opacity: 1; border-color: var(--color-green); }
.bull-no-photo-lg { aspect-ratio: 4/3; background: var(--color-cream); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; }
.no-photo-logo-lg { max-height: 120px; opacity: 0.25; }

.bull-status-bar { display: flex; gap: 0.5rem; margin-bottom: 0.75rem; }
.bull-status-bar .badge { position: static; display: inline-block; }
.bull-name { margin-bottom: 0.5rem; }
.bull-price-lg { font-size: 1.4rem; font-weight: 700; color: var(--color-green); margin-bottom: 1.5rem; }

.bull-data-table { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; }
.bull-data-table th, .bull-data-table td { padding: 0.6rem 0.75rem; text-align: left; border-bottom: 1px solid var(--color-border); font-size: 0.95rem; }
.bull-data-table th { font-weight: 600; color: var(--color-muted); width: 40%; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; }

.epd-section { background: var(--color-cream); border-radius: var(--radius); padding: 1.5rem; margin-bottom: 1.5rem; }
.epd-section h3 { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-muted); margin-bottom: 1rem; font-family: var(--font-sans); }
.epd-grid { display: flex; gap: 1rem; flex-wrap: wrap; }
.epd-card { background: white; border-radius: var(--radius); padding: 0.75rem 1rem; text-align: center; min-width: 80px; box-shadow: var(--shadow); }
.epd-val { display: block; font-size: 1.2rem; font-weight: 700; color: var(--color-dark); font-family: var(--font-serif); }
.epd-label { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-muted); margin-top: 0.2rem; }

.bull-description { margin-bottom: 1.5rem; }
.bull-description h3 { margin-bottom: 0.75rem; }
.bull-description p { color: #555; }

.bull-cta-box { background: var(--color-cream); border-radius: var(--radius); padding: 1.5rem; }
.bull-cta-box h3 { margin-bottom: 0.5rem; }
.bull-cta-box p { color: var(--color-muted); margin-bottom: 1rem; font-size: 0.95rem; }
.cta-row { display: flex; gap: 1rem; flex-wrap: wrap; }

.back-link { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--color-muted); font-size: 0.9rem; padding: 0.75rem 0; }
.back-link:hover { color: var(--color-dark); }

/* ── Feature Grid ────────────────────────────────────────────── */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; }
.feature-item { text-align: center; padding: 2rem 1.5rem; }
.feature-icon { font-size: 1.5rem; color: var(--color-gold-lt); margin-bottom: 1rem; }
.feature-item h3 { color: var(--color-cream); margin-bottom: 0.75rem; font-size: 1.1rem; }
.feature-item p { color: rgba(255,255,255,0.7); font-size: 0.95rem; }

/* ── Gallery ─────────────────────────────────────────────────── */
.gallery-filter { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.filter-btn {
  padding: 0.5rem 1.1rem;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1.5px solid var(--color-border);
  color: var(--color-muted);
  transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active { background: var(--color-dark); color: white; border-color: var(--color-dark); }

.gallery-masonry {
  columns: 4;
  column-gap: 1rem;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img { width: 100%; display: block; transition: transform 0.3s; }
.gallery-item:hover img { transform: scale(1.03); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; padding: 1rem;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay p { color: white; font-size: 0.85rem; }

/* Home gallery preview */
.gallery-grid-home { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem; grid-auto-rows: 200px; }
.gallery-thumb { display: block; border-radius: var(--radius); overflow: hidden; position: relative; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s; }
.gallery-thumb:hover img { transform: scale(1.06); }
.gallery-thumb-large { grid-column: span 2; grid-row: span 2; }
.gallery-caption-hover {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  color: white; padding: 1.5rem 0.75rem 0.75rem;
  font-size: 0.85rem; opacity: 0; transition: opacity 0.3s;
}
.gallery-thumb:hover .gallery-caption-hover { opacity: 1; }

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.92); align-items: center; justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox-content { max-width: 90vw; max-height: 90vh; position: relative; }
.lightbox-content img { max-width: 90vw; max-height: 80vh; object-fit: contain; border-radius: var(--radius); }
.lightbox-caption { color: rgba(255,255,255,0.8); text-align: center; margin-top: 1rem; font-size: 0.9rem; }
.lightbox-close { position: fixed; top: 1.5rem; right: 1.5rem; color: white; font-size: 2.5rem; line-height: 1; background: none; border: none; cursor: pointer; opacity: 0.7; }
.lightbox-close:hover { opacity: 1; }

/* ── About ───────────────────────────────────────────────────── */
.about-layout { display: grid; grid-template-columns: 1fr 380px; gap: 4rem; align-items: start; }
.about-main h2 { margin-bottom: 1.5rem; }
.about-body p { color: #555; font-size: 1.05rem; margin-bottom: 1.25rem; }
.about-logo-box { text-align: center; }
.about-logo-box img { max-width: 220px; margin: 0 auto 1.5rem; }
.about-stats { display: flex; gap: 1.5rem; justify-content: center; margin-bottom: 2rem; }
.stat-box { text-align: center; }
.stat-number { display: block; font-family: var(--font-serif); font-size: 1.4rem; font-weight: 700; color: var(--color-dark); }
.stat-desc { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-muted); }
.contact-card { background: var(--color-cream); border-radius: var(--radius); padding: 1.5rem; }
.contact-card h3 { margin-bottom: 1rem; }
.contact-card p { font-size: 0.95rem; margin-bottom: 0.5rem; }
.contact-card a { color: var(--color-green); }

.heritage-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; }
.heritage-item { padding: 2rem; background: rgba(255,255,255,0.05); border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.08); }
.heritage-item h3 { color: var(--color-cream); margin-bottom: 0.75rem; }
.heritage-item p { color: rgba(255,255,255,0.7); font-size: 0.95rem; }

/* ── Contact ─────────────────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-info h2 { margin-bottom: 1rem; }
.contact-info > p { color: #555; margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.contact-detail-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon { width: 40px; height: 40px; background: var(--color-cream); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon svg { width: 18px; height: 18px; color: var(--color-green); }
.contact-detail-item strong { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-muted); }
.contact-detail-item a, .contact-detail-item span { color: var(--color-dark); font-size: 0.95rem; }
.contact-detail-item a:hover { color: var(--color-green); }

.social-links-contact { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.social-btn-lg {
  display: inline-flex; align-items: center; gap: 0.75rem;
  padding: 0.7rem 1.25rem; border-radius: var(--radius);
  background: var(--color-cream); color: var(--color-dark);
  font-weight: 600; font-size: 0.9rem; transition: background 0.2s;
  width: fit-content;
}
.social-btn-lg svg { width: 20px; height: 20px; }
.social-btn-lg:hover { background: var(--color-cream-dk); }
.farm-logo-contact img { max-width: 160px; opacity: 0.5; }

.contact-form-wrap { background: var(--color-cream); border-radius: var(--radius-lg); padding: 2.5rem; }
.contact-form h3 { margin-bottom: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--color-dark); }
.form-group input, .form-group select, .form-group textarea {
  padding: 0.7rem 1rem; border: 1.5px solid var(--color-border);
  border-radius: var(--radius); font-size: 0.95rem; background: white;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--color-green);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-success { text-align: center; padding: 2rem; }
.form-success h3 { color: var(--color-green); margin-bottom: 0.75rem; }

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer { background: var(--color-dark); color: rgba(255,255,255,0.8); padding: 4rem 0 0; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem 3rem; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 3rem; }
.footer-logo { height: 70px; filter: brightness(0) invert(1); opacity: 0.8; margin-bottom: 1rem; }
.footer-tagline { font-size: 0.875rem; color: rgba(255,255,255,0.5); }
.footer-links h4, .footer-contact h4 { color: var(--color-white); font-family: var(--font-sans); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 1rem; }
.footer-links ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { font-size: 0.9rem; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-links a:hover { color: var(--color-white); }
.footer-contact p { font-size: 0.9rem; margin-bottom: 0.5rem; }
.footer-contact a { color: rgba(255,255,255,0.65); }
.footer-contact a:hover { color: white; }
.social-links { display: flex; gap: 0.75rem; margin-top: 1rem; }
.social-btn { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.social-btn svg { width: 16px; height: 16px; color: white; }
.social-btn:hover { background: var(--color-green); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 1.25rem 2rem; max-width: var(--max-w); margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.admin-link { font-size: 0.75rem; color: rgba(255,255,255,0.2); }
.admin-link:hover { color: rgba(255,255,255,0.5); }

/* ── Page Hero ───────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-green) 100%);
  position: relative;
  display: flex; align-items: center; justify-content: center; text-align: center;
}
.page-hero-sm { height: 260px; }
.page-hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.3); }
.page-hero-content { position: relative; z-index: 1; color: white; }
.page-hero-content h1 { color: white; margin-bottom: 0.5rem; }
.page-hero-content p { color: rgba(255,255,255,0.8); font-size: 1.05rem; }

/* ── Contact CTA ─────────────────────────────────────────────── */
.contact-cta .container { max-width: 700px; }
.contact-cta h2 { margin-bottom: 1rem; }
.contact-cta p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; }

/* ── Empty State ─────────────────────────────────────────────── */
.empty-state { text-align: center; padding: 5rem 2rem; }
.empty-logo { max-width: 140px; margin: 0 auto 2rem; opacity: 0.3; }
.empty-state h2 { margin-bottom: 1rem; color: var(--color-muted); }
.empty-state p { color: var(--color-muted); margin-bottom: 2rem; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .two-col { grid-template-columns: 1fr; gap: 3rem; }
  .about-brand { flex-direction: row; }
  .bull-detail-layout { grid-template-columns: 1fr; }
  .bull-photos { position: static; }
  .about-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 3; }
  .gallery-grid-home { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 3rem; }
  .header-inner { height: 60px; }
  .site-logo { height: 44px; }
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed; top: 60px; left: 0; right: 0; bottom: 0;
    background: var(--color-dark); z-index: 99;
    flex-direction: column; padding: 2rem;
    transform: translateX(100%); transition: transform 0.3s ease;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; gap: 0.5rem; }
  .main-nav a { font-size: 1.2rem; padding: 0.75rem 1rem; }
  .hero { min-height: 85vh; }
  .hero-logo { height: 110px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .bull-grid { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 2; }
  .gallery-grid-home { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .gallery-thumb-large { grid-column: span 1; grid-row: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; }
  .brand-stats { flex-direction: column; gap: 1rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .gallery-masonry { columns: 1; }
  .gallery-grid-home { grid-template-columns: 1fr; }
}
