/* Front page styles */
.hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.52);
  transition: transform 8s ease;
}
.hero:hover .hero-bg-img {
  transform: scale(1.04);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(44, 36, 22, 0.65) 0%,
    rgba(49, 79, 115, 0.25) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy-light);
  margin-bottom: 1.2rem;
}
.hero h1 {
  color: var(--white);
  max-width: 780px;
  font-weight: 300;
  line-height: 1.1;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-sub {
  margin: 1.5rem 0 2.8rem;
  font-size: 1.1rem;
  color: rgba(253, 252, 250, 0.8);
  max-width: 520px;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 2;
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
}

.highlights {
  background: var(--navy-deeper);
  padding: 0;
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.highlights-grid--full {
  max-width: 100%;
  padding: 0;
}
.highlight-item {
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(201, 185, 154, 0.15);
  transition: var(--transition);
}
.highlight-item:last-child {
  border-right: none;
}
.highlight-item:hover {
  background: rgba(74, 107, 143, 0.12);
}
.highlight-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.highlight-item h4 {
  color: var(--gold-light);
  margin-bottom: 0.4rem;
}
.highlight-item p {
  font-size: 0.82rem;
  color: var(--sand);
}

.section-no-pad {
  padding: 0;
}
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.about-img-wrap {
  position: relative;
  overflow: hidden;
}
.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}
.about-img-wrap:hover img {
  transform: scale(1.05);
}
.about-img-badge {
  position: absolute;
  bottom: 2.5rem;
  right: -1.5rem;
  background: var(--navy);
  color: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
}
.about-img-badge .num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  line-height: 1;
  display: block;
}
.about-img-badge .label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}
.about-text {
  padding: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream);
}
.about-text blockquote {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--navy-deeper);
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  margin: 1.5rem 0 2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  cursor: pointer;
  text-decoration: none;
}
.service-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s ease;
}
.service-card-img--accommodation {
  background-image: url("../../../accommodation.JPG");
}
.service-card-img--outdoor {
  background-image: url("../../../wedding-1.jpg");
}
.service-card-img--grounds {
  background-image: url("../../../team-building.jpg");
}
.service-card:hover .service-card-img {
  transform: scale(1.08);
}
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(44, 36, 22, 0.92) 0%,
    rgba(44, 36, 22, 0.1) 55%
  );
  transition: var(--transition);
}

.service-card:hover .service-card-overlay {
  background: linear-gradient(
    to top,
    rgba(49, 79, 115, 0.9) 0%,
    rgba(44, 36, 22, 0.15) 55%
  );
}

.service-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
}

.service-card-content .pill {
  margin-bottom: 0.75rem;
}

.service-card-content h3 {
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.service-card-content p {
  color: rgba(253, 252, 250, 0.75);
  font-size: 0.85rem;
  margin-bottom: 1rem;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    opacity 0.4s ease;
  opacity: 0;
}

.service-card:hover .service-card-content p {
  max-height: 120px;
  opacity: 1;
}
.service-card-content .arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  transition: var(--transition);
}
.service-card:hover .service-card-content .arrow {
  gap: 0.7rem;
}

.farm-strip {
  background: var(--navy-deeper);
  padding: 4rem 0;
}
.farm-strip-inner {
  display: flex;
  align-items: center;
  gap: 4rem;
}
.farm-strip-text {
  flex: 1;
}
.farm-strip-text h3 {
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}
.farm-strip-text p {
  color: var(--sand);
}
.text-navy-light {
  color: var(--navy-light);
}
.btn-outline-gold-light {
  color: var(--gold-light);
  border-color: var(--gold);
}
.farm-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.2rem;
}
.farm-tag {
  background: rgba(74, 107, 143, 0.2);
  color: var(--navy-light);
  border: 1px solid rgba(74, 107, 143, 0.3);
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  font-size: 0.78rem;
}
.farm-img {
  width: 420px;
  height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  flex-shrink: 0;
}
.farm-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials {
  background: var(--cream);
}
.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 2px 16px rgba(44, 36, 22, 0.06);
}
.testimonial-card p {
  font-family: var(--font-display);
  color: var(--navy-deeper);
  margin-bottom: 1.5rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  overflow: hidden;
}
.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-name {
  font-size: 0.9rem;
  font-weight: 500;
}
.testimonial-type {
  font-size: 0.78rem;
  color: var(--text-light);
}
.stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 0.3rem;
}

.cta-banner {
  background: var(--navy);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: radial-gradient(
    circle at 60% 50%,
    rgba(74, 107, 143, 0.4) 0%,
    transparent 60%
  );
}
.cta-banner h2,
.cta-banner p,
.cta-banner .flex {
  position: relative;
  z-index: 1;
}
.cta-banner h2 {
  color: var(--white);
}
.cta-banner p {
  color: rgba(253, 252, 250, 0.8);
  max-width: 520px;
  margin: 1rem auto 2.5rem;
}
.cta-banner .flex {
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-split {
    grid-template-columns: 1fr;
  }
  .about-img-wrap {
    height: 380px;
  }
  .about-text {
    padding: 3rem 2rem;
  }
  .about-img-badge {
    right: 2rem;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-slider {
    grid-template-columns: 1fr;
  }
  .farm-strip-inner {
    flex-direction: column;
    gap: 2rem;
  }
  .farm-img {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    aspect-ratio: 4/3;
  }
}
