/*
Theme Name: Chino Farm Villa
Theme URI: https://chinofarmvilla.com
Author: Chino Farm Villa
Author URI: https://chinofarmvilla.com
Description: A warm, family-friendly WordPress theme custom-built for Chino Private Farm Villa, a private pool villa retreat in Alfonso, Cavite. Features hero banner, amenities grid, photo gallery with lightbox, virtual tour embed, rates page, and inquiry flow optimized for staycation guests.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: chinofarmvilla
Tags: custom-menu, custom-logo, featured-images, full-width-template, threaded-comments, translation-ready, block-styles, wide-blocks, accessibility-ready
*/

/* ==========================================================================
   Chino Farm Villa - Main Stylesheet
   Palette: Luxe dark navy + warm gold (matches brand flyer + logo)
   ========================================================================== */

:root {
  /* Brand tokens (kept under old names so templates still work) */
  --cfv-navy: #0D1B2A;          /* deep navy — page/footer base */
  --cfv-navy-deep: #050B14;     /* near-black for hero overlay */
  --cfv-navy-soft: #1B2D44;     /* lifted navy for cards on dark */
  --cfv-gold: #D4A93B;          /* primary brand gold */
  --cfv-gold-light: #E8C868;    /* hover / highlights */
  --cfv-gold-dark: #A88324;     /* pressed states */
  --cfv-cream: #FBF7EE;         /* warm off-white for light sections */
  --cfv-sand: #EFE6D2;          /* alt light background */
  --cfv-ink: #1A1A1A;           /* body text on light */
  --cfv-ink-soft: #4A4A4A;      /* muted body text */
  --cfv-white: #FFFFFF;

  /* Legacy aliases (templates reference these — point them at the new palette) */
  --cfv-green: var(--cfv-gold);
  --cfv-green-dark: var(--cfv-gold-dark);
  --cfv-green-light: var(--cfv-gold-light);
  --cfv-terracotta: var(--cfv-gold);
  --cfv-terracotta-dark: var(--cfv-gold-dark);
  --cfv-brown: var(--cfv-navy);
  --cfv-brown-soft: var(--cfv-ink-soft);
  --cfv-overlay: rgba(5, 11, 20, 0.55);

  --cfv-font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --cfv-font-script: 'Great Vibes', 'Playfair Display', cursive;
  --cfv-font-body: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --cfv-radius: 8px;
  --cfv-radius-lg: 16px;
  --cfv-shadow: 0 4px 16px rgba(62, 47, 28, 0.08);
  --cfv-shadow-lg: 0 12px 32px rgba(62, 47, 28, 0.16);

  --cfv-container: 1200px;
  --cfv-transition: all 0.3s ease;
}

/* Reset & base */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--cfv-font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--cfv-brown);
  background: var(--cfv-cream);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--cfv-font-heading);
  font-weight: 700;
  color: var(--cfv-brown);
  line-height: 1.25;
  margin: 0 0 0.6em 0;
}

h1 { font-size: clamp(2.2rem, 4vw, 3.4rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); }
h4 { font-size: 1.2rem; }

p { margin: 0 0 1em 0; }

a {
  color: var(--cfv-green-dark);
  text-decoration: none;
  transition: var(--cfv-transition);
}
a:hover { color: var(--cfv-terracotta); }

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

.container {
  width: 100%;
  max-width: var(--cfv-container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section--alt {
  background: var(--cfv-white);
}

.section--sand {
  background: var(--cfv-sand);
}

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

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

.section--dark .section__eyebrow { color: var(--cfv-gold); }
.section--dark .section__sub { color: rgba(251, 247, 238, 0.78); }

/* Script tagline accent (Tagalog flair like the brand flyer) */
.tagline-script {
  font-family: var(--cfv-font-script);
  color: var(--cfv-gold);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1;
  font-weight: 400;
  display: inline-block;
}

/* Gold accent rule */
.rule-gold {
  display: inline-block;
  width: 64px;
  height: 2px;
  background: var(--cfv-gold);
  margin: 0 auto 20px;
}

.section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px auto;
}

.section__eyebrow {
  display: inline-block;
  font-family: var(--cfv-font-body);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cfv-terracotta);
  font-weight: 700;
  margin-bottom: 12px;
}

