/* ===== Sunehri Kiran – Multi-page Tea Brand Website ===== */
:root {
  --gold: #c9a227;
  --gold-light: #e5c76b;
  --gold-dark: #9a7b1a;
  --assam-green: #2d5016;
  --assam-green-light: #3d6b1f;
  --cream: #faf6f0;
  --warm-white: #fffef9;
  --text: #2c2416;
  --text-muted: #5c5242;
  --shadow: 0 4px 20px rgba(44, 36, 22, 0.08);
  --radius: 12px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --duration: 0.6s;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--text);
  background: var(--warm-white);
}

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

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

a:hover {
  color: var(--gold-dark);
}

/* ===== Animations ===== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-in {
  animation: slideUp var(--duration) var(--ease-out) forwards;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--duration) var(--ease-out), transform var(--duration) var(--ease-out);
}

.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.stagger-1 { transition-delay: 0.05s; }
.animate-on-scroll.stagger-2 { transition-delay: 0.1s; }
.animate-on-scroll.stagger-3 { transition-delay: 0.15s; }
.animate-on-scroll.stagger-4 { transition-delay: 0.2s; }
.animate-on-scroll.stagger-5 { transition-delay: 0.25s; }

/* ----- Header ----- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 254, 249, 0.95);
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
  backdrop-filter: blur(8px);
  transition: box-shadow 0.3s;
}

.site-header.scrolled {
  box-shadow: 0 2px 16px rgba(44, 36, 22, 0.06);
}

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

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  transition: transform 0.25s, color 0.2s;
}

.logo-link:hover {
  color: var(--assam-green);
  transform: scale(1.02);
}

.logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 8px;
  transition: transform 0.3s;
}

.logo-link:hover .logo-img {
  transform: rotate(-3deg);
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}

.main-nav a {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-muted);
  position: relative;
  transition: color 0.2s;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s var(--ease-out);
}

.main-nav a:hover,
.main-nav a.nav-active {
  color: var(--assam-green);
}

.main-nav a:hover::after,
.main-nav a.nav-active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s;
}

.nav-toggle:hover {
  transform: scale(1.05);
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--warm-white);
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
    padding: 1rem 1.5rem;
    flex-direction: column;
    display: none;
  }

  .main-nav.is-open {
    display: flex;
    animation: slideUp 0.35s var(--ease-out);
  }

  .nav-toggle {
    display: flex;
  }
}

/* ----- Sections common ----- */
section {
  padding: 4rem 1.5rem;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
}

.section-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.95rem, 4.5vw, 2.85rem);
  color: var(--assam-green);
  text-align: center;
  margin: 0 0 2rem;
  line-height: 1.2;
}

/* ----- Home Hero ----- */
.hero-home {
  position: relative;
  min-height: 72vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem 1.5rem 4rem;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45, 80, 22, 0.75) 0%, rgba(44, 36, 22, 0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3rem);
  color: #fff;
  margin: 0 0 0.75rem;
  line-height: 1.2;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-sub {
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 1.5rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
}

.hero-pillars.hero-pillars {
  position: relative;
  z-index: 1;
  margin-top: 0;
  padding: 2rem 0 0;
}

.hero-home .pillar {
  background: rgba(255, 254, 249, 0.98);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.hero-home .pillar:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(44, 36, 22, 0.15);
}

/* ----- Page Hero (inner pages) ----- */
.page-hero {
  position: relative;
  min-height: 42vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.5rem 4rem;
  text-align: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: scaleIn 8s var(--ease-out) forwards;
}

.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45, 80, 22, 0.8) 0%, rgba(44, 36, 22, 0.65) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero-content h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.95rem, 4.5vw, 2.85rem);
  color: #fff;
  margin: 0 0 0.5rem;
  line-height: 1.2;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}

.page-hero-content p {
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
}

/* ----- Range strip (home) ----- */
.range-strip {
  background: var(--warm-white);
  padding: 4rem 1.5rem;
}

.range-intro {
  text-align: center;
  color: var(--text-muted);
  margin: -1rem 0 2rem;
  font-size: 1.15rem;
  font-weight: 600;
}

.range-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto 2rem;
}

.range-card {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
  background: var(--cream);
}

.range-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 40px rgba(44, 36, 22, 0.15);
}

.range-img-wrap {
  aspect-ratio: 1;
  overflow: hidden;
}

.range-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.range-card:hover .range-img-wrap img {
  transform: scale(1.08);
}

.range-label {
  display: block;
  padding: 0.75rem;
  font-weight: 700;
  color: var(--assam-green);
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.range-cta {
  text-align: center;
  margin: 0;
}

@media (max-width: 700px) {
  .range-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ----- About teaser (home) ----- */
.about-teaser {
  background: var(--cream);
  padding: 4rem 1.5rem;
}

.about-teaser-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
  max-width: 900px;
}

.about-teaser-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(44, 36, 22, 0.12);
  transition: transform 0.4s var(--ease-out);
}

