/* =========================================
   ORIALA PHOTOGRAPHY — STYLESHEET
   ========================================= */

/* ----- Reset & Base ----- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #fff;
  color: #000;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ----- Container ----- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.container--narrow {
  max-width: 800px;
}

/* =========================================
   TYPOGRAPHY
   ========================================= */

.section-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 16px;
}

.section-heading {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 48px;
}

.section-heading--left {
  text-align: left;
  margin-bottom: 24px;
}

/* =========================================
   BUTTONS
   ========================================= */

.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: 2px solid #000;
  transition: background 0.2s, color 0.2s;
  text-align: center;
}

.btn-dark {
  background: #000;
  color: #fff;
}

.btn-dark:hover {
  background: #222;
  border-color: #222;
}

.btn-outline {
  background: transparent;
  color: #000;
}

.btn-outline:hover {
  background: #000;
  color: #fff;
}

.btn--full {
  display: block;
  width: 100%;
}

.link-arrow {
  font-size: 0.9rem;
  font-weight: 500;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: opacity 0.2s;
}

/* =========================================
   IMAGE PLACEHOLDERS
   ========================================= */

.img-block {
  width: 100%;
  overflow: hidden;
}

.img-block--tall { aspect-ratio: 3 / 4; }
.img-block--square { aspect-ratio: 1 / 1; }
.img-block--portrait { aspect-ratio: 4 / 5; }

.img-placeholder {
  width: 100%;
  height: 100%;
  background: #e8e8e8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #aaa;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.img-placeholder--light {
  background: #f0f0f0;
  height: 260px;
  color: #bbb;
}

.img-placeholder--dark {
  background: #2a2a2a;
  height: 260px;
  color: #666;
}

/* =========================================
   NAVIGATION
   ========================================= */

.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #f0f0f0;
  transition: box-shadow 0.2s;
}

.nav-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  position: relative;
  padding: 0 40px;
}

.nav-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
}

.nav-logo__img {
  height: 52px;
  width: auto;
}

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

.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: #333;
  transition: color 0.15s;
}

.nav-links a:hover {
  color: #000;
}

.nav-social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.nav-social a {
  color: #555;
  display: flex;
  align-items: center;
  transition: color 0.15s;
}

.nav-social a:hover {
  color: #000;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #000;
  transition: transform 0.25s, opacity 0.25s;
}

/* =========================================
   HERO
   ========================================= */

.hero {
  height: calc(100vh - 68px);
  min-height: 560px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 68px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 60px 48px 80px;
}

.hero-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 24px;
}

.hero-heading {
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 1.05rem;
  color: #444;
  max-width: 420px;
  line-height: 1.7;
  margin-bottom: 40px;
}

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

.hero-image {
  position: relative;
  overflow: hidden;
}

.hero-image .img-block {
  height: 100%;
  aspect-ratio: unset;
}

.hero-image .img-placeholder {
  height: 100%;
}

/* =========================================
   STATEMENT
   ========================================= */

.statement {
  padding: 96px 0;
  background: #fff;
}

.statement-text {
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  font-weight: 300;
  line-height: 1.6;
  text-align: center;
  color: #111;
}

/* =========================================
   SERVICES CARDS
   ========================================= */

.services {
  padding: 0 0 96px;
}

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

.service-card {
  display: block;
  overflow: hidden;
  transition: opacity 0.2s;
}

.service-card:hover {
  opacity: 0.92;
}

.service-card--dark .service-card__body {
  background: #111;
  color: #fff;
}

.service-card--dark .link-arrow {
  color: #fff;
}

.service-card__image {
  width: 100%;
}

.service-card__body {
  padding: 36px 40px 40px;
  background: #f7f7f7;
}

.service-card__label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 10px;
}

.service-card--dark .service-card__label {
  color: #666;
}

.service-card__title {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.service-card__desc {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 24px;
  line-height: 1.7;
}

.service-card--dark .service-card__desc {
  color: #999;
}

/* =========================================
   FEATURE SECTIONS
   ========================================= */

.feature-section {
  padding: 96px 0;
  border-top: 1px solid #f0f0f0;
}

.feature-section--alt {
  background: #fafafa;
}

.feature-section__intro {
  text-align: center;
  margin-bottom: 64px;
}

.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 96px;
}

