/* ══════════════════════════════════════════════════════════
   INSIDE THE HOME PAGE  ·  matches strendal_inside_home.html
   ══════════════════════════════════════════════════════════ */

/* ── HERO ── */
.ih-hero {
  position: relative;
  height: 100svh;
  min-height: 580px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
@supports not (height: 100svh) { .ih-hero { height: 100vh; } }

.ih-hero .hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 20%;
  background-color: var(--ink);
  transform: scale(1.04);
  animation: ihHeroZoom 14s ease-out forwards;
}
@keyframes ihHeroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.0); }
}
.ih-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(14,30,10,0.25) 0%,
    rgba(14,30,10,0.05) 40%,
    rgba(14,30,10,0.75) 100%
  );
}
.ih-hero .hero-content {
  position: relative;
  z-index: 5;
  width: 100%;
  padding: 100px 60px 68px;
  animation: ihFadeUp 1.1s ease both;
}
@keyframes ihFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.ih-hero .hero-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.ih-hero .hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold-light);
  flex-shrink: 0;
}
.ih-hero .hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5.5vw, 74px);
  font-weight: 300;
  line-height: 1.06;
  color: white;
  margin-bottom: 20px;
  max-width: 700px;
  letter-spacing: -0.5px;
}
.ih-hero .hero-title em { font-style: italic; color: rgba(255,255,255,0.82); }
.ih-hero .hero-sub {
  font-size: clamp(14px, 1.8vw, 16px);
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  max-width: 500px;
  line-height: 1.75;
}

/* ── FEATURE STRIP ── */
.feature-strip {
  background: var(--green);
  display: flex;
  flex-wrap: wrap;
}
.fs-item {
  flex: 1;
  min-width: 160px;
  padding: 20px 28px;
  border-right: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  gap: 12px;
}
.fs-item:last-child { border-right: none; }
.fs-icon { font-size: 18px; flex-shrink: 0; }
.fs-text {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.88);
  line-height: 1.4;
}

/* ── ENTRY SECTION ── */
.entry-section {
  padding: 88px 60px;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.section-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::after {
  content: '';
  flex: 0 0 28px;
  height: 1px;
  background: var(--green);
  opacity: 0.5;
}
.entry-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 22px;
}
.entry-section h2 em { font-style: italic; color: var(--green); }
.entry-section p {
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.85;
  margin-bottom: 16px;
}
.entry-section p:last-child { margin-bottom: 0; }

.spice-door-callout {
  margin-top: 28px;
  padding: 20px 24px;
  background: var(--green-light);
  border-left: 3px solid var(--green);
  border-radius: 0 3px 3px 0;
}
.sdc-label {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 6px;
}
.sdc-text {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.65;
}

.photo-frame {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 16px 52px rgba(30,61,20,0.13);
}
.photo-frame img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 3/2;
}
.photo-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 18px 20px;
  background: linear-gradient(transparent, rgba(14,30,10,0.72));
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
}

/* ── DARK DIVIDER ── */
.dark-divider {
  background: var(--ink);
  padding: 64px 60px;
  position: relative;
  overflow: hidden;
}
.dark-divider::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 80% at 5% 90%, rgba(106,158,82,0.12) 0%, transparent 55%),
    radial-gradient(ellipse 40% 60% at 95% 10%, rgba(200,149,42,0.08) 0%, transparent 55%);
  pointer-events: none;
}
.dd-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.dd-left {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.45;
  color: rgba(255,255,255,0.88);
}
.dd-left em { font-style: normal; color: var(--gold-light); }
.dd-right {
  font-size: 14.5px;
  color: rgba(255,255,255,0.62);
  line-height: 1.8;
}
.dd-right p { margin-bottom: 14px; color: rgba(255, 255, 255, 0.62); }
.dd-right p:last-child { margin-bottom: 0; }

/* ── FLEX ROOM SECTION ── */
.flex-section {
  padding: 88px 60px;
  background: var(--white);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.flex-inner { max-width: 1100px; margin: 0 auto; }
.flex-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 52px;
}
.flex-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.2vw, 46px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink);
}
.flex-header h2 em { font-style: italic; color: var(--green); }
.flex-header-right {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.8;
}

.flex-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
.flex-photo {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(30,61,20,0.1);
}
.flex-photo img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 3/2;
  transition: transform 0.5s ease;
}
.flex-photo:hover img { transform: scale(1.03); }
.flex-photo-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px 18px;
  background: linear-gradient(transparent, rgba(14,30,10,0.7));
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
}

.usecase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.usecase-card {
  padding: 22px 20px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 3px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.usecase-card:hover {
  border-color: var(--green);
  box-shadow: 0 4px 20px rgba(106,158,82,0.1);
  transform: translateY(-2px);
}
.uc-icon { font-size: 24px; margin-bottom: 10px; }
.uc-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 6px;
}
.uc-body {
  font-size: 12.5px;
  color: var(--ink-light);
  line-height: 1.55;
}

/* ── FEATURES SECTION ── */
.features-section {
  padding: 80px 60px;
  background: var(--cream);
}
.features-inner { max-width: 1100px; margin: 0 auto; }
.features-header { text-align: center; margin-bottom: 52px; }
.features-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.2;
}
.features-header h2 em { font-style: italic; color: var(--green); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 26px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
  border-color: var(--green);
  box-shadow: 0 4px 20px rgba(106,158,82,0.08);
}
.fc-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.fc-title {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 5px;
  letter-spacing: 0.02em;
}
.fc-body {
  font-size: 12.5px;
  color: var(--ink-light);
  line-height: 1.6;
}

/* ── CTA STRIP ── */
.cta-strip {
  background: var(--green-dark);
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-left h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 300;
  color: white;
  margin-bottom: 8px;
  line-height: 1.2;
}
.cta-left p {
  font-size: 14.5px;
  color: rgba(255,255,255,0.62);
  max-width: 480px;
  line-height: 1.65;
}
.btn-gold {
  flex-shrink: 0;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 15px 38px;
  border-radius: 3px;
  background: var(--gold);
  color: white;
  text-decoration: none;
  display: inline-block;
  transition: background 0.25s, transform 0.2s;
  white-space: nowrap;
}
.btn-gold:hover { background: var(--gold-light); color: var(--ink); transform: translateY(-1px); }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .ih-hero .hero-content   { padding: 80px 28px 52px; }
  .feature-strip           { flex-wrap: wrap; }
  .fs-item                 { flex: 0 0 50%; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .entry-section           { grid-template-columns: 1fr; gap: 40px; padding: 56px 28px; }
  .dark-divider            { padding: 52px 28px; }
  .dd-inner                { grid-template-columns: 1fr; gap: 32px; }
  .flex-section            { padding: 56px 28px; }
  .flex-header             { grid-template-columns: 1fr; gap: 20px; margin-bottom: 36px; }
  .flex-photos             { grid-template-columns: 1fr; }
  .usecase-grid            { grid-template-columns: 1fr 1fr; }
  .features-section        { padding: 56px 28px; }
  .features-grid           { grid-template-columns: 1fr 1fr; }
  .cta-strip               { padding: 48px 28px; flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .ih-hero .hero-content   { padding: 72px 20px 44px; }
  .ih-hero .hero-title     { font-size: clamp(28px, 9vw, 42px); }
  .fs-item                 { flex: 0 0 100%; }
  .usecase-grid            { grid-template-columns: 1fr; }
  .features-grid           { grid-template-columns: 1fr; }
  .flex-photos             { gap: 14px; }
}
