:root {
  --bg: #0d1117;
  --bg-soft: #171d28;
  --card: #1b2230;
  --text: #f5f4ef;
  --text-dim: #c2c7d1;
  --accent: #d5a25f;
  --accent-soft: rgba(213, 162, 95, 0.24);
  --border: rgba(255, 255, 255, 0.12);
  --card-radius: 16px;
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  background: radial-gradient(circle at 12% 8%, #1b2432 0%, var(--bg) 44%), var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
}

.background-glow {
  position: fixed;
  inset: -20vmax;
  background: conic-gradient(from 120deg, rgba(213, 162, 95, 0.18), transparent 45%, rgba(102, 144, 195, 0.16), transparent 80%);
  filter: blur(88px);
  z-index: -1;
  animation: drift 18s linear infinite alternate;
}

@keyframes drift {
  from {
    transform: translate3d(-2%, 1%, 0) scale(1);
  }

  to {
    transform: translate3d(2%, -1%, 0) scale(1.05);
  }
}

.site-header,
main,
.site-footer {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 25;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 12px 16px;
  padding: 16px 0;
  backdrop-filter: blur(10px);
  background: rgba(9, 12, 16, 0.58);
  border-bottom: 1px solid transparent;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-right: auto;
}

.logo img {
  display: block;
  width: min(42vw, 430px);
  height: auto;
  object-fit: contain;
}

.main-nav {
  order: 3;
  flex: 1 0 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 8px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(15, 27, 49, 0.88), rgba(10, 18, 34, 0.82));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 14px 28px rgba(0, 0, 0, 0.28);
}

.main-nav a {
  position: relative;
  color: #d8ddea;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid transparent;
  transition: transform 180ms ease, color 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 220ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: #fff;
  background: linear-gradient(90deg, rgba(213, 162, 95, 0.24), rgba(157, 194, 236, 0.2));
  border-color: rgba(213, 162, 95, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(213, 162, 95, 0.24);
}

.main-nav a:active {
  transform: translateY(0);
}

.hero {
  padding: 74px 0 74px;
  max-width: 760px;
}

.portfolio-page .portfolio-hero {
  padding: 74px 0 40px;
  max-width: 920px;
}

.order-page .order-hero {
  padding: 74px 0 24px;
  max-width: 920px;
}

.order-embed-wrap {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--card-radius);
  overflow: hidden;
  min-height: 70vh;
  margin-bottom: 54px;
}

.order-embed {
  width: 100%;
  min-height: 75vh;
  border: 0;
  background: #fff;
}

.portfolio-api-wrap {
  margin-bottom: 54px;
}

.shoot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.shoot-card {
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
}

.shoot-thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.shoot-body {
  padding: 14px;
}

.shoot-body h3 {
  font-size: 1.25rem;
  margin-bottom: 6px;
}

.shoot-title-link {
  color: var(--text);
  text-decoration: none;
}

.shoot-title-link:hover,
.shoot-title-link:focus-visible {
  color: var(--accent);
  text-decoration: underline;
}

.shoot-meta {
  margin: 0 0 4px;
  color: var(--text-dim);
  font-size: 0.9rem;
}

.shoot-photos {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.shoot-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.shoot-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.shoot-detail-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.status-wrap {
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  padding: 22px;
  margin-bottom: 18px;
}

.status-form label {
  display: block;
  color: var(--text-dim);
  margin-bottom: 8px;
  font-size: 0.92rem;
}

.status-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.status-row input {
  flex: 1 1 320px;
  min-width: 220px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.2);
  color: var(--text);
  padding: 10px 12px;
}

.pipeline-list {
  display: grid;
  gap: 10px;
}

.pipeline-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.02);
}

.pipeline-item p {
  margin: 0;
  color: var(--text-dim);
}

.eyebrow {
  color: var(--accent);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin: 0 0 14px;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.05;
  margin: 0;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  margin-bottom: 18px;
}

.hero-copy {
  color: var(--text-dim);
  max-width: 58ch;
  margin-bottom: 26px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #111;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px var(--accent-soft);
}

.button.ghost {
  background: transparent;
  color: var(--text);
}

.filter-button {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 9px 14px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.filter-button.is-active,
.filter-button:hover,
.filter-button:focus-visible {
  border-color: var(--accent);
  box-shadow: 0 8px 18px var(--accent-soft);
}

.book-now {
  order: 2;
  white-space: nowrap;
}

.mini-cta {
  order: 2;
  padding: 6px 12px;
  font-size: 0.82rem;
  line-height: 1.1;
  white-space: nowrap;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 86px;
}

.trust-bar article {
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  padding: 18px;
}

.trust-bar h2 {
  font-size: 2rem;
}

.trust-bar p {
  margin: 6px 0 0;
  color: var(--text-dim);
  font-size: 0.95rem;
}

.portfolio,
.services,
.commercial,
.pricing,
.process,
.prep,
.reviews,
.faq {
  padding-bottom: 78px;
}

.section-heading {
  margin-bottom: 22px;
  max-width: 700px;
}

.section-heading h2,
.about h2,
.contact h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 8px;
}

.section-heading p,
.about p,
.contact p,
.process li,
.faq p {
  color: var(--text-dim);
  margin: 0;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.gallery-portfolio figure {
  grid-column: span 4;
  aspect-ratio: 4 / 3;
}

.gallery-portfolio figure.is-hidden {
  display: none;
}

.gallery figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
  cursor: zoom-in;
  transform: translateY(12px);
  opacity: 0;
  animation: reveal 600ms forwards;
}

.gallery figure:nth-child(1),
.gallery figure:nth-child(4) {
  grid-column: span 8;
  aspect-ratio: 16 / 9;
}

