:root {
  --olive-deep: #3a3d2a;
  --olive-dark: #4a4f32;
  --olive-mid: #6b7042;
  --olive-light: #8a9156;
  --olive-pale: #b5bc80;
  --olive-mist: #d4d9a8;
  --cream: #f5f2ea;
  --parchment: #ede8dc;
  --warm-white: #faf8f3;
  --bark: #6b5b47;
  --terra: #a07850;
  --sand: #c9b48a;
  --charcoal: #1e1f18;
  --off-black: #252620;
  --stone: #8a897e;
  --fog: #c8c7bc;
  --serif: 'Cormorant Garamond', serif;
  --sans: 'Jost', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background-color: var(--warm-white);
  color: var(--charcoal);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Headings use the serif display font, body and UI use Jost */
h1, h2, h3, h4, h5, h6,
.title, .subtitle, .section-head h2, .section-head h3, .offer-card h3, .pricing-card h3,
.photographer-label, .service-label {
  font-family: var(--serif);
  font-weight: 400;
}

p, li, a, button, input, select, textarea, .lead, .nav-link, .offer-price, .service-copy p {
  font-family: var(--sans);
}

/* Ensure form elements inherit the site font */
input, textarea, select, button { font-family: var(--sans); }

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px 128px;
}

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

button,
a {
  font: inherit;
}

button {
  background: none;
  border: none;
}

.container {
  width: min(1400px, calc(100% - 120px));
  margin: 0 auto;
}

.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.5s ease, box-shadow 0.5s ease, padding 0.4s ease;
  background: transparent;
}

.nav-header.scrolled {
  background: rgba(245, 242, 234, 0.97);
  box-shadow: 0 1px 30px rgba(58, 61, 42, 0.08);
  backdrop-filter: blur(12px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
  transition: padding 0.4s ease;
}

.nav-header.scrolled .nav-inner {
  padding: 16px 48px;
}

.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-link {
  color: var(--cream);
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s ease;
}

.nav-header.scrolled .nav-link {
  color: var(--olive-deep);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--olive-pale);
  transition: width 0.4s ease;
}

.nav-link:hover {
  color: var(--olive-pale);
}

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

/* Book link styling — highlighted CTA */
.nav-book {
  border: 1px solid rgba(245, 242, 234, 0.4);
  border-radius: 4px;
  padding: 6px 12px;
  margin: 0 8px;
  transition: all 0.3s ease;
}

.nav-header.scrolled .nav-book {
  border-color: var(--olive-mid);
  background: rgba(107, 112, 66, 0.08);
}

.nav-book:hover {
  border-color: rgba(245, 242, 234, 0.8);
  background: rgba(245, 242, 234, 0.08);
}

.nav-header.scrolled .nav-book:hover {
  border-color: var(--olive-deep);
  background: rgba(107, 112, 66, 0.15);
}

.mobile-menu-btn {
  display: none;
  gap: 6px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.mobile-menu-btn span {
  width: 24px;
  height: 1px;
  background: var(--cream);
  transition: all 0.3s ease;
}

.mobile-menu {
  background: rgba(245, 242, 234, 0.98);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(12px);
}

.mobile-menu.open {
  max-height: 420px;
}

.mobile-menu nav {
  padding: 20px 48px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-menu a {
  color: var(--olive-deep);
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-section,
.hero-hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  background: var(--olive-deep);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-compact {
  position: relative;
  height: 50vh;
  min-height: 380px;
  background: var(--olive-deep);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 31, 24, 0.78) 0%, rgba(58, 61, 42, 0.45) 55%, transparent 100%);
  z-index: 1;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  align-items: center;
}

.hero-copy p,
.hero-copy h1,
.hero-copy h2,
.hero-copy h3,
.hero-copy h4,
.hero-compact p,
.hero-compact h1 {
  color: var(--cream);
}

.hero-subtitle,
.hero-compact .hero-subtitle {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--olive-pale);
  margin-bottom: 24px;
}

.title,
.hero-compact .title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 5.5vw, 5.2rem);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 10px;
}

.subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 5.5vw, 5.2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.05;
  color: var(--olive-mist);
  margin-bottom: 36px;
}

.lead {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.92rem;
  line-height: 1.85;
  color: rgba(245, 242, 234, 0.7);
  max-width: 400px;
  margin-bottom: 48px;
}

