/* ===========================
   BajoHoney.com - Main Styles
   Optimized for Performance, Accessibility (WCAG 2.1 AA), and Responsive Design
   Color Palette:
   - Honey Gold: #D4A030
   - Warm Cream: #FFF8EC
   - Tropical Green: #2D6A4F
   - Ocean Blue: #1B6B93
   - Dark: #1A1A1A
   - White: #FFFFFF
   =========================== */

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colors */
  --honey-gold: #d4a030;
  --honey-gold-light: #e8c36a;
  --honey-gold-dark: #b8891e;
  --warm-cream: #fff8ec;
  --tropical-green: #2d6a4f;
  --tropical-green-light: #40916c;
  --tropical-green-dark: #1b4332;
  --ocean-blue: #1b6b93;
  --ocean-blue-light: #2a8cb8;
  --dark: #1a1a1a;
  --dark-light: #2d2d2d;
  --gray: #666666;
  --gray-light: #999999;
  --gray-lighter: #e8e8e8;
  --white: #ffffff;

  /* Typography */
  --font-heading: "Playfair Display", serif;
  --font-body: "Lato", sans-serif;

  /* Layout */
  --max-width: 1200px;
  --transition: all 0.3s ease;

  /* Breakpoints (reference) */
  --bp-xs: 375px;
  --bp-sm: 480px;
  --bp-md: 768px;
  --bp-lg: 1024px;
  --bp-xl: 1280px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  background-color: var(--warm-cream);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Skip Link (Accessibility) --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--honey-gold);
  color: var(--white);
  padding: 8px 16px;
  z-index: 9999;
  font-weight: 700;
  font-size: 0.95rem;
  transition: top 0.2s;
  text-decoration: none;
}

.skip-link:focus {
  top: 0;
}

/* --- Focus Styles (Accessibility) --- */
:focus-visible {
  outline: 3px solid var(--honey-gold);
  outline-offset: 3px;
  border-radius: 4px;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
}
h2 {
  font-size: 2.5rem;
}
h3 {
  font-size: 1.5rem;
}
h4 {
  font-size: 1.25rem;
}

p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-transform: uppercase;
  min-height: 48px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  text-align: center;
}

.btn-primary {
  background-color: var(--honey-gold);
  color: var(--white);
  border-color: var(--honey-gold);
}

.btn-primary:hover {
  background-color: var(--honey-gold-dark);
  border-color: var(--honey-gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 160, 48, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-secondary:hover {
  background-color: var(--white);
  color: var(--dark);
  transform: translateY(-2px);
}

.btn-green {
  background-color: var(--tropical-green);
  color: var(--white);
  border-color: var(--tropical-green);
}

.btn-green:hover {
  background-color: var(--tropical-green-dark);
  border-color: var(--tropical-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(45, 106, 79, 0.3);
}

.btn-outline-gold {
  background-color: transparent;
  color: var(--honey-gold);
  border-color: var(--honey-gold);
}

.btn-outline-gold:hover {
  background-color: var(--honey-gold);
  color: var(--white);
  transform: translateY(-2px);
}

/* --- Section Utilities --- */
.section {
  padding: 100px 0;
}

.section-cream {
  background-color: #fff3dc;
}

.section-dark {
  background-color: var(--dark);
  color: var(--white);
}

.section-dark p {
  color: var(--gray-light);
}

.section-green {
  background-color: var(--tropical-green-dark);
  color: var(--white);
}

.section-green p {
  color: rgba(255, 255, 255, 0.8);
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--honey-gold);
  margin-bottom: 16px;
}

.section-divider {
  width: 60px;
  height: 3px;
  background-color: var(--honey-gold);
  margin: 20px auto;
  border: none;
}

.text-center {
  text-align: center;
}

/* ===========================
   HEADER / NAVIGATION
   =========================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 12px 0;
  transition: var(--transition);
  height: 90px;
  display: flex;
  align-items: center;
}

.header.scrolled {
  background-color: rgba(26, 26, 26, 0.95);
  padding: 6px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
}

.logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

.header.scrolled .logo-img {
  height: 52px;
}

.footer .logo-img {
  height: 65px;
}

.logo-icon {
  width: 36px;
  height: 36px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: clamp(16px, 4vw, 22px);
  font-weight: 700;
  color: var(--white);
}

.logo-text span {
  color: var(--honey-gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding: 8px 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--honey-gold);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  border: 2px solid var(--honey-gold) !important;
  padding: 8px 24px !important;
  border-radius: 4px;
  color: var(--honey-gold) !important;
  font-weight: 700 !important;
}

.nav-cta:hover {
  background-color: var(--honey-gold) !important;
  color: var(--white) !important;
}

.nav-cta::after {
  display: none !important;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.menu-toggle span {
  width: 28px;
  height: 2px;
  background-color: var(--white);
  transition: var(--transition);
  display: block;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===========================
   HERO SECTIONS
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.75) 0%,
    rgba(26, 26, 26, 0.4) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.hero-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--honey-gold);
  margin-bottom: 20px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: clamp(28px, 7vw, 64px);
  line-height: 1.15;
}

.hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(14px, 3.5vw, 18px);
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-divider {
  width: 60px;
  height: 3px;
  background-color: var(--honey-gold);
  margin-bottom: 24px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero with side content */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 100vh;
}

.hero-right-info {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  max-width: 450px;
  z-index: 2;
  padding-right: 5%;
}

.hero-right-info p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  line-height: 1.8;
}