.gallery figure:nth-child(2),
.gallery figure:nth-child(3),
.gallery figure:nth-child(5),
.gallery figure:nth-child(6) {
  grid-column: span 4;
  aspect-ratio: 4 / 5;
}

.gallery figure:nth-child(2) {
  animation-delay: 90ms;
}

.gallery figure:nth-child(3) {
  animation-delay: 140ms;
}

.gallery figure:nth-child(4) {
  animation-delay: 180ms;
}

.gallery figure:nth-child(5) {
  animation-delay: 230ms;
}

.gallery figure:nth-child(6) {
  animation-delay: 280ms;
}

/* Keep the dedicated portfolio page as a uniform grid. */
.gallery-portfolio figure {
  grid-column: span 4;
  aspect-ratio: 4 / 3;
}

@keyframes reveal {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

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

.gallery figure:hover img,
.gallery figure:focus-within img {
  transform: scale(1.06);
}

figcaption {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 14px;
  color: #fff;
  font-size: 0.95rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72), transparent);
}

.service-grid,
.pricing-grid,
.review-grid {
  display: grid;
  gap: 14px;
}

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.commercial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.card,
.price-card,
.review-grid blockquote,
.process,
.prep,
.faq details,
.about,
.contact {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border-radius: var(--card-radius);
}

.card {
  padding: 20px;
}

.card h3 {
  font-size: 1.7rem;
  margin-bottom: 8px;
}

.card p {
  margin: 0;
  color: var(--text-dim);
}

.rate-tables {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.rate-card {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border-radius: var(--card-radius);
  padding: 20px;
}

.rate-card h3 {
  font-size: 1.6rem;
  margin-bottom: 14px;
}

.rate-table {
  width: 100%;
  border-collapse: collapse;
}

.rate-table th,
.rate-table td {
  text-align: left;
  padding: 10px 8px;
  border-bottom: 1px solid var(--border);
}

.rate-table th {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.rate-table td {
  color: var(--text-dim);
}

.pricing-note {
  margin-top: 14px;
  color: var(--text-dim);
  font-size: 0.92rem;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.price-card {
  padding: 22px;
}

.price-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(213, 162, 95, 0.35), 0 12px 34px rgba(0, 0, 0, 0.35);
}

.plan {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: var(--accent);
}

.price-card h3 {
  font-size: 2.2rem;
  margin-bottom: 6px;
}

.plan-note {
  margin: 0 0 16px;
  color: var(--text-dim);
}

.price-card ul {
  margin: 0 0 20px;
  padding-left: 18px;
  color: var(--text-dim);
}

.process {
  padding: 24px;
}

.process ol {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

.prep {
  padding: 24px;
}

.checklist {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.checklist li {
  color: var(--text-dim);
  padding-left: 26px;
  position: relative;
}

.checklist li::before {
  content: "✓";
  color: var(--accent);
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
}

.reviews {
  overflow: hidden;
}

.review-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-grid blockquote {
  margin: 0;
  padding: 20px;
  color: var(--text);
}

.review-grid cite {
  display: block;
  margin-top: 14px;
  color: var(--text-dim);
  font-style: normal;
}

.faq details {
  padding: 14px 18px;
  margin-bottom: 10px;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--text);
}

.faq p {
  margin-top: 10px;
}

.about,
.contact {
  padding: 24px;
  margin-bottom: 20px;
}

.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 16px 0 10px;
}

.client-link {
  font-size: 0.95rem;
}

.client-link a {
  color: var(--accent);
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 22px 0 34px;
  color: var(--text-dim);
  font-size: 0.9rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-brand img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.footer-brand p {
  margin: 0;
}

.floating-book {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  text-decoration: none;
  background: var(--accent);
  color: #111;
  padding: 11px 16px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: var(--shadow);
  display: none;
}

.lightbox {
  width: min(1000px, 92vw);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(10, 12, 16, 0.95);
  border-radius: 14px;
  color: var(--text);
  padding: 18px;
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.72);
}

.lightbox img {
  width: 100%;
  max-height: 74vh;
  object-fit: contain;
  border-radius: 10px;
}

.lightbox p {
  color: var(--text-dim);
  margin-bottom: 0;
}

.close {
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  position: absolute;
  right: 16px;
  top: 10px;
}

@media (max-width: 1024px) {
  .service-grid,
  .trust-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-grid,
  .commercial-grid,
  .rate-tables,
  .review-grid {
    grid-template-columns: 1fr;
  }

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

  .shoot-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery figure,
  .gallery-portfolio figure,
  .gallery figure:nth-child(1),
  .gallery figure:nth-child(2),
  .gallery figure:nth-child(3),
  .gallery figure:nth-child(4),
  .gallery figure:nth-child(5),
  .gallery figure:nth-child(6) {
    grid-column: span 1;
    aspect-ratio: 4 / 3;
  }

  .site-header {
    align-items: flex-start;
  }

  .book-now {
    display: none;
  }

  .mini-cta {
    display: none;
  }

  .floating-book {
    display: inline-flex;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 10px 12px;
  }

  .logo img {
    width: min(80vw, 360px);
  }

  .hero {
    padding-top: 34px;
  }

  .portfolio-page .portfolio-hero {
    padding-top: 34px;
  }

  .order-page .order-hero {
    padding-top: 34px;
  }

  .gallery,
  .service-grid,
  .commercial-grid,
  .rate-tables,
  .trust-bar {
    grid-template-columns: 1fr;
  }

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

  .shoot-photos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .shoot-detail-grid {
    grid-template-columns: 1fr;
  }

  .main-nav {
    gap: 6px;
    flex-wrap: wrap;
  }
}
