/* ============================================================
   THE PRANCING PUP — Main Stylesheet
   Palette: Warm cream, deep forest green, soft gold
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;700&display=swap');

:root {
  --cream:      #FAF7F2;
  --cream-dark: #F0EBE1;
  --green-dark: #1C2B1E;
  --green-mid:  #2E4A31;
  --green-light:#4A7251;
  --gold:       #C9A84C;
  --gold-light: #E2C47A;
  --text:       #2A2A2A;
  --text-muted: #6B6860;
  --white:      #FFFFFF;
  --shadow:     0 4px 24px rgba(0,0,0,0.08);
  --radius:     8px;
  --transition: 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  font-size: 17px;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  color: var(--green-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ============================================================
   UTILITIES
   ============================================================ */

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 5rem 0; }

.section--alt { background: var(--cream-dark); }

.section--dark {
  background: var(--green-dark);
  color: var(--cream);
}

.section--dark h1,
.section--dark h2,
.section--dark h3 {
  color: var(--cream);
}

.section-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}

.text-center { text-align: center; }

.lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  font-weight: 300;
}

.divider {
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin: 1.25rem 0 2rem;
}

.divider--center { margin-left: auto; margin-right: auto; }

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  border: 2px solid transparent;
  text-align: center;
}

.btn--primary {
  background: var(--gold);
  color: var(--green-dark);
  border-color: var(--gold);
}

.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.35);
}

.btn--outline {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}

.btn--outline:hover {
  background: var(--cream);
  color: var(--green-dark);
  transform: translateY(-1px);
}

.btn--green {
  background: var(--green-mid);
  color: var(--cream);
  border-color: var(--green-mid);
}

.btn--green:hover {
  background: var(--green-light);
  border-color: var(--green-light);
  transform: translateY(-1px);
}

/* ============================================================
   HEADER / NAV
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--green-dark);
  box-shadow: 0 2px 16px rgba(0,0,0,0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo img {
  height: 52px;
  width: auto;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  color: var(--cream);
  font-size: 1.1rem;
  line-height: 1.2;
}

.logo-text span {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav__links a {
  color: var(--cream);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: color var(--transition);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav__links a:hover { color: var(--gold-light); }
.nav__links a:hover::after { width: 100%; }

.nav__social {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.nav__social a {
  color: var(--cream);
  opacity: 0.7;
  transition: opacity var(--transition), color var(--transition);
  display: flex;
  align-items: center;
}

.nav__social a:hover { opacity: 1; color: var(--gold); }

.nav__cta { margin-left: 0.5rem; }

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: all 0.3s;
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  background: var(--green-dark);
  color: var(--cream);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(74,114,81,0.25) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content h1 {
  color: var(--cream);
  margin-bottom: 1.25rem;
}

.hero-content h1 em {
  color: var(--gold);
  font-style: italic;
}

.hero-content .lead {
  color: rgba(250,247,242,0.8);
  margin-bottom: 2rem;
  font-size: 1.15rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.badge svg { flex-shrink: 0; }

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: 12px;
  width: 100%;
  height: 480px;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.hero-image-badge {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  background: var(--gold);
  color: var(--green-dark);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.85rem;
  line-height: 1.3;
  box-shadow: var(--shadow);
}

/* ============================================================
   TRUST BAR
   ============================================================ */

.trust-bar {
  background: var(--green-mid);
  padding: 1.25rem 0;
}

.trust-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--cream);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.trust-item svg { color: var(--gold); flex-shrink: 0; }

/* ============================================================
   WHY HOME-BASED SECTION
   ============================================================ */

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.why-point {
  display: flex;
  gap: 1rem;
}

.why-point-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--cream-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-mid);
  margin-top: 0.1rem;
}

.why-point-text strong {
  display: block;
  font-size: 1rem;
  color: var(--green-dark);
  margin-bottom: 0.25rem;
}

.why-point-text p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin: 0;
}

