/* =========================================
   WYLDER PHOTOGRAPHY — Main Stylesheet
   ========================================= */

/* === FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Jost:wght@300;400;500&display=swap');

/* === CSS CUSTOM PROPERTIES === */
:root {
  --cream:       #f9f5f0;
  --warm-white:  #fdfaf7;
  --beige:       #ede4d9;
  --sand:        #d9ccc0;
  --rose:        #c8a89a;
  --rose-dark:   #a07060;
  --brown:       #5c3d2e;
  --dark:        #1e1510;
  --text:        #3a2e27;
  --text-light:  #7a6a60;
  --text-muted:  #a8978e;

  --serif:       'Cormorant Garamond', Georgia, serif;
  --sans:        'Jost', system-ui, sans-serif;

  --transition:  0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-sm:   0 2px 12px rgba(92, 61, 46, 0.08);
  --shadow-md:   0 8px 32px rgba(92, 61, 46, 0.12);
  --shadow-lg:   0 20px 60px rgba(92, 61, 46, 0.18);

  --max-width:   1280px;
  --header-h:    80px;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--text);
  background: var(--warm-white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.15;
  color: var(--dark);
}

h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }

p { max-width: 68ch; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-dark);
}

/* === LAYOUT UTILITIES === */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.section {
  padding-block: clamp(4rem, 10vw, 8rem);
}

.section--alt { background: var(--cream); }

.text-center { text-align: center; }
.text-center p { margin-inline: auto; }

.section-header {
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.section-header h2 { margin-top: 0.5rem; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--dark);
  color: var(--warm-white);
}

.btn-primary:hover {
  background: var(--brown);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  border: 1px solid var(--dark);
  color: var(--dark);
}

.btn-outline:hover {
  background: var(--dark);
  color: var(--warm-white);
  transform: translateY(-2px);
}

.btn-rose {
  background: var(--rose);
  color: var(--warm-white);
}

.btn-rose:hover {
  background: var(--rose-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* === HEADER === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(253, 250, 247, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.logo {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--dark);
  letter-spacing: 0.04em;
  line-height: 1;
}

.logo span { display: block; font-size: 0.55rem; letter-spacing: 0.28em; text-transform: uppercase; font-family: var(--sans); font-weight: 500; color: var(--rose-dark); margin-top: 3px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--rose);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-links a:hover,
.nav-links a.active { color: var(--rose-dark); }

.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-book { margin-left: 1rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--dark);
  transition: var(--transition);
}

/* === MOBILE NAV === */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--warm-white);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--dark);
  transition: color var(--transition);
}

.mobile-nav a:hover { color: var(--rose-dark); }

.mobile-nav-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.8rem;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
}

/* === HERO === */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

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

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

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(30, 21, 16, 0.72) 0%,
    rgba(30, 21, 16, 0.28) 50%,
    rgba(30, 21, 16, 0.1) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(3rem, 8vw, 6rem);
  color: var(--warm-white);
}

.hero-content .eyebrow { color: var(--rose); }

.hero-content h1 {
  color: var(--warm-white);
  margin-block: 0.5rem 1.2rem;
  max-width: 14ch;
  font-style: italic;
}

.hero-content p {
  font-size: 1rem;
  color: rgba(253,250,247,0.82);
  margin-bottom: 2rem;
  max-width: 44ch;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(253,250,247,0.6);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-scroll .scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(253,250,247,0.4);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(1.2); }
}

/* === INTRO STRIP === */
.intro-strip {
  padding-block: clamp(3rem, 7vw, 5rem);
  background: var(--cream);
}

.intro-strip-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 3rem;
}

.intro-strip-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  margin-bottom: 1rem;
}

.intro-strip-text p { color: var(--text-light); margin-bottom: 1.5rem; }

.intro-divider {
  width: 1px;
  height: 160px;
  background: var(--sand);
  justify-self: center;
}

.intro-facts {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.intro-fact strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--rose-dark);
}

.intro-fact span {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* === FEATURED GALLERY === */
.gallery-grid {
  display: grid;
  gap: 0.75rem;
}

.gallery-grid--home {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
}

.gallery-grid--home .gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-grid--home .gallery-item:nth-child(4) {
  grid-column: span 2;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--sand);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  aspect-ratio: 4/3;
}

.gallery-grid--home .gallery-item:first-child img { aspect-ratio: unset; }

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 21, 16, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.gallery-item-overlay svg {
  opacity: 0;
  color: white;
  transform: scale(0.8);
  transition: var(--transition);
}