.section__title { margin-bottom: 16px; }

.section__sub {
  font-size: 1.1rem;
  color: var(--cfv-brown-soft);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 999px;
  font-family: var(--cfv-font-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--cfv-transition);
}

.btn--primary {
  background: var(--cfv-terracotta);
  color: var(--cfv-white);
}
.btn--primary:hover {
  background: var(--cfv-terracotta-dark);
  color: var(--cfv-white);
  transform: translateY(-2px);
  box-shadow: var(--cfv-shadow-lg);
}

.btn--secondary {
  background: transparent;
  color: var(--cfv-white);
  border-color: var(--cfv-white);
}
.btn--secondary:hover {
  background: var(--cfv-white);
  color: var(--cfv-brown);
}

.btn--ghost {
  background: transparent;
  color: var(--cfv-green-dark);
  border-color: var(--cfv-green-dark);
}
.btn--ghost:hover {
  background: var(--cfv-green-dark);
  color: var(--cfv-white);
}

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 27, 42, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(212, 169, 59, 0.18);
}

.site-header .site-branding__text { color: var(--cfv-white); }
.site-header .site-branding__tagline { color: var(--cfv-gold); }
.site-header .primary-nav a { color: var(--cfv-cream); }
.site-header .primary-nav a:hover,
.site-header .primary-nav .current-menu-item a {
  background: var(--cfv-gold);
  color: var(--cfv-navy);
}
.site-header .nav-toggle span { background: var(--cfv-cream); }

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.site-branding {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-branding__logo img {
  max-height: 56px;
  width: auto;
}

.site-branding__text {
  font-family: var(--cfv-font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--cfv-brown);
  text-decoration: none;
  line-height: 1.1;
}

.site-branding__tagline {
  display: block;
  font-family: var(--cfv-font-body);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cfv-terracotta);
  font-weight: 600;
  margin-top: 2px;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.primary-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 4px;
}

.primary-nav a {
  display: block;
  padding: 10px 18px;
  font-weight: 600;
  color: var(--cfv-brown);
  border-radius: 999px;
}

.primary-nav a:hover,
.primary-nav .current-menu-item a {
  background: var(--cfv-green);
  color: var(--cfv-white);
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 44px;
  height: 44px;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cfv-brown);
  margin: 5px auto;
  transition: var(--cfv-transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--cfv-white);
  background-color: var(--cfv-navy);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 11, 20, 0.55) 0%, rgba(5, 11, 20, 0.82) 100%);
  z-index: 1;
}

.hero__logo {
  width: 120px;
  height: 120px;
  margin: 0 auto 24px auto;
  display: block;
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
  padding: 24px;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cfv-gold);
  font-weight: 700;
  margin-bottom: 20px;
  padding: 8px 22px;
  border: 1px solid var(--cfv-gold);
  border-radius: 999px;
  background: rgba(13, 27, 42, 0.35);
}

.hero__title {
  color: var(--cfv-white);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  margin-bottom: 20px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
}

.hero__sub {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  margin-bottom: 36px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================================================
   Welcome / Intro block
   ========================================================================== */
.welcome {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.welcome__image {
  border-radius: var(--cfv-radius-lg);
  overflow: hidden;
  box-shadow: var(--cfv-shadow-lg);
  aspect-ratio: 4 / 5;
}

.welcome__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.welcome__content .section__eyebrow { color: var(--cfv-terracotta); }

/* ==========================================================================
   Amenities grid
   ========================================================================== */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.amenity-card {
  background: var(--cfv-white);
  border-radius: var(--cfv-radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--cfv-shadow);
  transition: var(--cfv-transition);
  border: 1px solid transparent;
}

.amenity-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--cfv-shadow-lg);
  border-color: var(--cfv-green-light);
}

.amenity-card__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px auto;
  border-radius: 50%;
  background: var(--cfv-sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--cfv-green-dark);
}

.amenity-card__title {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.amenity-card__desc {
  color: var(--cfv-brown-soft);
  font-size: 0.95rem;
  margin: 0;
}

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--cfv-radius);
  aspect-ratio: 4 / 3;
  cursor: pointer;
  background: var(--cfv-sand);
}

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

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