/* Page Hero (smaller, for inner pages) */
.page-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.page-hero .hero-bg::after {
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.8) 0%,
    rgba(26, 26, 26, 0.5) 100%
  );
}

.page-hero .hero-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(28px, 7vw, 52px);
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(14px, 3.5vw, 18px);
  max-width: 100%;
}

/* --- Key Highlights Bar --- */
.highlights-bar {
  background-color: var(--tropical-green-dark);
  padding: 40px 0;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}

.highlight-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.highlight-icon {
  font-size: 2rem;
  color: var(--honey-gold);
}

.highlight-item h3 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* ===========================
   ABOUT SECTION
   =========================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 8px;
}

.about-image-accent {
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 120px;
  height: 120px;
  border: 3px solid var(--honey-gold);
  border-radius: 8px;
  z-index: -1;
}

.about-content .section-label {
  margin-bottom: 12px;
}

.about-content h2 {
  margin-bottom: 24px;
}

.about-content p {
  margin-bottom: 20px;
}

.about-lead {
  font-size: 1.12rem;
  line-height: 1.8;
  color: var(--gray-dark);
  font-weight: 500;
}

.about-quote {
  border-left: 3px solid var(--honey-gold);
  padding: 16px 24px;
  margin: 28px 0;
  background: linear-gradient(
    135deg,
    rgba(218, 165, 32, 0.06),
    rgba(218, 165, 32, 0.02)
  );
  border-radius: 0 8px 8px 0;
}

.about-quote p {
  font-style: italic;
  color: var(--gray-dark);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 0;
}

.about-message {
  margin: 24px 0;
}

.about-subtitle {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.about-message p {
  color: var(--gray-dark);
  line-height: 1.75;
}

.core-values {
  display: flex;
  gap: 30px;
  margin-top: 32px;
}

.core-value {
  text-align: center;
  flex: 1;
}

.core-value-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--warm-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 1.5rem;
  color: var(--honey-gold);
}

.core-value h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===========================
   HONEY COLLECTION
   =========================== */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  max-width: 900px;
  margin: 50px auto 0;
}