.gallery-item:hover .gallery-item-overlay { background: rgba(30, 21, 16, 0.28); }
.gallery-item:hover .gallery-item-overlay svg { opacity: 1; transform: scale(1); }

/* === PORTFOLIO GALLERY === */
.portfolio-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  justify-content: center;
}

.filter-btn {
  padding: 0.5rem 1.4rem;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--sand);
  border-radius: 2px;
  color: var(--text-light);
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--warm-white);
}

.masonry-grid {
  columns: 3;
  column-gap: 0.75rem;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 0.75rem;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.masonry-item:hover img { transform: scale(1.04); }

/* === LIGHTBOX === */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(16, 10, 6, 0.96);
  align-items: center;
  justify-content: center;
}

.lightbox.open { display: flex; }

.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-inner img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 2px;
}

.lightbox-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  color: white;
  font-size: 1.5rem;
  opacity: 0.7;
  transition: opacity var(--transition);
}

.lightbox-close:hover { opacity: 1; }

.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 1.8rem;
  opacity: 0.6;
  padding: 1rem;
  transition: opacity var(--transition);
  z-index: 10000;
}

.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-prev:hover, .lightbox-next:hover { opacity: 1; }

/* === INVESTMENT / PRICING === */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.pricing-card {
  background: var(--warm-white);
  border: 1px solid var(--beige);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.pricing-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.pricing-card:hover::before { transform: scaleX(1); }

.pricing-card.featured {
  background: var(--dark);
  color: var(--warm-white);
  border-color: var(--dark);
}

.pricing-card.featured h3,
.pricing-card.featured .eyebrow,
.pricing-card.featured li { color: var(--warm-white); }

.pricing-card.featured::before { background: var(--rose); transform: scaleX(1); }

.pricing-card .eyebrow { margin-bottom: 0.8rem; }

.pricing-card h3 { margin-bottom: 0.5rem; }

.price-from {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.pricing-card.featured .price-from { color: rgba(253,250,247,0.5); }

.price-amount {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--rose-dark);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.pricing-card.featured .price-amount { color: var(--rose); }

.pricing-divider {
  width: 40px;
  height: 1px;
  background: var(--sand);
  margin-bottom: 1.5rem;
}

.pricing-card.featured .pricing-divider { background: rgba(253,250,247,0.2); }

.pricing-inclusions {
  flex: 1;
  margin-bottom: 2rem;
}

.pricing-inclusions li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.88rem;
  color: var(--text-light);
  padding-block: 0.4rem;
  border-bottom: 1px solid var(--beige);
}

.pricing-card.featured .pricing-inclusions li {
  color: rgba(253,250,247,0.75);
  border-bottom-color: rgba(253,250,247,0.1);
}

.pricing-inclusions li::before {
  content: '—';
  color: var(--rose);
  flex-shrink: 0;
  font-size: 0.75rem;
  margin-top: 0.15rem;
}

/* === ABOUT === */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 2px;
}

.about-image-accent {
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  width: 60%;
  aspect-ratio: 1;
  border: 1px solid var(--rose);
  border-radius: 2px;
  z-index: -1;
}

.about-text .eyebrow { margin-bottom: 0.8rem; }

.about-text h2 { margin-bottom: 1.2rem; }

.about-text p {
  color: var(--text-light);
  margin-bottom: 1.2rem;
  font-size: 0.97rem;
}

.about-signature {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.8rem;
  color: var(--rose-dark);
  margin-top: 1.5rem;
}

.values-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-block: 3rem;
  border-top: 1px solid var(--beige);
  margin-top: 3rem;
}

.value-item h4 {
  font-family: var(--serif);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.value-item p {
  font-size: 0.87rem;
  color: var(--text-light);
}

/* === BLOG === */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  border-radius: 2px;
  overflow: hidden;
  background: var(--warm-white);
  border: 1px solid var(--beige);
  transition: var(--transition);
}

.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.blog-card-image {
  aspect-ratio: 3/2;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-image img { transform: scale(1.05); }

.blog-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-body .eyebrow { margin-bottom: 0.6rem; }

.blog-card-body h3 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
  line-height: 1.2;
}

.blog-card-body p {
  font-size: 0.87rem;
  color: var(--text-light);
  flex: 1;
  margin-bottom: 1.2rem;
}

.blog-card-body .read-more {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose-dark);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--transition);
}