.gallery-item::after {
  content: '\2197';
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--cfv-brown);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--cfv-transition);
  font-size: 18px;
  font-weight: 700;
}

.gallery-item:hover::after { opacity: 1; }

.gallery-item--tall { grid-row: span 2; aspect-ratio: 3 / 4; }

/* Virtual tour embed */
.virtual-tour {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--cfv-radius-lg);
  overflow: hidden;
  box-shadow: var(--cfv-shadow-lg);
  background: var(--cfv-brown);
}

.virtual-tour iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.virtual-tour__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--cfv-cream);
  text-align: center;
  padding: 24px;
}

.virtual-tour__placeholder svg { margin-bottom: 16px; }

/* Lightbox */
.cfv-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.cfv-lightbox.is-open { display: flex; }

.cfv-lightbox__img {
  max-width: 92%;
  max-height: 88vh;
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
}

.cfv-lightbox__close,
.cfv-lightbox__nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  border: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  transition: var(--cfv-transition);
}
.cfv-lightbox__close:hover,
.cfv-lightbox__nav:hover { background: rgba(255, 255, 255, 0.25); }

.cfv-lightbox__close { top: 24px; right: 24px; }
.cfv-lightbox__nav--prev { left: 24px; top: 50%; transform: translateY(-50%); }
.cfv-lightbox__nav--next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ==========================================================================
   Rates / Pricing
   ========================================================================== */
.rates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.rate-card {
  background: var(--cfv-white);
  border-radius: var(--cfv-radius-lg);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--cfv-shadow);
  position: relative;
  transition: var(--cfv-transition);
}

.rate-card--featured {
  background: var(--cfv-navy);
  color: var(--cfv-white);
  transform: scale(1.04);
  border: 2px solid var(--cfv-gold);
}

.rate-card--featured .rate-card__title,
.rate-card--featured .rate-card__price { color: var(--cfv-white); }

.rate-card--featured .rate-card__period { color: var(--cfv-cream); }

.rate-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cfv-terracotta);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
}

.rate-card__title {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.rate-card__period {
  font-size: 0.9rem;
  color: var(--cfv-brown-soft);
  margin-bottom: 24px;
}

.rate-card__price {
  font-family: var(--cfv-font-heading);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 24px;
  display: block;
}

.rate-card__price small {
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.7;
}

.rate-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  text-align: left;
}

.rate-card__features li {
  padding: 8px 0;
  border-bottom: 1px dashed rgba(62, 47, 28, 0.12);
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.rate-card--featured .rate-card__features li {
  border-color: rgba(255, 255, 255, 0.18);
}

.rate-card__features li::before {
  content: '\2713';
  color: var(--cfv-green);
  font-weight: 700;
  flex-shrink: 0;
}

.rate-card--featured .rate-card__features li::before { color: var(--cfv-cream); }

.rate-note {
  text-align: center;
  margin-top: 40px;
  color: var(--cfv-brown-soft);
  font-size: 0.95rem;
}

/* ==========================================================================
   Add-on services strip (charcoal, coffee, firewoods, drinks, ice)
   ========================================================================== */
.addons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
}

.addon-card {
  background: var(--cfv-white);
  border-radius: var(--cfv-radius);
  padding: 20px;
  text-align: center;
  box-shadow: var(--cfv-shadow);
  transition: var(--cfv-transition);
}

.addon-card:hover { transform: translateY(-3px); box-shadow: var(--cfv-shadow-lg); }

.addon-card__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--cfv-radius);
  overflow: hidden;
  margin-bottom: 12px;
  background: var(--cfv-sand);
}

.addon-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.addon-card__title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  color: var(--cfv-brown);
}

/* ==========================================================================
   Location / Map
   ========================================================================== */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}

.location-map {
  aspect-ratio: 4 / 3;
  border-radius: var(--cfv-radius-lg);
  overflow: hidden;
  box-shadow: var(--cfv-shadow-lg);
}

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

.location-info p {
  font-size: 1.05rem;
  color: var(--cfv-brown-soft);
}

.location-info__address {
  font-weight: 700;
  color: var(--cfv-brown);
  font-size: 1.15rem;
}