.hero-actions,
.hero-actions--wrap {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-dark {
  display: inline-block;
  padding: 14px 40px;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s ease;
}

.btn-primary {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--olive-pale);
  color: var(--cream);
  background: transparent;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--olive-mid);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  z-index: -1;
}

.btn-primary:hover::before {
  transform: translateX(0);
}

.btn-primary:hover {
  border-color: var(--olive-mid);
}

.btn-dark {
  background: var(--olive-deep);
  border: 1px solid var(--olive-deep);
  color: var(--cream);
}

.btn-dark:hover {
  background: var(--olive-mid);
  border-color: var(--olive-mid);
}

.btn-small {
  padding: 10px 24px;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
}

.get-in-touch {
  padding: 100px 60px 110px;
}

.get-in-touch .section-head {
  margin-bottom: 24px;
}

.get-in-touch .lead {
  margin-bottom: 32px;
  color: rgba(245, 242, 234, 0.9);
}

.photographer-copy h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.0rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--olive-deep);
  margin-bottom: 18px;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  max-width: 420px;
  width: 100%;
  opacity: 1;
  filter: none;
  mix-blend-mode: normal;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  right: 60px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll-hint span {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245, 242, 234, 0.35);
  writing-mode: vertical-rl;
}

.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(245, 242, 234, 0.3), transparent);
  animation: pulseAnim 2s infinite;
}

.slideshow-container {
  position: absolute;
  inset: 0;
}

.slideshow-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
}

.slideshow-slide.active {
  opacity: 1;
}

.photo-placeholder {
  background-color: #1a1a1a;
  position: relative;
  overflow: hidden;
}

.photo-placeholder::after {
  content: 'RESERVED';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  color: rgba(255, 255, 255, 0.25);
  text-transform: uppercase;
}

.slideshow-dot-row {
  position: absolute;
  bottom: 40px;
  left: 60px;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.slide-dot {
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.4s ease;
  background: rgba(245, 242, 234, 0.3);
  height: 2px;
}

.slide-dot.active {
  width: 28px;
  background: var(--olive-pale);
}

.slide-dot:not(.active) {
  width: 8px;
}

.slide-caption {
  position: absolute;
  bottom: 80px;
  left: 60px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(245, 242, 234, 0.45);
  letter-spacing: 0.05em;
}

.marquee-strip {
  background: var(--olive-mid);
  padding: 26px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.marquee-item {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.85;
  display: flex;
  align-items: center;
  gap: 20px;
}

.marquee-item .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--olive-pale);
  opacity: 0.5;
}

.content-section,
.section-block,
.section-compact {
  padding: 120px 60px;
}

.section-compact {
  padding: 80px 60px 0;
}

.section-head {
  text-align: left;
  margin-bottom: 72px;
}

.section-head.center {
  text-align: center;
}

.section-head p {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--olive-mid);
  margin-bottom: 16px;
}

.section-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 400;
  color: var(--olive-deep);
  line-height: 1.1;
}

.section-head p.lead {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.88rem;
  line-height: 1.85;
  color: var(--stone);
  max-width: 380px;
  margin-left: auto;
}

.portfolio-filters,
.pricing-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.filter-button,
.tab-button {
  background: none;
  border: none;
  padding: 12px 20px;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-button.active,
.tab-button.active {
  color: var(--olive-deep);
  border-bottom: 2px solid var(--olive-mid);
}

.portfolio-grid {
  columns: 3 300px;
  gap: 10px;
}

.portfolio-item {
  break-inside: avoid;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}

.portfolio-item.hidden {
  display: none;
}

.portfolio-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(58, 61, 42, 0.7);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-item:hover .overlay {
  opacity: 1;
}

.portfolio-item .overlay p,
.portfolio-item .overlay span {
  text-align: center;
}

.portfolio-card {
  display: grid;
  gap: 24px;
  background: var(--parchment);
  padding: 28px;
  border: 1px solid rgba(58, 61, 42, 0.08);
}

.portfolio-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--olive-deep);
  margin-bottom: 16px;
}

.service-section,
.pricing-section,
.contact-section,
.about-grid {
  display: grid;
  gap: 80px;
}