.feature-split--reversed .feature-split__text {
  order: 2;
}

.feature-split--reversed .feature-split__image {
  order: 1;
}

.feature-split__text p {
  font-size: 1rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 20px;
}

.feature-split__text p:last-of-type {
  margin-bottom: 32px;
}

/* =========================================
   PROCESS STEPS
   ========================================= */

.process {
  padding: 80px 0 64px;
  border-top: 1px solid #eee;
}

.process__heading {
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 56px;
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.process__step {
  text-align: center;
}

.process__num {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #aaa;
  margin-bottom: 16px;
}

.process__step h4 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.process__step p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.7;
}

/* =========================================
   PRICING
   ========================================= */

.pricing {
  padding: 80px 0 0;
  border-top: 1px solid #eee;
}

.pricing__heading {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 12px;
}

.pricing__sub {
  text-align: center;
  color: #666;
  font-size: 1rem;
  margin-bottom: 56px;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  align-items: start;
}

.pricing__card {
  padding: 40px 36px;
  background: #f7f7f7;
}

.pricing__card--featured {
  background: #111;
  color: #fff;
}

.pricing__badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 12px;
}

.pricing__tier {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.pricing__ideal {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 16px;
  line-height: 1.5;
}

.pricing__card--featured .pricing__ideal {
  color: #777;
}

.pricing__desc {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 24px;
}

.pricing__card--featured .pricing__desc {
  color: #aaa;
}

.pricing__card--featured .btn-dark {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.pricing__card--featured .btn-dark:hover {
  background: #e8e8e8;
  border-color: #e8e8e8;
}

.pricing__features {
  margin-bottom: 28px;
}

.pricing__features li {
  font-size: 0.875rem;
  color: #444;
  padding: 6px 0;
  border-bottom: 1px solid #e8e8e8;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing__features li::before {
  content: '·';
  color: #bbb;
  font-size: 1.2rem;
  line-height: 1;
  flex-shrink: 0;
}

.pricing__card--featured .pricing__features li {
  color: #ccc;
  border-bottom-color: #2a2a2a;
}

.pricing__price {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

/* =========================================
   EVENT TYPES
   ========================================= */

.event-types {
  padding: 80px 0;
  border-top: 1px solid #eee;
}

.event-types__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 40px;
}

.event-type {
  padding: 0;
}

.event-type__icon {
  width: 52px;
  height: 52px;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #444;
}

.event-type h4 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.event-type p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.7;
}

/* =========================================
   ABOUT
   ========================================= */

.about {
  padding: 96px 0;
  border-top: 1px solid #f0f0f0;
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}

.about-split__text p {
  font-size: 1rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 18px;
}

.trust-badges {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid #eee;
}

.trust-badge__name {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

.trust-badge__desc {
  display: block;
  font-size: 0.78rem;
  color: #888;
}

.testimonials {
  border-top: 1px solid #eee;
  padding-top: 64px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.testimonial {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.testimonial p {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: #111;
  margin-bottom: 20px;
}

.testimonial cite {
  font-size: 0.85rem;
  color: #888;
  font-style: normal;
  letter-spacing: 0.04em;
}

.testimonial__logo {
  display: block;
  width: 140px;
  height: auto;
  margin: 0 auto 24px;
  opacity: 0.75;
}

/* =========================================
   CONTACT
   ========================================= */

.contact {
  padding: 96px 0;
  background: #fafafa;
  border-top: 1px solid #f0f0f0;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-text p {
  font-size: 1rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 20px;
}

.contact-reasons {
  margin: 24px 0;
}

.contact-reasons li {
  font-size: 0.9rem;
  color: #555;
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-reasons li::before {
  content: '·';
  color: #aaa;
  font-size: 1.4rem;
  line-height: 0;
}

.contact-email a {
  font-size: 0.95rem;
  font-weight: 500;
  color: #000;
  border-bottom: 1px solid #ccc;
  padding-bottom: 2px;
  transition: border-color 0.2s;
}

.contact-email a:hover {
  border-color: #000;
}

/* Form */
.contact-form {
  background: #fff;
  padding: 48px;
  border: 1px solid #e8e8e8;
}

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

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #333;
  margin-bottom: 8px;
}

.form-group .req {
  color: #000;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  background: #fafafa;
  font-family: inherit;
  font-size: 0.9rem;
  color: #111;
  outline: none;
  transition: border-color 0.15s, background 0.15s;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #000;
  background: #fff;
}

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

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

/* =========================================
   FOOTER
   ========================================= */

.footer {
  background: #000;
  color: #fff;
  padding: 64px 0 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid #1a1a1a;
}

.footer-logo__img {
  height: 48px;
  width: auto;
  margin-bottom: 0;
  filter: brightness(0) invert(1);
  opacity: 0.75;
}

.footer-tagline {
  font-size: 0.82rem;
  color: #666;
  line-height: 1.6;
  margin-top: 8px;
}

.footer-links nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: center;
}

.footer-links a {
  font-size: 0.875rem;
  color: #888;
  transition: color 0.15s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.footer-social a {
  color: #666;
  transition: color 0.15s;
}

.footer-social a:hover {
  color: #fff;
}

.footer-email a {
  font-size: 0.85rem;
  color: #888;
  transition: color 0.15s;
}

.footer-email a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  font-size: 0.78rem;
  color: #555;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: #555;
  transition: color 0.15s;
}

.footer-legal a:hover {
  color: #999;
}

/* =========================================
   PHOTO IMAGES
   ========================================= */

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right top;
  display: block;
}

.feature-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.service-card__image {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.service-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card__photo {
  transform: scale(1.03);
}

/* =========================================
   PHOTO GALLERIES
   ========================================= */

.photo-gallery {
  margin: 0 0 80px;
}

/* Headshots: 4-column portrait strip */
.photo-grid--headshots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

.photo-grid--headshots .photo-grid__item {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

/* Events: dynamic 4-column mosaic */
.photo-grid--events {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 4px;
}

.photo-grid__item--tall {
  grid-row: span 2;
}

.photo-grid__item--wide {
  grid-column: span 2;
}

.photo-grid__item {
  overflow: hidden;
}

.photo-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.photo-grid__item:hover img {
  transform: scale(1.04);
}

/* =========================================
   CROP OPTIONS / BACKGROUND EXAMPLES
   ========================================= */

.crop-options {
  padding: 80px 0 64px;
  border-top: 1px solid #eee;
}

.crop-options__heading {
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 16px;
}

.crop-options__intro {
  max-width: 640px;
  margin: 0 auto 64px;
  text-align: center;
  color: #555;
  line-height: 1.7;
  font-size: 0.95rem;
}

.crop-variant {
  margin-bottom: 56px;
}

.crop-variant:last-child {
  margin-bottom: 0;
}

.crop-variant__meta {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 16px;
}

.crop-tag {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #B8962A;
  white-space: nowrap;
}

.crop-variant__desc {
  color: #555;
  font-size: 0.9rem;
  line-height: 1.6;
}

.bg-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}

.bg-strip__item {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.bg-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}

.bg-strip__item:hover img {
  transform: scale(1.04);
}

/* =========================================
   ANIMATIONS
   ========================================= */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

.nav-links a.active {
  color: #000;
  font-weight: 500;
}

.field-error {
  border-color: #c00 !important;
  background: #fff8f8 !important;
}

.form-success {
  text-align: center;
  padding: 48px 32px;
  border: 1px solid #D4E4D4;
  background: #F6FBF6;
  color: #2a2a2a;
}
.form-success svg {
  stroke: #3a7a3a;
  margin-bottom: 16px;
}
.form-success h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 400;
  margin: 0 0 10px;
}
.form-success p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: #555;
  margin: 0;
}

.form-error {
  background: #fff8f8;
  border: 1px solid #e0c0c0;
  color: #c00;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  padding: 12px 16px;
  margin-bottom: 16px;
}

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 1024px) {
  .container { padding: 0 32px; }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-content {
    padding: 100px 40px 60px;
  }

  .hero-image .img-block {
    height: 60vw;
    aspect-ratio: unset;
  }

  .feature-split {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .feature-split--reversed .feature-split__text,
  .feature-split--reversed .feature-split__image {
    order: unset;
  }

  .process__steps {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .event-types__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-split {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-inner {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }

  .nav-links {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 24px 32px;
    gap: 20px;
    border-bottom: 1px solid #eee;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }

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

  .nav-links a {
    font-size: 1rem;
  }

  .nav-social {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

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

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

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

  .hero-content {
    padding: 80px 24px 48px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    text-align: center;
  }

  .statement { padding: 64px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .feature-section { padding: 64px 0; }
  .feature-section__intro { margin-bottom: 48px; }

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

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

  .photo-grid--headshots {
    grid-template-columns: repeat(2, 1fr);
  }

  .bg-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .crop-variant__meta {
    flex-direction: column;
    gap: 8px;
  }

  .photo-grid--events {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }

  .photo-grid__item--wide {
    grid-column: span 1;
  }

  .about { padding: 64px 0; }
  .trust-badges { flex-direction: column; gap: 20px; }

  .contact { padding: 64px 0; }
  .contact-form { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 20px 24px;
  }
}

/* =========================================
   NAV CART
   ========================================= */

.nav-cart {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: #555;
  cursor: pointer;
  position: relative;
  padding: 0;
  transition: color 0.15s;
}

.nav-cart:hover { color: #000; }

.nav-cart__count {
  position: absolute;
  top: -7px;
  right: -10px;
  background: #000;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.nav-cart__count:empty { display: none; }

/* =========================================
   STORE — PAGE HERO
   ========================================= */

.store-hero {
  margin-top: 68px;
  padding: 80px 0 56px;
  border-bottom: 1px solid #f0f0f0;
  text-align: center;
}

.store-hero .section-label {
  margin-bottom: 12px;
}

.store-hero__title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.store-hero__sub {
  font-size: 1rem;
  color: #555;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

/* =========================================
   STORE — FILTERS
   ========================================= */

.store-filters {
  padding: 28px 0;
  border-bottom: 1px solid #f0f0f0;
  position: sticky;
  top: 68px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  z-index: 50;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-btn {
  padding: 9px 22px;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  background: none;
  border: 1px solid #e0e0e0;
  color: #666;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.filter-btn:hover {
  border-color: #000;
  color: #000;
}

.filter-btn.active {
  background: #000;
  border-color: #000;
  color: #fff;
}

/* =========================================
   STORE — PRODUCT GRID
   ========================================= */

.store-products {
  padding: 56px 0 80px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 24px;
}

.store-empty {
  text-align: center;
  color: #999;
  font-size: 0.95rem;
  padding: 64px 0;
}

/* =========================================
   STORE — PRODUCT CARD
   ========================================= */

.product-card {
  display: flex;
  flex-direction: column;
}

.product-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #f0f0f0;
  margin-bottom: 16px;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card__image img {
  transform: scale(1.04);
}

.product-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.product-card:hover .product-card__overlay {
  opacity: 1;
}

.product-card__overlay .btn {
  width: 100%;
  font-size: 0.82rem;
  padding: 12px 20px;
  border: none;
}

.product-card__digital-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0,0,0,0.75);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  z-index: 1;
}

.product-card__info {
  padding: 0 2px;
}

.product-card__cat {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 6px;
}

.product-card__title {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  color: #111;
}

.product-card__price {
  font-size: 0.9rem;
  font-weight: 600;
  color: #000;
}

/* =========================================
   STORE — PRINT INFO STRIP
   ========================================= */

.print-info {
  padding: 64px 0;
  background: #f7f7f7;
  border-top: 1px solid #eee;
}

.print-info__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.print-info__item {
  text-align: center;
}

.print-info__item svg {
  margin: 0 auto 16px;
  color: #555;
}

.print-info__item h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.print-info__item p {
  font-size: 0.84rem;
  color: #666;
  line-height: 1.7;
}

/* =========================================
   STORE — LIGHTBOX
   ========================================= */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox.is-open {
  display: flex;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  cursor: pointer;
}

.lightbox__panel {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 860px;
  max-height: 90vh;
  background: #fff;
  overflow-y: auto;
}

.lightbox__close {
  position: sticky;
  top: 0;
  align-self: flex-end;
  z-index: 10;
  width: 38px;
  height: 38px;
  margin: 12px 12px -50px auto;
  background: rgba(0,0,0,0.65);
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  flex-shrink: 0;
}

.lightbox__close:hover { background: rgba(0,0,0,0.9); }

.lightbox__image {
  width: 100%;
  background: #111;
  flex-shrink: 0;
}

.lightbox__image img {
  width: 100%;
  height: auto;
  max-height: 72vh;
  object-fit: contain;
  display: block;
}

.lightbox__details {
  padding: 32px 40px 40px;
  display: flex;
  flex-direction: column;
}

.lightbox__title {
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 8px 0 10px;
  line-height: 1.2;
}

.lightbox__price {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: #000;
}

.lightbox__desc {
  font-size: 0.875rem;
  color: #444;
  line-height: 1.85;
  margin-bottom: 28px;
  flex: 1;
}

.lightbox__desc p + p { margin-top: 12px; }

.lightbox__desc a {
  color: #1F2D3D;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lightbox__size-group {
  margin-bottom: 20px;
}

.lightbox__size-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 8px;
}

.lightbox__select {
  width: 100%;
  padding: 11px 40px 11px 14px;
  border: 1px solid #ddd;
  background: #fafafa;
  font-family: inherit;
  font-size: 0.9rem;
  color: #111;
  outline: none;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  transition: border-color 0.15s;
}

.lightbox__select:focus { border-color: #000; }

.lightbox__select optgroup {
  font-weight: 600;
  font-size: 0.8rem;
  color: #333;
}

.lightbox__select option {
  font-weight: 400;
  color: #111;
}

/* =========================================
   STORE — PRODUCT IMAGE EXPAND HINT
   ========================================= */

.product-card__image {
  cursor: zoom-in;
}

.product-card__hover-icons {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.2s;
}

.product-card:hover .product-card__hover-icons {
  opacity: 1;
}

.product-card__expand-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.9);
  color: #111;
}

/* =========================================
   RESPONSIVE — STORE
   ========================================= */

@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .print-info__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .store-hero { padding: 60px 0 40px; }
  .store-filters { top: 68px; }
  .filter-group { flex-wrap: wrap; }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }
  .print-info__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  /* Hide hover overlay on touch devices — lightbox handles Add to Cart */
  .product-card__overlay {
    display: none;
  }
  /* Lightbox on mobile */
  .lightbox { padding: 0; align-items: flex-end; }
  .lightbox__panel { max-height: 92vh; width: 100%; overflow: hidden; }
  .lightbox__image { flex-shrink: 0; }
  .lightbox__image img { max-height: 38vh; }
  .lightbox__details { flex: 1; overflow-y: auto; padding: 20px 20px 28px; }
}

@media (max-width: 480px) {
  .section-heading {
    font-size: 2rem;
  }

  .hero-heading {
    font-size: 2.6rem;
  }
}

/* =============================================
   ORDER CONFIRMATION MODAL
   ============================================= */
.order-modal {
  position: fixed;
  inset: 0;
  z-index: 600;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.order-modal.is-open { display: flex; }

.order-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}

.order-modal__panel {
  position: relative;
  background: #fff;
  max-width: 480px;
  width: 100%;
  padding: 48px 40px 40px;
  z-index: 1;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.order-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  color: #888;
  padding: 4px;
  transition: color 0.2s;
}
.order-modal__close:hover { color: #000; }

.order-modal__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 24px;
  color: #1a1a1a;
}

.order-modal__summary {
  background: #f8f7f5;
  padding: 20px;
  margin-bottom: 24px;
  border-left: 3px solid #1a1a1a;
}

.order-modal__image-name {
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 6px;
  color: #1a1a1a;
}

.order-modal__option {
  color: #666;
  font-size: 0.875rem;
  margin-bottom: 8px;
}

.order-modal__price {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a1a1a;
  font-family: 'Cormorant Garamond', serif;
}

.order-modal__note {
  font-size: 0.8rem;
  color: #999;
  margin-top: 12px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.order-modal__error {
  color: #c00;
  font-size: 0.8rem;
  margin-top: 10px;
  text-align: center;
}

@media (max-width: 520px) {
  .order-modal__panel { padding: 40px 24px 32px; }
}