.blog-card:hover .read-more { gap: 0.7rem; }

/* === CONTACT === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.contact-info h2 { margin-bottom: 1rem; }

.contact-info p { color: var(--text-light); margin-bottom: 2rem; font-size: 0.95rem; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-detail svg {
  flex-shrink: 0;
  color: var(--rose);
  margin-top: 2px;
}

.contact-detail strong { display: block; font-weight: 500; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); }

.contact-detail span { font-size: 0.92rem; color: var(--text-light); }

.contact-form {
  background: var(--warm-white);
  border: 1px solid var(--beige);
  border-radius: 4px;
  padding: clamp(1.5rem, 4vw, 3rem);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text);
  background: var(--cream);
  border: 1px solid var(--beige);
  border-radius: 2px;
  padding: 0.75rem 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(200, 168, 154, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group.select-wrap {
  position: relative;
}

.form-group.select-wrap::after {
  content: '↓';
  position: absolute;
  right: 1rem;
  bottom: 0.8rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  pointer-events: none;
}

/* === FOOTER === */
.site-footer {
  background: var(--dark);
  color: rgba(253,250,247,0.7);
  padding-block: 3rem 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(253,250,247,0.1);
}

.footer-logo {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--warm-white);
}

.footer-logo span {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-family: var(--sans);
  font-weight: 500;
  color: var(--rose);
  margin-top: 3px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  text-align: center;
}

.footer-nav a {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(253,250,247,0.6);
  transition: color var(--transition);
}

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

.footer-social {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(253,250,247,0.15);
  border-radius: 50%;
  color: rgba(253,250,247,0.6);
  transition: var(--transition);
}

.footer-social a:hover {
  border-color: var(--rose);
  color: var(--rose);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.72rem;
  color: rgba(253,250,247,0.35);
}

/* === FLOATING INSTAGRAM === */
.float-instagram {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 48px;
  height: 48px;
  background: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--warm-white);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.float-instagram:hover {
  background: var(--rose-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* === ENTRANCE ANIMATIONS === */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(1) { transition-delay: 0s; }
.fade-up:nth-child(2) { transition-delay: 0.08s; }
.fade-up:nth-child(3) { transition-delay: 0.16s; }
.fade-up:nth-child(4) { transition-delay: 0.24s; }
.fade-up:nth-child(5) { transition-delay: 0.32s; }
.fade-up:nth-child(6) { transition-delay: 0.40s; }
.fade-up:nth-child(7) { transition-delay: 0.48s; }
.fade-up:nth-child(8) { transition-delay: 0.56s; }

/* === PAGE HERO (inner pages) === */
.page-hero {
  height: 50vh;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}

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

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

.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,21,16,0.7) 0%, rgba(30,21,16,0.2) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  padding-bottom: 3rem;
  color: var(--warm-white);
}

.page-hero-content .eyebrow { color: var(--rose); }

.page-hero-content h1 {
  color: var(--warm-white);
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin-top: 0.4rem;
}

/* === CALL TO ACTION BAND === */
.cta-band {
  padding-block: clamp(4rem, 8vw, 6rem);
  background: var(--dark);
  text-align: center;
}

.cta-band h2 {
  color: var(--warm-white);
  margin-bottom: 0.8rem;
}

.cta-band p {
  color: rgba(253,250,247,0.65);
  margin-inline: auto;
  margin-bottom: 2rem;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .masonry-grid { columns: 2; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image { max-width: 480px; }
}

@media (max-width: 768px) {
  :root { --header-h: 68px; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .intro-strip-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .intro-divider { display: none; }
  .intro-facts { flex-direction: row; justify-content: center; }

  .gallery-grid--home {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid--home .gallery-item:first-child {
    grid-column: span 2;
  }

  .gallery-grid--home .gallery-item:nth-child(4) {
    grid-column: span 1;
  }

  .masonry-grid { columns: 2; }

  .form-row { grid-template-columns: 1fr; }

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

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social { justify-content: center; }

  .footer-bottom { justify-content: center; text-align: center; }

  .values-strip { grid-template-columns: 1fr; }

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

@media (max-width: 520px) {
  .masonry-grid { columns: 1; }

  .gallery-grid--home {
    grid-template-columns: 1fr;
  }

  .gallery-grid--home .gallery-item:first-child {
    grid-column: span 1;
  }

  .portfolio-filter { gap: 0.4rem; }

  .filter-btn { padding: 0.4rem 1rem; }
}
