/* ============================================
   Lodge Farm Country Residence — Stylesheet
   Brand: Heritage countryside luxury
   ============================================ */

:root {
  --brown: #3E2B1E;
  --brown-light: #5C4A3A;
  --olive: #5C6B2F;
  --olive-light: #7A8B4A;
  --cream: #FAF8F5;
  --warm-grey: #F0EDE8;
  --border: #D9D3CB;
  --text: #2C2C2C;
  --text-light: #6B6560;
  --white: #FFFFFF;
  --shadow: 0 4px 24px rgba(62,43,30,0.08);
  --shadow-lg: 0 8px 40px rgba(62,43,30,0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--brown); text-decoration: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Fade-in Animation ---- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-primary {
  background: var(--brown);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--brown-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.btn-secondary {
  background: transparent;
  color: var(--brown);
  border: 1.5px solid var(--brown);
}
.btn-secondary:hover {
  background: var(--brown);
  color: var(--cream);
}
.btn-large {
  padding: 18px 40px;
  font-size: 15px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: all 0.4s ease;
  transform: translateY(-100%);
  pointer-events: none;
}
.nav-visible {
  transform: translateY(0);
  background: rgba(250,248,245,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  pointer-events: all;
  box-shadow: 0 1px 12px rgba(62,43,30,0.06);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--brown);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.3px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--brown); }
.nav-cta {
  padding: 8px 20px !important;
  background: var(--brown) !important;
  color: var(--cream) !important;
  font-size: 12px !important;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.nav-cta:hover { background: var(--brown-light) !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 20px;
  position: relative;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--brown);
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 9px; }
.nav-toggle span:nth-child(3) { top: 18px; }
.nav-toggle.open span:nth-child(1) { top: 9px; transform: rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { top: 9px; transform: rotate(-45deg); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(62,43,30,0.3) 0%,
    rgba(62,43,30,0.5) 50%,
    rgba(62,43,30,0.7) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--cream);
  padding: 0 24px;
}
.hero-crest {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 8px 20px;
  border: 1px solid rgba(250,248,245,0.35);
  margin-bottom: 28px;
  color: rgba(250,248,245,0.85);
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -1px;
}
.hero h1 span {
  display: block;
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-top: 8px;
  color: rgba(250,248,245,0.8);
}
.hero-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(250,248,245,0.75);
  margin-bottom: 36px;
  font-weight: 400;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: rgba(250,248,245,0.5);
  z-index: 2;
}
.hero-scroll span {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(250,248,245,0.3);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 40px;
  background: rgba(250,248,245,0.8);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { top: -40px; }
  100% { top: 40px; }
}

/* ============================================
   SECTIONS — Common
   ============================================ */
.section {
  padding: 100px 0;
}
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 12px;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 16px;
}
.section-intro {
  max-width: 640px;
  margin: 0 auto;
  color: var(--text-light);
  font-size: 15px;
}

/* ============================================
   STORY
   ============================================ */
.section-story {
  background: var(--white);
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.story-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 24px;
  line-height: 1.2;
}
.story-lead {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 16px;
}
.story-text p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 15px;
}
.drop-cap {
  float: left;
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  line-height: 0.8;
  padding-right: 10px;
  padding-top: 4px;
  color: var(--brown);
  font-weight: 700;
}
.story-details {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.story-detail strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--brown);
  margin-bottom: 2px;
}
.story-detail span {
  font-size: 12px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.story-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}
.story-img-main {
  overflow: hidden;
}
.story-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.story-img-main:hover img { transform: scale(1.03); }
.story-img-secondary {
  overflow: hidden;
}
.story-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  scale: 1.15;
}

/* ============================================
   POOL FEATURE
   ============================================ */
.section-feature {
  padding: 0;
  background: var(--brown);
}
.feature-split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  min-height: 500px;
}
.feature-image {
  overflow: hidden;
}
.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
  color: var(--cream);
}
.feature-text .section-label {
  color: var(--olive-light);
}
.feature-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}
.feature-text p {
  color: rgba(250,248,245,0.7);
  font-size: 15px;
  line-height: 1.8;
}

/* ============================================
   ACCOMMODATION
   ============================================ */
.section-accommodation {
  background: var(--cream);
}
.accommodation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 60px;
}
.unit-card {
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.unit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.unit-image {
  position: relative;
  overflow: hidden;
  height: 300px;
}
.unit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.unit-card:hover .unit-image img { transform: scale(1.05); }
.unit-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--olive);
  color: var(--cream);
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.unit-content {
  padding: 28px;
}
.unit-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 10px;
}
.unit-content p {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 16px;
  line-height: 1.7;
}
.unit-price {
  font-size: 14px;
  color: var(--text-light);
}
.unit-price strong {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--brown);
}

/* Amenities */
.amenities {
  background: var(--white);
  padding: 40px;
  margin-bottom: 60px;
  box-shadow: var(--shadow);
}
.amenities h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--brown);
  text-align: center;
  margin-bottom: 28px;
}
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.amenity {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  padding: 16px;
}
.amenity svg {
  color: var(--olive);
}
.amenity span {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}

/* Current Stay */
.current-stay {
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.current-stay-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.current-stay-images {
  overflow: hidden;
}
.current-stay-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
}
.current-stay-text {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.current-stay-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--brown);
  margin-bottom: 12px;
}
.current-stay-text p {
  color: var(--text-light);
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.7;
}
.rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.stars {
  color: var(--olive);
  font-size: 16px;
  letter-spacing: 2px;
}
.rating span {
  font-size: 13px;
  color: var(--text-light);
}

/* ============================================
   EXPLORE
   ============================================ */
