:root {
  --bg: #f6f2e8;
  --ink: #1f1a16;
  --muted: #5b5248;
  --brand: #8b1e1e;
  --brand-dark: #5f0f0f;
  --accent: #c7902e;
  --panel: #fffaf1;
  --shadow: 0 12px 30px rgba(18, 10, 4, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top right, #ead8b4 0%, var(--bg) 45%),
    var(--bg);
  line-height: 1.55;
}

section[id] {
  scroll-margin-top: 110px;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.hero {
  min-height: 60vh;
  background: linear-gradient(
      105deg,
      rgba(20, 11, 7, 0.76) 0%,
      rgba(20, 11, 7, 0.38) 55%,
      rgba(20, 11, 7, 0.15) 100%
    ),
    url("assets/images/hero-angus.jpg")
      center/cover;
  color: #fff9f0;
  display: flex;
  flex-direction: column;
  padding-top: 112px;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  background: rgba(22, 12, 8, 0.72);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 241, 220, 0.18);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  height: 56px;
  width: auto;
  display: block;
}

.brand {
  margin-left: -8px;
}

.nav-cta {
  color: #ffffff;
  text-decoration: none;
  border: 1px solid rgba(255, 247, 235, 0.5);
  padding: 0.6rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  transition: background-color 170ms ease, border-color 170ms ease,
    transform 170ms ease;
}

.nav-cta:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

.menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  margin-left: auto;
}

.menu a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: right;
}

.menu a:hover {
  color: #ffffff;
  opacity: 0.82;
}

.hero-content {
  margin-top: auto;
  padding: 2rem 0 4.2rem;
  max-width: 860px;
  animation: rise 700ms ease-out both;
}

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--accent);
}

.hero h1 {
  margin: 0.35rem 0 1rem;
  font-family: "Bree Serif", serif;
  line-height: 1.1;
  font-size: clamp(2rem, 5.6vw, 3.9rem);
}

.hero p {
  color: #f4ebdd;
  font-size: clamp(1rem, 2vw, 1.13rem);
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  text-decoration: none;
  font-weight: 800;
  border-radius: 999px;
  padding: 0.8rem 1.25rem;
  display: inline-block;
  transition: transform 170ms ease, box-shadow 170ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--brand);
  color: #fff6ef;
  box-shadow: 0 8px 20px rgba(139, 30, 30, 0.4);
}

.btn-primary:hover {
  background: var(--brand-dark);
}

.btn-secondary {
  color: #fff5e9;
  border: 1px solid rgba(255, 245, 233, 0.65);
}

.trust {
  margin: 3rem auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.trust article {
  background: var(--panel);
  border: 1px solid #e8d5bc;
  box-shadow: var(--shadow);
  border-radius: 18px;
  padding: 1.25rem;
}

.trust .section-head {
  grid-column: 1 / -1;
  margin-bottom: 0.2rem;
}

.trust h2,
.section-head h2,
.contact h2 {
  margin: 0.2rem 0 0.7rem;
  font-family: "Bree Serif", serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.trust p:not(.eyebrow),
.bull-copy p,
.stats p,
.contact p {
  margin: 0;
  color: var(--muted);
}

.bulls {
  padding: 2rem 0 2.6rem;
}

.section-head {
  margin-bottom: 1.2rem;
}

.bull-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.bull-card {
  background: var(--panel);
  border: 1px solid #e8d5bc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: translateY(10px);
  opacity: 0;
  animation: reveal 650ms ease-out forwards;
}

.bull-card:nth-child(2) {
  animation-delay: 120ms;
}

.bull-card:nth-child(3) {
  animation-delay: 220ms;
}

.bull-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.bull-copy {
  padding: 1rem;
}

.bull-copy h3 {
  margin: 0 0 0.5rem;
  font-family: "Bree Serif", serif;
  font-size: 1.35rem;
}

.bull-copy p + p {
  margin-top: 0.55rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 1rem auto 3rem;
}

.specialists {
  margin: 0 auto 3rem;
}

.specialists .section-head p {
  max-width: 760px;
}

.specialist-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.specialist-card {
  background: var(--panel);
  border: 1px solid #e8d5bc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.specialist-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.specialist-copy {
  padding: 1rem;
}

.specialist-copy h3 {
  margin: 0 0 0.5rem;
  font-family: "Bree Serif", serif;
  font-size: 1.3rem;
}

.specialist-copy .quote {
  margin: 0;
  color: var(--muted);
  font-style: italic;
}

.stats article {
  background: linear-gradient(145deg, #fff8ea, #f0dfbf);
  border: 1px solid #ddc8a7;
  border-radius: 16px;
  padding: 1rem;
}

.stats span {
  font-family: "Bree Serif", serif;
  font-size: 1.35rem;
  color: #64330f;
}

.testimonials {
  margin: 0 auto 3rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.testimonial-card {
  background: var(--panel);
  border: 1px solid #e8d5bc;
  border-radius: 16px;
  padding: 1.1rem;
  box-shadow: var(--shadow);
}

.testimonial-card p {
  margin: 0 0 0.9rem;
  color: var(--muted);
}

.testimonial-card h3 {
  margin: 0;
  font-family: "Bree Serif", serif;
  font-size: 1.1rem;
}

.testimonial-card span {
  display: block;
  margin-top: 0.25rem;
  color: #6c6258;
  font-size: 0.92rem;
}

.contact {
  background: linear-gradient(120deg, #2b180f, #4e2417);
  color: #fff8ee;
  padding: 2.4rem 0;
}

.contact-wrap {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.contact p {
  color: #f3decc;
  max-width: 640px;
}

.footer {
  padding: 1.2rem 0;
  background: #1d110c;
  color: #d6bc9d;
  font-size: 0.9rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer p {
  margin: 0;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 920px) {
  .bull-grid,
  .stats,
  .testimonial-grid,
  .specialist-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 700px) {
  .trust,
  .bull-grid,
  .stats,
  .testimonial-grid,
  .specialist-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 52vh;
    padding-top: 170px;
  }

  .nav-inner {
    flex-wrap: wrap;
    justify-content: center;
  }

  .brand img {
    height: 46px;
  }

  .menu {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem 1rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}