.product-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.product-image {
  height: 280px;
  background-color: var(--warm-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.product-image img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  transition: var(--transition);
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-image-placeholder {
  width: 120px;
  height: 200px;
  background: linear-gradient(
    135deg,
    var(--honey-gold-light),
    var(--honey-gold)
  );
  border-radius: 60px 60px 20px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--white);
  transition: var(--transition);
}

.product-card:hover .product-image-placeholder {
  transform: scale(1.05);
}

.product-info {
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-info .btn {
  margin-top: auto;
}

.product-info h3 {
  margin-bottom: 10px;
  color: var(--dark);
}

.product-info p {
  font-size: 0.95rem;
  margin-bottom: 20px;
}

/* ===========================
   WHY CHOOSE SECTION
   =========================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.why-item {
  text-align: center;
  padding: 40px 30px;
  border-radius: 8px;
  transition: var(--transition);
}

.why-item:hover {
  background-color: rgba(212, 160, 48, 0.05);
}

.why-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--honey-gold-light),
    var(--honey-gold)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--white);
}

.why-item h3 {
  margin-bottom: 12px;
  font-family: var(--font-body);
  font-weight: 700;
}

.why-item p {
  font-size: 0.92rem;
}

/* ===========================
   DISCOVER LABUAN BAJO
   =========================== */
.discover-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 20px;
  margin-top: 50px;
}

.discover-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 320px;
  cursor: pointer;
}

.discover-card.discover-wide {
  grid-column: span 2;
}

.discover-card.discover-tall {
  grid-row: span 2;
  height: 100%;
}

.discover-card.discover-tall .discover-card-bg {
  height: 100%;
}

.discover-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transition: transform 0.6s ease;
}

.discover-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.discover-card:hover .discover-card-bg {
  transform: scale(1.08);
}

.discover-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  z-index: 1;
}

.discover-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  z-index: 2;
  color: var(--white);
}

.discover-card-content h3 {
  margin-bottom: 6px;
  font-size: 1.35rem;
}

.discover-card-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ===========================
   FINAL CTA SECTION
   =========================== */
.final-cta {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.final-cta .hero-bg::after {
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.8) 0%,
    rgba(45, 106, 79, 0.6) 100%
  );
}

.final-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.final-cta h2 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 12px;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 36px;
}

/* ===========================
   DESTINATIONS (Explore page)
   =========================== */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  margin-top: 50px;
}

.destination-card {
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

.destination-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.destination-card:first-child {
  grid-column: span 2;
}

.destination-image {
  height: 300px;
  overflow: hidden;
}

.destination-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}

.destination-card:first-child .destination-image {
  height: 400px;
}

.destination-card:hover .destination-image img {
  transform: scale(1.05);
}

.destination-content {
  padding: 30px;
}

.destination-content h3 {
  margin-bottom: 12px;
  color: var(--dark);
}

.destination-content p {
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.destination-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--honey-gold-light);
  color: var(--honey-gold);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Nature Connection Section */
.nature-connection {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.nature-image {
  border-radius: 12px;
  overflow: hidden;
  height: 400px;
}

.nature-image-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

/* ===========================
   BRAND STORY (About page)
   =========================== */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-grid-reversed > :first-child {
  order: 2;
}

.story-grid-reversed > :last-child {
  order: 1;
}

.story-image {
  border-radius: 12px;
  overflow: hidden;
  height: 500px;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.story-image-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.story-gallery {
  border-radius: 12px;
  overflow: hidden;
}

.story-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.story-gallery-item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
}

.story-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.story-gallery-item:hover img {
  transform: scale(1.06);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.value-card {
  text-align: center;
  padding: 50px 30px;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.value-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--honey-gold-light),
    var(--honey-gold)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: var(--white);
}

.value-card h3 {
  margin-bottom: 12px;
}

.value-card p {
  font-size: 0.92rem;
  margin-bottom: 0;
}

/* ===========================
   CONTACT PAGE
   =========================== */
.contact-cards-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 30px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--honey-gold-light),
    var(--honey-gold)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  flex-shrink: 0;
}

.contact-card-body h2 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  font-family: var(--font-body);
  font-weight: 700;
}

.contact-card-body p {
  font-size: 0.9rem;
  margin-bottom: 0;
  line-height: 1.5;
}

.contact-form-wrapper {
  background: var(--white);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

/* Contact Gallery */
.contact-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 300px 300px;
  gap: 16px;
}

.contact-bento-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

.contact-bento-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.contact-bento-item:hover img {
  transform: scale(1.06);
}