.section-explore {
  background: var(--white);
}
.explore-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.explore-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
}
.explore-card-large {
  grid-column: span 2;
  min-height: 420px;
}
.explore-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.explore-card:hover > img { transform: scale(1.05); }
.explore-card-content {
  position: relative;
  z-index: 2;
  padding: 32px;
  width: 100%;
  background: linear-gradient(to top, rgba(62,43,30,0.85) 0%, rgba(62,43,30,0.4) 60%, transparent 100%);
  color: var(--cream);
}
.explore-card-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin-bottom: 12px;
}
.explore-card-content ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
}
.explore-card-content li {
  font-size: 13px;
  color: rgba(250,248,245,0.8);
  position: relative;
  padding-left: 14px;
}
.explore-card-content li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--olive-light);
  font-weight: 700;
}

/* ============================================
   GALLERY
   ============================================ */
.section-gallery {
  background: var(--cream);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery-item {
  overflow: hidden;
  height: 260px;
}
.gallery-wide {
  grid-column: span 2;
  height: 320px;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}

/* ============================================
   REVIEWS
   ============================================ */
.section-reviews {
  background: var(--brown);
  color: var(--cream);
}
.section-reviews .section-label { color: var(--olive-light); }
.section-reviews .section-header h2 { color: var(--cream); }
.review-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}
.review-score {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
}
.section-reviews .stars {
  color: var(--olive-light);
  font-size: 20px;
}
.review-count {
  font-size: 13px;
  color: rgba(250,248,245,0.5);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.review-card {
  background: rgba(250,248,245,0.06);
  border: 1px solid rgba(250,248,245,0.1);
  padding: 32px;
  position: relative;
}
.review-card::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  color: var(--olive);
  opacity: 0.4;
  position: absolute;
  top: 12px;
  left: 20px;
  line-height: 1;
}
.review-card p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(250,248,245,0.85);
  margin-bottom: 20px;
  font-style: italic;
  position: relative;
  z-index: 1;
}
.review-card footer {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.review-card footer strong {
  font-size: 14px;
  color: var(--cream);
}
.review-card footer span {
  font-size: 12px;
  color: rgba(250,248,245,0.4);
}

/* ============================================
   BOOK / CONTACT
   ============================================ */
.section-book {
  padding: 0;
  position: relative;
  overflow: hidden;
}
.book-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.book-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.book-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(62,43,30,0.55) 0%,
    rgba(62,43,30,0.7) 30%,
    rgba(62,43,30,0.82) 100%
  );
}
.book-container {
  position: relative;
  z-index: 2;
}
.book-hero-content {
  text-align: center;
  color: var(--cream);
  padding: 80px 24px 48px;
}
.book-hero-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 12px;
}
.book-hero-content p {
  font-size: 16px;
  color: rgba(250,248,245,0.75);
}
.book-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 0 0 80px;
}
.book-card {
  background: rgba(250,248,245,0.95);
  backdrop-filter: blur(8px);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}
.book-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--brown);
  margin-bottom: 10px;
}
.book-card p {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.7;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--text-light);
}
.contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--olive);
}
.contact-item a {
  color: var(--text);
  font-weight: 500;
  transition: color 0.2s;
}
.contact-item a:hover { color: var(--olive); }
.getting-here-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.getting-here-item {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.getting-here-item:last-child { border-bottom: none; padding-bottom: 0; }
.getting-here-item strong {
  display: block;
  font-size: 13px;
  color: var(--brown);
  margin-bottom: 2px;
}
.getting-here-item span {
  font-size: 13px;
  color: var(--text-light);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--brown);
  color: rgba(250,248,245,0.6);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(250,248,245,0.1);
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
  line-height: 1.3;
}
.footer-logo span {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(250,248,245,0.5);
}
.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  color: rgba(250,248,245,0.4);
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--cream); }
.footer-links h4 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--cream);
  margin-bottom: 16px;
}
.footer-links a {
  display: block;
  font-size: 13px;
  color: rgba(250,248,245,0.5);
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--cream); }
.footer-bottom {
  padding-top: 24px;
  text-align: center;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(250,248,245,0.3);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .story-grid { gap: 40px; }
  .feature-split { grid-template-columns: 1fr; }
  .feature-image { height: 360px; }
  .feature-text { padding: 48px; }
  .book-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { max-height: 400px; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 14px 24px !important;
    border-top: 1px solid var(--border);
  }
  .nav-cta {
    background: transparent !important;
    color: var(--brown) !important;
  }

  .section { padding: 64px 0; }
  .story-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .story-images { order: -1; }
  .story-images { grid-template-columns: 1fr 1fr; }
  .story-img-main img, .story-img-secondary img { min-height: 220px; }
  .story-details { gap: 20px; }

  .accommodation-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .amenities { padding: 28px; }

  .current-stay-inner { grid-template-columns: 1fr; }
  .current-stay-images img { min-height: 260px; }
  .current-stay-text { padding: 32px; }

  .explore-grid { grid-template-columns: 1fr; }
  .explore-card-large { grid-column: span 1; min-height: 320px; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-wide { grid-column: span 2; }
  .gallery-item { height: 200px; }
  .gallery-wide { height: 240px; }

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

  .book-hero-content { padding: 60px 24px 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 36px; }
  .hero h1 span { font-size: 14px; letter-spacing: 3px; }
  .section-header h2 { font-size: 26px; }
  .story-text h2 { font-size: 26px; }
  .story-details { flex-direction: column; gap: 16px; }
  .feature-text { padding: 32px 24px; }
  .amenities-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-wide { grid-column: span 2; }
  .book-card { padding: 24px; }
  .review-card { padding: 24px; }
}

/* Print */
@media print {
  .nav, .hero-scroll { display: none; }
  .hero { height: auto; min-height: 300px; }
  .section { padding: 40px 0; }
  .fade-in { opacity: 1; transform: none; }
}
