/* ══════════════════════════════════════════════════════════
   THE SCREENED PORCH & HERB GARDEN  ·  matches strendal_porch_herb.html
   ══════════════════════════════════════════════════════════ */

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

.ph-hero .hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 25%;
  background-color: var(--ink);
  transform: scale(1.04);
  animation: phHeroZoom 14s ease-out forwards;
}
@keyframes phHeroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.0); }
}
.ph-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(14,30,10,0.15) 0%,
    rgba(14,30,10,0.02) 35%,
    rgba(14,30,10,0.80) 100%
  );
}
.ph-hero .hero-content {
  position: relative;
  z-index: 5;
  width: 100%;
  padding: 100px 60px 68px;
  animation: phFadeUp 1.1s ease both;
}
@keyframes phFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.ph-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;
}
.ph-hero .hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold-light);
  flex-shrink: 0;
}
.ph-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: 720px;
  letter-spacing: -0.5px;
}
.ph-hero .hero-title em { font-style: italic; color: rgba(255,255,255,0.82); }
.ph-hero .hero-sub {
  font-size: clamp(14px, 1.8vw, 16px);
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  max-width: 540px;
  line-height: 1.75;
}

/* ── SEASON STRIP ── */
.ph-season-strip {
  background: var(--green);
  display: flex;
  flex-wrap: wrap;
}
.ph-season-strip .ss-item {
  flex: 1;
  min-width: 150px;
  padding: 20px 24px;
  border-right: 1px solid rgba(255,255,255,0.15);
  text-align: center;
}
.ph-season-strip .ss-item:last-child { border-right: none; }
.ph-season-strip .ss-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 4px;
}
.ph-season-strip .ss-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
}

/* ── PORCH INTRO ── */
.ph-porch-intro {
  padding: 88px 60px;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.ph-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;
}
.ph-section-label::after {
  content: '';
  flex: 0 0 28px;
  height: 1px;
  background: var(--green);
  opacity: 0.5;
}
.ph-porch-intro 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;
}
.ph-porch-intro h2 em { font-style: italic; color: var(--green); }
.ph-porch-intro p {
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.85;
  margin-bottom: 16px;
}
.ph-porch-intro p:last-child { margin-bottom: 0; }

.ph-photo-frame {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 16px 52px rgba(30,61,20,0.14);
}
.ph-photo-frame img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 16/9;
  transition: transform 0.6s ease;
}
.ph-photo-frame:hover img { transform: scale(1.02); }
.ph-photo-frame-tall img { aspect-ratio: 3/2; }
.ph-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);
}

/* ── AERIAL SECTION ── */
.ph-aerial-section {
  padding: 0 60px 80px;
  max-width: 1100px;
  margin: 0 auto;
}
.ph-aerial-frame {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 16px 52px rgba(30,61,20,0.14);
}
.ph-aerial-frame img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 16/7;
}
.ph-aerial-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 22px 26px;
  background: linear-gradient(transparent, rgba(14,30,10,0.8));
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.ph-ac-text {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
}
.ph-ac-tags { display: flex; gap: 10px; flex-wrap: wrap; }
.ph-ac-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  padding: 4px 10px;
  border: 1px solid rgba(232,184,74,0.4);
  border-radius: 20px;
}

/* ── LIFESTYLE / DARK SECTION ── */
.ph-lifestyle-section {
  background: var(--ink);
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
}
.ph-lifestyle-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 5% 85%, rgba(106,158,82,0.14) 0%, transparent 55%),
    radial-gradient(ellipse 45% 55% at 90% 10%, rgba(200,149,42,0.09) 0%, transparent 55%);
  pointer-events: none;
}
.ph-lifestyle-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.ph-lifestyle-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
}
.ph-lifestyle-quote em { font-style: normal; color: var(--gold-light); }
.ph-lifestyle-attr {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}
.ph-lifestyle-facts { display: flex; flex-direction: column; gap: 16px; }
.ph-lf-item {
  padding: 18px 22px;
  background: rgba(255,255,255,0.07);
  border-radius: 3px;
  border-left: 3px solid var(--gold-light);
}
.ph-lf-title {
  font-size: 13px;
  font-weight: 600;
  color: white;
  margin-bottom: 4px;
}
.ph-lf-body { font-size: 13px; color: rgba(255,255,255,0.62); line-height: 1.55; }

/* ── HERB GARDEN SECTION ── */
.ph-herb-section {
  padding: 88px 60px;
  background: var(--green-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.ph-herb-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.ph-herb-inner 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;
}
.ph-herb-inner h2 em { font-style: italic; color: var(--green); }
.ph-herb-inner p {
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.85;
  margin-bottom: 16px;
}
.ph-herb-inner p:last-child { margin-bottom: 0; }
.ph-herb-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ph-herb-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 3px;
}
.ph-herb-icon { font-size: 18px; flex-shrink: 0; }
.ph-herb-name { font-size: 13.5px; font-weight: 500; color: var(--ink); flex: 1; }
.ph-herb-note { font-size: 11.5px; color: var(--ink-light); }

/* ── TWO-PHOTO ROW ── */
.ph-two-photo {
  padding: 80px 60px;
  background: var(--cream);
}
.ph-two-photo-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.ph-tp-frame {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(30,61,20,0.1);
}
.ph-tp-frame img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 16/9;
  transition: transform 0.5s ease;
}
.ph-tp-frame:hover img { transform: scale(1.03); }
.ph-tp-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);
}

/* ── FEATURES GRID ── */
.ph-features-section {
  background: var(--white);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 80px 60px;
}
.ph-features-inner { max-width: 1100px; margin: 0 auto; }
.ph-features-header { text-align: center; margin-bottom: 48px; }
.ph-features-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.2;
}
.ph-features-header h2 em { font-style: italic; color: var(--green); }
.ph-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.ph-fc {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 24px 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.ph-fc:hover {
  border-color: var(--green);
  box-shadow: 0 4px 18px rgba(106,158,82,0.08);
}
.ph-fc-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.ph-fc-title { font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 5px; }
.ph-fc-body { font-size: 12.5px; color: var(--ink-light); line-height: 1.6; }

/* ── CTA STRIP ── */
.ph-cta-strip {
  background: var(--green-dark);
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.ph-cta-strip .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;
}
.ph-cta-strip .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.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .ph-hero .hero-content        { padding: 80px 28px 52px; }
  .ph-season-strip .ss-item     { flex: 0 0 50%; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .ph-porch-intro               { grid-template-columns: 1fr; gap: 40px; padding: 56px 28px; }
  .ph-aerial-section            { padding: 0 28px 56px; }
  .ph-aerial-frame img          { aspect-ratio: 16/9; }
  .ph-lifestyle-section         { padding: 56px 28px; }
  .ph-lifestyle-inner           { grid-template-columns: 1fr; gap: 40px; }
  .ph-herb-section              { padding: 56px 28px; }
  .ph-herb-inner                { grid-template-columns: 1fr; gap: 40px; }
  .ph-two-photo                 { padding: 56px 28px; }
  .ph-two-photo-inner           { grid-template-columns: 1fr; }
  .ph-features-section          { padding: 56px 28px; }
  .ph-features-grid             { grid-template-columns: 1fr 1fr; }
  .ph-cta-strip                 { padding: 48px 28px; flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .ph-hero .hero-content        { padding: 72px 20px 44px; }
  .ph-hero .hero-title          { font-size: clamp(28px, 9vw, 42px); }
  .ph-season-strip .ss-item     { flex: 0 0 100%; }
  .ph-features-grid             { grid-template-columns: 1fr; }
  .ph-ac-tag                    { display: none; }
}