.about-grid {
  grid-template-columns: 1fr 1.1fr;
  align-items: start;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.photographer-grid {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 80px;
  align-items: start;
}

.photographer-media .photo-placeholder {
  min-height: 620px;
  border: 1px solid rgba(58, 61, 42, 0.12);
  box-shadow: 0 40px 70px rgba(58, 61, 42, 0.08);
  background-color: #111111;
}

.photographer-media {
  position: relative;
  display: flex;
  justify-content: center;
}
.photographer-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.offer-grid,
.client-box-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  grid-auto-rows: 1fr;
}

.client-words {
  padding-top: 140px;
  padding-bottom: 140px;
}

.client-words .section-head {
  margin-bottom: 48px;
}

.client-words .section-head p {
  color: var(--olive-mist);
  letter-spacing: 0.35em;
}

.client-words .section-head h2 {
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  color: var(--cream);
}

.client-box-grid {
  gap: 36px;
  max-width: 1180px;
  margin: 0 auto;
}

.client-box {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.03);
  padding: 44px 36px;
  min-height: 300px;
  text-align: left;
}

.client-box h3 {
  color: var(--olive-mist);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  margin-top: 28px;
}

.client-box p {
  color: rgba(245,242,234,0.72);
  font-style: italic;
  line-height: 1.9;
  margin-top: 12px;
}

.client-box::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(58,61,42,0.04);
  pointer-events: none;
}

.client-box .quote-mark {
  color: rgba(245,242,234,0.06);
}

.offer-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--warm-white);
  color: var(--charcoal);
  border: 1px solid rgba(58, 61, 42, 0.25);
  padding: 32px;
  text-decoration: none;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  min-height: 320px;
  text-align: center;
}

.client-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(245,242,234,0.02);
  color: var(--cream);
  border: 1px solid rgba(245,242,234,0.04);
  padding: 32px;
  text-decoration: none;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  min-height: 320px;
  text-align: center;
}

.offer-card:hover,
.offer-card:focus-visible {
  transform: translateY(-4px);
  border-color: var(--olive-mid);
  box-shadow: 0 24px 40px rgba(58, 61, 42, 0.18);
  background: #f8f6f0;
}

.client-box:hover,
.client-box:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(245,242,234,0.08);
  box-shadow: 0 18px 36px rgba(0,0,0,0.14);
  background: rgba(255,255,255,0.03);
}

.offer-card h3,
.offer-card p,
.client-box h3,
.client-box p {
  margin: 0 0 18px;
}

.offer-card h3,
.client-box h3 {
  font-size: clamp(1.4rem, 2.4vw, 1.7rem);
}

.photographer-label {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--olive-mid);
  margin-bottom: 18px;
}

.divider {
  width: 60px;
  height: 2px;
  background: var(--olive-mid);
  margin: 8px 0 18px 0;
}

.photographer-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--stone);
}

.experience-badge {
  position: absolute;
  bottom: -42px;
  right: -36px;
  width: 140px;
  height: 110px;
  background: var(--olive-dark);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 20px 40px rgba(58,61,42,0.12);
  transform: rotate(-2deg);

}

.experience-badge .exp-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 6px;
}

.experience-badge .exp-sub {
  font-family: 'Jost', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.offer-card h3 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--olive-deep);
}

.client-box h3 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--cream);
}

.offer-card p {
  color: var(--stone);
}

.client-box p {
  color: rgba(245,242,234,0.9);
}

.offer-card .offer-price,
.offer-card p[data-price],
.offer-card p:last-child {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  color: var(--olive-mid);
  margin-top: 18px;
}

/* Videography card: centered and shorter */
.offer-card--videography {
  grid-column: 2 / 3;
  justify-self: center;
  min-height: 220px;
  padding: 22px;
}

@media (max-width: 980px) {
  .offer-card--videography {
    grid-column: auto;
    justify-self: stretch;
  }
}

.client-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.client-box h3 {
  margin-bottom: 16px;
}

.client-box p {
  margin: 0;
}

.service-block {
  display: grid;
  grid-template-columns: 1fr minmax(420px, 0.55fr);
  gap: 80px;
  align-items: center;
  margin-bottom: 90px;
}

.content-section--green {
  background: linear-gradient(180deg, rgba(107,112,66,0.10) 0%, rgba(107,112,66,0.06) 100%);
  padding: 140px 60px;
}

.services-list {
  max-width: 1200px;
  margin: 0 auto;
}

.service-block {
  gap: 72px;
}

.service-block--reverse {
  grid-template-columns: minmax(420px, 0.55fr) 1fr;
}