.why-image img {
  border-radius: 12px;
  height: 500px;
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 4px solid var(--gold);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.service-card__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.service-card .tag {
  display: inline-block;
  background: var(--cream-dark);
  color: var(--green-mid);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
  margin-bottom: 0.85rem;
}

.service-card p {
  font-size: 0.93rem;
  color: var(--text-muted);
}

.service-card ul {
  list-style: none;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.service-card ul li {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.service-card ul li::before {
  content: '✓';
  color: var(--green-light);
  font-weight: 700;
  flex-shrink: 0;
}

.price-badge {
  display: inline-block;
  margin-top: 1.25rem;
  background: var(--cream-dark);
  color: var(--text-muted);
  font-size: 0.8rem;
  font-style: italic;
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
}

/* ============================================================
   GALLERY
   ============================================================ */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/5;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

/* ============================================================
   ABOUT
   ============================================================ */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.about-image img {
  border-radius: 12px;
  width: 100%;
  height: 540px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.about-logo {
  width: 120px;
  margin-bottom: 1.5rem;
  opacity: 0.85;
}

/* ============================================================
   FAQ
   ============================================================ */

.faq-list {
  max-width: 720px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.25rem 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--green-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: background var(--transition);
}

.faq-question:hover { background: var(--cream); }

.faq-question .icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-mid);
  font-size: 1rem;
  font-family: 'Lato', sans-serif;
  transition: transform 0.25s, background 0.25s;
}

.faq-item.open .faq-question .icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--green-dark);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s;
}

.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

/* ============================================================
   CONTACT
   ============================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-detail-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--cream-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-mid);
}

.contact-detail-text strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.contact-detail-text a:hover { color: var(--green-light); text-decoration: underline; }

.booking-notice {
  background: var(--cream-dark);
  border-left: 4px solid var(--gold);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  font-style: italic;
}

.map-embed {
  border-radius: 12px;
  overflow: hidden;
  height: 300px;
  margin-top: 1rem;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Contact form */
.contact-form {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.contact-form h3 {
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-mid);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-success {
  display: none;
  background: #e8f5e9;
  color: #2e7d32;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-top: 1rem;
  font-size: 0.95rem;
}

/* ============================================================
   CTA BANNER
   ============================================================ */

.cta-banner {
  background: var(--green-mid);
  padding: 4rem 0;
  text-align: center;
}

.cta-banner h2 { color: var(--cream); }

.cta-banner p { color: rgba(250,247,242,0.8); margin: 1rem 0 2rem; }

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--green-dark);
  color: var(--cream);
  padding: 3.5rem 0 1.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand img {
  height: 60px;
  margin-bottom: 1rem;
  filter: brightness(0.95);
}

.footer-brand p {
  color: rgba(250,247,242,0.65);
  font-size: 0.9rem;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  opacity: 0.7;
  transition: opacity var(--transition), border-color var(--transition), color var(--transition);
}

.footer-social a:hover {
  opacity: 1;
  border-color: var(--gold);
  color: var(--gold);
}

.footer-col h4 {
  font-size: 0.75rem;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 0.6rem; }

.footer-col ul a {
  color: rgba(250,247,242,0.7);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-col ul a:hover { color: var(--cream); }

.footer-col p {
  color: rgba(250,247,242,0.7);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(250,247,242,0.45);
  margin: 0;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */

.page-hero {
  background: var(--green-dark);
  padding: 4rem 0 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(74,114,81,0.3) 0%, transparent 65%);
  pointer-events: none;
}

.page-hero h1 { color: var(--cream); position: relative; }

.page-hero p {
  color: rgba(250,247,242,0.75);
  max-width: 540px;
  margin: 1rem auto 0;
  font-size: 1.05rem;
  position: relative;
}

/* ============================================================
   SOCIAL PLACEHOLDER PAGE
   ============================================================ */

.social-placeholder {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
}

.social-placeholder h1 { margin-bottom: 1rem; }
.social-placeholder p { color: var(--text-muted); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .why-image { order: -1; }
  .why-image img { height: 320px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .nav__links { display: none; }
  .nav__social { display: none; }
  .nav__cta { display: none; }
  .nav-toggle { display: flex; }

  .nav.open .nav__links {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    top: 70px;
    background: var(--green-dark);
    padding: 2rem 1.5rem;
    gap: 1.5rem;
    z-index: 99;
  }

  .nav.open .nav__links a { font-size: 1.2rem; }
  .nav.open .nav__social { display: flex; padding: 0 1.5rem; }
  .nav.open .nav__cta { display: block; padding: 0 1.5rem; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trust-bar-inner { gap: 1rem; }
  .hero { padding: 3rem 0; }
  .section { padding: 3.5rem 0; }
  .services-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

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

.fade-up {
  animation: fadeUp 0.65s ease both;
}

.fade-up--1 { animation-delay: 0.1s; }
.fade-up--2 { animation-delay: 0.2s; }
.fade-up--3 { animation-delay: 0.35s; }
.fade-up--4 { animation-delay: 0.5s; }