/* ==========================================================================
   CTA banner
   ========================================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--cfv-navy-soft) 0%, var(--cfv-navy-deep) 100%);
  color: var(--cfv-white);
  text-align: center;
  padding: 80px 24px;
  border-radius: var(--cfv-radius-lg);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 169, 59, 0.25);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 60%;
  height: 180%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
}

.cta-banner__title {
  color: var(--cfv-white);
  margin-bottom: 16px;
  position: relative;
}

.cta-banner__sub {
  font-size: 1.15rem;
  margin-bottom: 32px;
  opacity: 0.95;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.cta-banner .btn { position: relative; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--cfv-brown);
  color: var(--cfv-cream);
  padding: 64px 0 24px;
}

.site-footer a { color: var(--cfv-cream); }
.site-footer a:hover { color: var(--cfv-terracotta); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-col h4 {
  color: var(--cfv-white);
  font-family: var(--cfv-font-heading);
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.footer-col p { font-size: 0.95rem; opacity: 0.85; }

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

.footer-col li { padding: 6px 0; font-size: 0.95rem; }

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--cfv-transition);
}

.footer-socials a:hover { background: var(--cfv-terracotta); transform: translateY(-2px); }

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
  text-align: center;
  font-size: 0.88rem;
  opacity: 0.75;
}

/* ==========================================================================
   Page hero (inner pages)
   ========================================================================== */
.page-hero {
  background: linear-gradient(135deg, var(--cfv-navy-soft) 0%, var(--cfv-navy-deep) 100%);
  color: var(--cfv-white);
  padding: 96px 0 64px;
  text-align: center;
  border-bottom: 2px solid var(--cfv-gold);
}

.page-hero__title {
  color: var(--cfv-white);
  margin-bottom: 12px;
}

.page-hero__sub { opacity: 0.9; font-size: 1.1rem; }

/* Page content */
.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 24px;
}

.page-content h2 { margin-top: 1.6em; }

/* ==========================================================================
   Contact form
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-form {
  background: var(--cfv-white);
  padding: 40px;
  border-radius: var(--cfv-radius-lg);
  box-shadow: var(--cfv-shadow);
}

.form-field {
  margin-bottom: 20px;
}

.form-field label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 0.95rem;
  color: var(--cfv-brown);
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--cfv-sand);
  border-radius: var(--cfv-radius);
  font-family: inherit;
  font-size: 1rem;
  background: var(--cfv-cream);
  color: var(--cfv-brown);
  transition: var(--cfv-transition);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--cfv-green);
  background: var(--cfv-white);
}

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

.contact-info-card {
  background: var(--cfv-navy);
  color: var(--cfv-white);
  padding: 40px;
  border-radius: var(--cfv-radius-lg);
  border: 1px solid rgba(212, 169, 59, 0.3);
}

.contact-info-card h3 { color: var(--cfv-white); }

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 1rem;
}

.contact-info-list svg { flex-shrink: 0; margin-top: 3px; }

/* ==========================================================================
   Single post / blog
   ========================================================================== */
.post-meta {
  color: var(--cfv-brown-soft);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.post-thumbnail img {
  border-radius: var(--cfv-radius-lg);
  margin-bottom: 32px;
}

/* ==========================================================================
   Utilities
   ========================================================================== */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-4 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .welcome,
  .location-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .section { padding: 60px 0; }
  .hero { min-height: 70vh; }
}

@media (max-width: 720px) {
  .nav-toggle { display: block; }

  .primary-nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--cfv-cream);
    flex-direction: column;
    padding: 24px;
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
    transform: translateY(-200%);
    transition: transform 0.3s ease;
  }

  .primary-nav.is-open { transform: translateY(0); }

  .primary-nav ul {
    flex-direction: column;
    width: 100%;
    gap: 4px;
  }

  .primary-nav a {
    display: block;
    width: 100%;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .rate-card--featured { transform: none; }

  .contact-form,
  .contact-info-card { padding: 24px; }
}

/* WordPress core classes */
.alignleft { float: left; margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }
.aligncenter { display: block; margin: 16px auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.9rem; color: var(--cfv-brown-soft); text-align: center; padding-top: 8px; }
.screen-reader-text {
  border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
  height: 1px; margin: -1px; overflow: hidden; padding: 0;
  position: absolute; width: 1px; word-wrap: normal !important;
}