.service-media {
  display: flex;
  justify-content: center;
}

.service-media .photo-placeholder {
  width: 100%;
  max-width: 560px;
  aspect-ratio: 4 / 3;
  width: 100%;
  background: #111111;
  border: 1px solid rgba(58, 61, 42, 0.12);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
}

.service-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.service-label {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--olive-mid);
  margin-bottom: 12px;
}

.service-block h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 400;
  color: var(--olive-deep);
  line-height: 1.05;
  margin: 0;
}

.service-divider {
  width: 60px;
  height: 1px;
  background: var(--olive-pale);
  margin: 0;
}

.service-copy p {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.92rem;
  line-height: 1.9;
  color: var(--stone);
  max-width: 640px;
  margin-bottom: 10px;
}

.service-copy {
  padding: 4px 0;
}

.service-copy ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 14px;
  margin: 0;
}

.service-copy ul li {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.88rem;
  color: var(--olive-mid);
  position: relative;
  padding-left: 18px;
}

.service-copy ul li:before {
  content: '–';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--olive-pale);
}

.service-copy a.btn-dark {
  width: max-content;
}

.service-block.reveal {
  opacity: 0;
  transform: translateY(40px);
}

.service-block.reveal.reveal-left {
  transform: translateX(-60px) translateY(40px);
  transition: opacity 0.8s cubic-bezier(.2,.8,.2,1), transform 0.8s cubic-bezier(.2,.8,.2,1);
}

.service-block.reveal.reveal-right {
  transform: translateX(60px) translateY(40px);
  transition: opacity 1.05s cubic-bezier(.2,.8,.2,1), transform 1.05s cubic-bezier(.2,.8,.2,1);
}

.service-block.reveal.visible {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

@media (max-width: 980px) {
  .service-block,
  .service-block--reverse {
    grid-template-columns: 1fr;
  }

  .service-block--reverse {
    direction: ltr;
  }

  .service-media .photo-placeholder {
    min-height: 320px;
  }
}

.pricing-section {
  gap: 40px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pricing-card {
  padding: 48px 36px;
  position: relative;
  background: var(--parchment);
  transition: transform 0.28s cubic-bezier(.2,.8,.2,1), box-shadow 0.28s ease;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(15,15,15,0.06);
}

.pricing-card.popular {
  background: var(--olive-deep);
}

.pricing-card.popular h3,
.pricing-card.popular p,
.pricing-card.popular li {
  color: var(--cream);
}

.pricing-card .popular-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--olive-mid);
  padding: 8px 16px;
  color: var(--cream);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(11,12,6,0.12);
}

.pricing-card.popular {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(11,12,6,0.18);
}

.pricing-card li {
  list-style: none;
  padding-bottom: 12px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-card li svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.pricing-panel {
  display: none;
}

.pricing-panel.active {
  display: block;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 100px;
}

.contact-panel {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-info h2,
.section-head h2 {
  margin-bottom: 32px;
}

.contact-info p,
.contact-info a,
.contact-info div p {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.88rem;
  color: var(--bark);
  line-height: 1.85;
}

.contact-info a {
  color: var(--bark);
  text-decoration: none;
}

.contact-info a:hover {
  color: var(--olive-mid);
}

.contact-form {
  display: grid;
  gap: 36px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--olive-mid);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: var(--warm-white);
  border: none;
  border-bottom: 1px solid var(--olive-mist);
  padding: 16px 0;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.88rem;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.3s ease;
  letter-spacing: 0.02em;
}

.form-field textarea {
  resize: vertical;
  border: 1px solid var(--olive-mist);
  padding: 16px;
}

.form-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.form-actions p {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: var(--stone);
}

.success-message {
  text-align: center;
  padding: 60px 40px;
  background: var(--warm-white);
  border: 1px solid var(--olive-mist);
}

.success-message h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  color: var(--olive-mid);
  font-style: italic;
  margin-bottom: 16px;
}

.success-message p {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--stone);
}

.footer {
  background: var(--olive-deep);
  color: var(--cream);
  padding: 80px 48px 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand p,
.footer-nav a,
.footer-contact p,
.footer-contact a {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
}

.footer-brand p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--olive-mist);
  line-height: 1.7;
  max-width: 260px;
}

.footer-title {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--olive-pale);
  margin-bottom: 24px;
}