.about-teaser-img:hover {
  transform: scale(1.03) rotate(1deg);
}

.about-teaser-img img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.about-teaser-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: var(--assam-green);
  margin: 0 0 1rem;
}

.about-teaser-text p {
  color: var(--text-muted);
  font-size: 1.08rem;
  font-weight: 500;
  margin: 0 0 1.25rem;
}

@media (max-width: 640px) {
  .about-teaser-inner {
    grid-template-columns: 1fr;
  }

  .about-teaser-img {
    max-width: 280px;
    margin: 0 auto;
  }
}

/* ----- Buttons ----- */
.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(201, 162, 39, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--assam-green);
  border: 2px solid var(--gold);
}

.btn-secondary:hover {
  background: rgba(201, 162, 39, 0.1);
  box-shadow: none;
}

.product-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--gold-dark);
  transition: color 0.2s, transform 0.2s;
}

.product-link:hover {
  color: var(--assam-green);
  transform: translateX(4px);
}

.product-body h3 a {
  color: inherit;
}

.product-body h3 a:hover {
  color: var(--gold-dark);
}

/* ----- Product detail page ----- */
.product-detail {
  background: var(--cream);
  padding: 4rem 1.5rem;
}

.product-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}

.product-detail-image {
  position: sticky;
  top: 6rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(44, 36, 22, 0.12);
  transition: transform 0.4s var(--ease-out);
}

.product-detail-image:hover {
  transform: scale(1.02);
}

.product-detail-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.product-detail-content {
  padding-top: 0.5rem;
}

.product-detail-tagline {
  font-weight: 600;
  color: var(--gold-dark);
  font-size: 1.2rem;
  margin: 0 0 1rem;
}

.product-detail-desc {
  color: var(--text-muted);
  margin: 0 0 1rem;
  font-size: 1.08rem;
  font-weight: 500;
}

.product-detail-points {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.detail-point {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease-out);
}

.detail-point:hover {
  transform: translateX(6px);
}

.detail-point-img {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--cream);
  box-shadow: 0 2px 12px rgba(44, 36, 22, 0.1);
}

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

.detail-point p {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
}

.product-detail-sizes {
  margin: 2rem 0;
  padding: 1.25rem;
  background: #fff;
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
}

.product-detail-sizes h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--assam-green);
  margin: 0 0 0.5rem;
}

.product-detail-sizes p {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-muted);
}

.product-detail-cta {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

@media (max-width: 768px) {
  .product-detail-inner {
    grid-template-columns: 1fr;
  }

  .product-detail-image {
    position: static;
  }

  .product-detail-image img {
    aspect-ratio: 4/3;
  }

}

/* ----- Pillars ----- */
.hero-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.pillar {
  background: #fff;
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.pillar-icon {
  display: block;
  color: var(--gold);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.pillar h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--assam-green);
  margin: 0 0 0.35rem;
}

.pillar p {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* ----- About page ----- */
.about {
  background: var(--cream);
}

.about-content {
  max-width: 680px;
  margin: 0 auto;
}

.about-content p {
  margin: 0 0 1rem;
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 500;
}

.about-secret,
.about-promise {
  margin-top: 1.75rem;
  padding: 1.25rem;
  background: #fff;
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
  transition: transform 0.3s var(--ease-out);
}

.about-secret:hover,
.about-promise:hover {
  transform: translateX(4px);
}

.about-secret h3,
.about-promise h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--assam-green);
  margin: 0 0 0.5rem;
}

.about-promise ul {
  margin: 0.5rem 0 0;
  padding-left: 1.25rem;
}

.about-promise li {
  margin-bottom: 0.25rem;
  font-size: 1.05rem;
  font-weight: 500;
}

/* ----- Story gallery ----- */
/* ----- Plantation banner ----- */
.plantation-banner {
  padding: 0 0 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.plantation-banner-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(44, 36, 22, 0.12);
  margin-bottom: 1rem;
}

.plantation-banner-img img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
}

.plantation-banner-caption {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  padding: 0 1rem;
}

.story-gallery {
  background: var(--warm-white);
  padding: 4rem 1.5rem;
}

.gallery-intro {
  text-align: center;
  color: var(--text-muted);
  margin: -1rem 0 2rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto 2rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease-out);
}

.gallery-item:hover {
  transform: translateY(-6px);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

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

.gallery-item span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.5rem;
  background: linear-gradient(transparent, rgba(45, 80, 22, 0.85));
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
}