.contact-bento-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 55%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent);
  z-index: 1;
}

.contact-gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 22px;
  z-index: 2;
  color: var(--white);
}

.contact-gallery-caption h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  font-family: var(--font-heading);
}

.contact-gallery-caption p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
}

.contact-form-wrapper h2 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.contact-form-wrapper > p {
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--gray-lighter);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 16px; /* 16px minimum prevents iOS zoom */
  transition: var(--transition);
  background-color: var(--warm-cream);
  color: var(--dark);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--honey-gold);
  box-shadow: 0 0 0 3px rgba(212, 160, 48, 0.15);
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

.form-group .error-msg {
  color: #d32f2f;
  font-size: 0.85rem;
  margin-top: 6px;
  display: block;
}

.contact-form-wrapper .btn {
  width: 100%;
  min-height: 48px;
}

/* Business Inquiries */
.business-inquiries {
  margin-top: 30px;
  padding: 25px;
  background: var(--warm-cream);
  border-radius: 12px;
  border-left: 4px solid var(--honey-gold);
}

.business-inquiries h4 {
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 12px;
}

.business-inquiries ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.business-inquiries li {
  font-size: 0.92rem;
  color: var(--gray);
  padding-left: 20px;
  position: relative;
}

.business-inquiries li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--honey-gold);
  font-weight: bold;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background-color: var(--dark);
  color: var(--white);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 2fr 1.5fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-nav-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-brand p {
  color: var(--gray-light);
  font-size: 0.92rem;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 1.1rem;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.social-link:hover {
  background-color: var(--honey-gold);
  border-color: var(--honey-gold);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 24px;
  color: var(--white);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul a {
  color: var(--gray-light);
  font-size: 0.92rem;
  transition: var(--transition);
  padding: 4px 0;
  display: inline-block;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.footer-col ul a:hover {
  color: var(--honey-gold);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact-item span:first-child {
  color: var(--honey-gold);
  font-size: 1.1rem;
  margin-top: 3px;
}

.footer-contact-item span:last-child {
  color: var(--gray-light);
  font-size: 0.92rem;
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  color: var(--gray-light);
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* ===========================
   ANIMATIONS
   =========================== */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
}

/* Staggered delay for grid items */
.fade-up:nth-child(1) {
  transition-delay: 0s;
}
.fade-up:nth-child(2) {
  transition-delay: 0.1s;
}
.fade-up:nth-child(3) {
  transition-delay: 0.2s;
}
.fade-up:nth-child(4) {
  transition-delay: 0.3s;
}
.fade-up:nth-child(5) {
  transition-delay: 0.4s;
}

/* ===========================
   REDUCED MOTION (Accessibility)
   =========================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .fade-up,
  .fade-in {
    opacity: 1;
    transform: none;
  }
}

/* ===========================
   RESPONSIVE — 1024px (Small Laptops)
   =========================== */
@media (max-width: 1024px) {
  h1 {
    font-size: 2.8rem;
  }
  h2 {
    font-size: 2rem;
  }

  .hero h1 {
    font-size: clamp(28px, 7vw, 52px);
  }

  .about-grid,
  .story-grid,
  .nature-connection {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-cards-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 260px;
  }

  .story-grid-reversed > :first-child,
  .story-grid-reversed > :last-child {
    order: unset;
  }

  .about-image img {
    height: 350px;
  }

  .story-image {
    height: 350px;
  }

  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .hero-right-info {
    display: none;
  }

  .why-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

/* ===========================
   RESPONSIVE — 768px (Tablets)
   =========================== */
@media (max-width: 768px) {
  .header {
    height: 60px;
  }

  .header .container {
    padding: 0 16px;
  }

  .logo-img {
    height: 55px;
  }

  .header.scrolled .logo-img {
    height: 42px;
  }

  h1 {
    font-size: 2.3rem;
  }
  h2 {
    font-size: 1.8rem;
  }

  .section {
    padding: 60px 0;
  }

  .hero {
    min-height: 90vh;
  }
  .hero-content {
    padding: 100px 0 60px;
  }

  .hero-bg {
    background-attachment: scroll !important;
  }

  .page-hero {
    min-height: 50vh;
  }

  /* Mobile Nav — slide-down dropdown */
  .nav-links {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.98);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0;
  }

  .nav-links.active {
    max-height: 400px;
  }

  .nav-links li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-links a {
    font-size: 1rem;
    padding: 14px 24px;
    min-height: 48px;
    display: flex;
    align-items: center;
    width: 100%;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-cta {
    border: none !important;
    border-radius: 0 !important;
    padding: 14px 24px !important;
    background-color: var(--honey-gold) !important;
    color: var(--white) !important;
  }

  .menu-toggle {
    display: flex;
  }

  .collection-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .why-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
  }

  .why-item {
    padding: 24px 16px;
  }

  .discover-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .discover-card {
    height: 250px;
  }

  .discover-card.discover-wide {
    grid-column: span 2;
  }

  .discover-card.discover-tall {
    grid-row: span 1;
    height: 250px;
  }

  .destinations-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .destination-card:first-child {
    grid-column: span 1;
  }

  .destination-image,
  .destination-card:first-child .destination-image {
    height: 200px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .value-card {
    padding: 30px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-brand .logo {
    justify-content: center;
    display: flex;
  }

  .footer-brand p {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .social-links {
    justify-content: center;
  }

  /* Navigation & Products side by side on mobile */
  .footer-nav-group {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 360px;
    margin: 0 auto;
  }

  .footer-col {
    text-align: center;
  }

  .footer-col h4 {
    margin-bottom: 16px;
  }

  .footer-col ul {
    gap: 8px;
  }

  .footer-col ul a {
    justify-content: center;
    min-height: 40px;
    font-size: 0.9rem;
  }

  /* Contact info — left-aligned for readability */
  .footer-grid > .footer-col:last-child {
    text-align: left;
    max-width: 320px;
    margin: 0 auto;
  }

  .footer-contact-item {
    justify-content: flex-start;
    text-align: left;
  }

  .footer-bottom {
    padding: 20px 0;
  }

  .footer-bottom p {
    font-size: 12px;
    line-height: 1.6;
  }

  .core-values {
    flex-direction: column;
    gap: 20px;
  }

  .highlights-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
    max-width: 280px;
  }

  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }

  .final-cta {
    padding: 80px 0;
  }

  .final-cta h2 {
    font-size: 2.2rem;
  }

  .about-image {
    order: -1;
  }

  .about-image img {
    height: 250px;
  }

  .about-image-accent {
    display: none;
  }

  .nature-image {
    height: 280px;
  }

  .story-image {
    height: 280px;
  }

  .nature-connection {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-cards-row {
    grid-template-columns: 1fr;
  }

  .contact-bento {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .contact-bento-item {
    min-height: 240px;
  }
}

/* ===========================
   RESPONSIVE — 480px (Large Phones)
   =========================== */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.5rem;
  }

  .section {
    padding: 50px 0;
  }

  .product-image {
    padding: 24px;
  }

  .product-info {
    padding: 20px;
  }

  .product-info h3 {
    font-size: 1.125rem;
  }

  .product-info .btn {
    width: 100%;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .discover-grid {
    grid-template-columns: 1fr;
  }

  .discover-card,
  .discover-card.discover-wide,
  .discover-card.discover-tall {
    grid-column: span 1;
    grid-row: span 1;
    height: 220px;
  }

  .discover-card-content {
    padding: 20px;
  }

  .discover-card-content h3 {
    font-size: 1rem;
  }

  .discover-card-content p {
    font-size: 0.85rem;
  }

  .final-cta {
    padding: 60px 0;
  }

  .final-cta h2 {
    font-size: 1.8rem;
  }
}

/* ===========================
   RESPONSIVE — 375px (Small Phones)
   =========================== */
@media (max-width: 375px) {
  .container {
    padding: 0 12px;
  }

  .hero-content {
    padding: 90px 0 40px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-item {
    padding: 20px 12px;
  }
}