/* Client box decorative elements */
.client-box {
  position: relative;
  overflow: hidden;
}

.client-box .quote-mark {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  color: rgba(245,242,234,0.05);
  line-height: 1;
}

.client-box .stars {
  font-family: 'Jost', sans-serif;
  color: var(--olive-pale);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  margin-bottom: 8px;
}

.client-box .rating {
  color: rgba(245,242,234,0.6);
  font-size: 0.7rem;
  margin-left: 8px;
}

.footer-nav a,
.footer-contact a,
.footer-contact p,
.footer-brand p,
.footer a,
.footer p {
  font-size: 0.8rem;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav a:hover,
.footer-contact a:hover,
.footer a:hover {
  color: var(--olive-pale);
}

.footer-bottom {
  border-top: 1px solid rgba(181, 188, 128, 0.2);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: rgba(200, 199, 188, 0.5);
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulseAnim {
  0%,
  100% {
    opacity: 0.5;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-6px);
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .about-grid,
  .service-section,
  .contact-grid,
  .photographer-grid,
  .offer-grid,
  .client-box-grid {
    grid-template-columns: 1fr;
  }

  .hero-scroll-hint {
    display: none;
  }

  .photographer-media {
    order: 2;
  }

  .photographer-copy {
    order: 1;
  }

  .photographer-grid {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 16px;
  }

  /* Global fixes */
  input, textarea, select {
    font-size: 16px !important;
  }

  button, .btn-primary, .btn-dark {
    min-height: 44px;
  }

  /* Navigation */
  .nav-inner {
    padding: 18px 20px;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: inline-flex;
  }

  /* Hero grid */
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 20px;
  }

  .hero-image img {
    max-width: 350px;
  }

  .title {
    font-size: clamp(2.4rem, 5vw, 3.2rem);
  }

  /* Sections padding */
  .content-section,
  .section-block,
  .section-compact,
  .get-in-touch {
    padding: 80px 20px;
  }

  .section-head {
    margin-bottom: 48px;
  }

  .section-head h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
  }

  /* Service blocks */
  .service-block,
  .service-block--reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-media .photo-placeholder {
    min-height: 300px;
  }

  /* Grid layouts */
  .about-grid,
  .service-grid,
  .pricing-grid,
  .offer-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .client-box-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Photographer grid */
  .photographer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .photographer-media .photo-placeholder {
    min-height: 400px;
  }

  /* Portfolio */
  .portfolio-grid {
    columns: 2 280px;
    gap: 12px;
  }

  /* Pricing */
  .pricing-tabs {
    gap: 6px;
  }

  .pricing-card {
    padding: 36px 24px;
  }

  /* Form */
  .form-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    font-size: 16px;
  }

  /* Footer */
  .footer {
    padding: 60px 20px 32px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .footer-grid > div:nth-child(n+3) {
    grid-column: auto;
  }

  /* Footer social links display */
  .footer-grid > div:last-child > div > a {
    display: block;
    margin-bottom: 8px;
  }

  /* Marquee */
  .marquee-strip {
    padding: 20px;
  }

  /* Container */
  .container {
    width: calc(100% - 40px);
  }

  /* Text improvements */
  p, .lead {
    line-height: 1.65;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 16px;
  }

  /* Form inputs minimum 16px font for iOS zoom fix */
  input, textarea, select {
    font-size: 16px !important;
    min-height: 44px;
  }

  /* Global padding on sections */
  .content-section,
  .section-block,
  .section-compact,
  .services-list,
  .get-in-touch,
  .contact-section,
  .about-grid {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* Buttons minimum height for tapping */
  button, .btn-primary, .btn-dark, .filter-button, .tab-button {
    min-height: 44px;
  }

  /* Hero section mobile */
  .hero-image img {
    max-width: 280px;
  }

  .hero-grid {
    padding: 0 16px;
    gap: 24px;
    grid-template-columns: 1fr;
  }

  .title,
  .subtitle {
    font-size: clamp(2.2rem, 6vw, 3.2rem);
  }

  .hero-scroll-hint {
    display: none;
  }

  .hero-actions,
  .hero-actions--wrap {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-dark,
  .hero-actions--wrap .btn-primary,
  .hero-actions--wrap .btn-dark {
    width: 100%;
    text-align: center;
  }

  /* Navigation mobile improvements */
  .mobile-menu {
    max-height: 500px;
  }

  .mobile-menu nav {
    padding: 16px 20px;
    gap: 0;
  }

  .mobile-menu a {
    padding: 14px 0;
    display: block;
    border-bottom: 1px solid rgba(58, 61, 42, 0.1);
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .mobile-menu a:last-child {
    border-bottom: none;
  }

  .nav-header.scrolled .mobile-menu a {
    color: var(--olive-deep);
  }

  /* Logo scaling on mobile */
  #logoImage {
    max-height: 40px;
  }

  /* Portfolio grid single column */
  .portfolio-grid {
    columns: 1 100%;
  }

  /* Photographer section stack */
  .photographer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .photographer-media .photo-placeholder {
    min-height: 340px;
  }

  /* Service grid */
  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-block,
  .service-block--reverse {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
  }

  .service-media .photo-placeholder {
    min-height: 280px;
  }

  .service-copy a.btn-dark {
    width: 100%;
  }

  /* Offer cards single column */
  .offer-grid {
    grid-template-columns: 1fr;
  }

  .offer-card--videography {
    grid-column: auto;
    justify-self: stretch;
  }

  /* Pricing cards single column */
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-tabs {
    flex-wrap: wrap;
    justify-content: center;
  }

  .pricing-tabs .tab-button {
    padding: 10px 16px;
    font-size: 0.7rem;
  }

  .pricing-card {
    padding: 32px 20px;
  }

  .pricing-card .popular-badge {
    top: 12px;
    right: 12px;
    font-size: 0.55rem;
  }

  /* Testimonials mobile - single column */
  .client-box-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .client-box {
    min-height: auto;
    padding: 32px 20px;
  }

  /* Contact grid single column */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-panel {
    gap: 24px;
  }

  /* Contact info cards */
  .contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Form grid single column */
  .form-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    font-size: 16px;
    min-height: 44px;
  }

  .form-field textarea {
    min-height: 120px;
  }

  /* About grid */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-media {
    order: -1;
  }

  /* Marquee strip */
  .marquee-strip {
    padding: 20px 16px;
    gap: 20px;
  }

  .marquee-item {
    font-size: 0.6rem;
    gap: 12px;
  }

  /* Text improvements for readability */
  p, .lead, body {
    line-height: 1.7;
  }

  /* Footer improvements */
  .footer {
    padding: 60px 16px 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-title {
    margin-bottom: 16px;
  }

  .footer-nav a,
  .footer-contact a,
  .footer a {
    display: block;
    padding: 8px 0;
  }

  /* Footer social media row */
  .footer-grid > div:last-child > div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .footer-grid > div:last-child a {
    display: inline-block;
  }

  /* Card shadows on mobile */
  .offer-card,
  .pricing-card,
  .portfolio-card {
    box-shadow: 0 6px 16px rgba(58, 61, 42, 0.12);
  }

  /* Break long words */
  p, li, a, span, div {
    overflow-wrap: break-word;
    word-wrap: break-word;
  }

  /* Responsive images */
  img {
    max-width: 100%;
    height: auto;
  }

  /* Slideshow elements mobile */
  .slideshow-dot-row,
  .slide-caption {
    left: 16px;
  }

  .slide-dot {
    height: 1px;
  }

  .slide-dot.active {
    width: 20px;
  }

  .slide-dot:not(.active) {
    width: 6px;
  }

  /* Animations slightly reduced for mobile */
  .reveal {
    transition-duration: 0.6s !important;
  }

  .reveal-left,
  .reveal-right {
    transition-duration: 0.6s !important;
  }

  /* Section heads mobile */
  .section-head {
    margin-bottom: 40px;
  }

  .section-head h2 {
    font-size: clamp(1.8rem, 5vw, 2.4rem);
  }

  .section-head.center {
    text-align: center;
  }

  /* Dividers */
  .divider,
  .service-divider {
    margin-bottom: 16px;
  }

  /* Container adjustments */
  .container {
    width: calc(100% - 32px);
  }

  /* Hero section tablet fix */
  .hero-section,
  .hero-hero {
    min-height: 500px;
  }

  .hero-compact {
    min-height: 300px;
  }

  /* Booking iframe mobile */
  .booking-iframe {
    width: 100% !important;
    min-height: 600px;
  }

  /* No horizontal scroll */
  body, html {
    overflow-x: hidden;
  }
}