.gallery-cta {
  text-align: center;
  margin: 0;
}

@media (max-width: 700px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ----- Products ----- */
.products {
  background: var(--warm-white);
  padding: 4rem 1.5rem;
}

.products-global-note {
  text-align: center;
  color: var(--text-muted);
  margin: 0 0 2rem;
  font-size: 1.05rem;
  font-weight: 600;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.35s, transform 0.35s var(--ease-out);
}

.product-card:hover {
  box-shadow: 0 12px 40px rgba(44, 36, 22, 0.14);
  transform: translateY(-6px);
}

.product-image-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cream);
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.product-card:hover .product-image-wrap img {
  transform: scale(1.06);
}

.product-body {
  padding: 1.25rem;
}

.product-body h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--assam-green);
  margin: 0 0 0.25rem;
}

.product-tagline {
  font-weight: 600;
  color: var(--gold-dark);
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
}

.product-desc,
.product-spices,
.product-notes {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-muted);
}

.product-notes:last-child {
  margin-bottom: 0;
}

/* ----- CTA strip ----- */
.cta-strip {
  background: var(--cream);
  padding: 3rem 1.5rem;
  text-align: center;
}

.cta-strip p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 1.1rem;
  font-weight: 600;
}

/* ----- Reviews ----- */
.reviews {
  background: var(--cream);
  padding: 4rem 1.5rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto 2rem;
}

.review-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 0;
  border-left: 4px solid var(--gold);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.review-card:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 28px rgba(44, 36, 22, 0.1);
}

.stars {
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.review-text {
  margin: 0 0 0.75rem;
  font-style: italic;
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--text);
}

.review-card cite {
  font-style: normal;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
}

.reviews-visual {
  max-width: 400px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(44, 36, 22, 0.12);
  transition: transform 0.4s var(--ease-out);
}

.reviews-visual:hover {
  transform: scale(1.02);
}

.reviews-visual img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* ----- Q&A ----- */
.qa {
  background: var(--warm-white);
  padding: 4rem 1.5rem;
}

.faq-list {
  max-width: 640px;
  margin: 0 auto 2rem;
}

.faq-item {
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
  transition: opacity 0.3s, transform 0.3s var(--ease-out);
}

.faq-item:hover {
  transform: translateX(4px);
}

.faq-item:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.faq-item dt {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--assam-green);
  margin-bottom: 0.35rem;
}

.faq-item dd {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
  font-weight: 500;
}

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

.qa-cta p {
  margin: 0 0 0.75rem;
  color: var(--text-muted);
  font-size: 1.1rem;
  font-weight: 600;
}

/* ----- Q&A with images ----- */
.qa-with-images .faq-list-with-images {
  max-width: 820px;
  margin: 0 auto 2rem;
}

.faq-block {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}

.faq-block:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.faq-block-reverse {
  direction: rtl;
}

.faq-block-reverse > * {
  direction: ltr;
}

.faq-block-reverse .faq-block-content {
  text-align: right;
}

.faq-block-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease-out);
}

.faq-block:hover .faq-block-img {
  transform: scale(1.04);
}

.faq-block-img img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.faq-block-content h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--assam-green);
  margin: 0 0 0.5rem;
}

.faq-block-content p {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 640px) {
  .faq-block,
  .faq-block-reverse {
    grid-template-columns: 1fr;
    gap: 1rem;
    direction: ltr;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
  }

  .faq-block-reverse .faq-block-content {
    text-align: left;
  }

  .faq-block-img {
    max-width: 180px;
    margin: 0 auto;
  }
}

/* ----- Contact ----- */
.contact {
  background: var(--cream);
  padding: 4rem 1.5rem;
}

.contact-section-inner {
  max-width: 900px;
  margin: 0 auto;
}

.contact-photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-photos img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.4s var(--ease-out);
}

.contact-photos img:hover {
  transform: scale(1.03);
}

.contact-intro {
  text-align: center;
  color: var(--text-muted);
  margin: 0 0 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
}

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

.contact-info p {
  margin: 0 0 0.5rem;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 500;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-form label {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 0.6rem 0.75rem;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: 8px;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form button {
  align-self: flex-start;
  margin-top: 0.25rem;
}

@media (max-width: 640px) {
  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .contact-photos {
    grid-template-columns: 1fr;
  }
}

/* ----- Footer ----- */
.site-footer {
  background: var(--assam-green);
  color: #fff;
  padding: 2rem 1.5rem;
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  margin-bottom: 0.5rem;
  transition: transform 0.25s, opacity 0.25s;
}

.footer-logo:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

.footer-logo img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 6px;
}

.footer-tagline {
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.9;
  margin: 0 0 1rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--gold-light);
}
