/* =========================================================
   Alfonso's Atelier — Luxury Bespoke Tailoring
   Color palette: Black, Cream, Gold
   ========================================================= */

:root {
  --black: #0b0b0b;
  --soft-black: #161616;
  --charcoal: #1f1f1f;
  --cream: #f5efe2;
  --warm-cream: #ede5d3;
  --deep-cream: #d9ceb4;
  --gold: #c9a961;
  --gold-muted: #a88845;
  --gold-light: #e8d9ae;
  --white: #ffffff;
  --muted: #8a8575;
  --line: rgba(201, 169, 97, 0.25);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--cream);
  color: var(--black);
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.15;
  color: var(--black);
}

h1 {
  font-size: clamp(2.75rem, 6vw, 5.5rem);
  font-weight: 300;
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
}

h3 {
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  font-weight: 400;
}

p {
  font-size: 1.025rem;
  font-weight: 300;
  color: var(--charcoal);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease, opacity 0.3s ease;
}

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.container-narrow {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ---------- Accent elements ---------- */

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 1.5rem;
  display: inline-block;
}

.gold-rule {
  display: inline-block;
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 2rem;
  vertical-align: middle;
}

.section-divider {
  width: 1px;
  height: 60px;
  background: var(--gold);
  margin: 0 auto;
  opacity: 0.6;
}

/* ---------- Navigation ---------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 0;
  background: rgba(11, 11, 11, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201, 169, 97, 0.12);
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.02em;
  line-height: 1;
}

.brand span {
  color: var(--gold);
  font-style: italic;
}

.brand small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
  opacity: 0.8;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  color: var(--warm-cream);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s ease;
}

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

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

.nav-cta {
  padding: 10px 22px !important;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--black) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  padding: 16px 36px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.35s ease;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: transparent;
  color: var(--gold);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}

.btn-outline:hover {
  background: var(--cream);
  color: var(--black);
}

.btn-dark {
  background: var(--black);
  color: var(--cream);
  border-color: var(--black);
}

.btn-dark:hover {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.55) contrast(1.05);
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 11, 11, 0.35) 0%,
    rgba(11, 11, 11, 0.5) 60%,
    rgba(11, 11, 11, 0.8) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 80px;
  color: var(--cream);
}

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

.hero h1 {
  color: var(--cream);
  max-width: 900px;
  margin-bottom: 2rem;
  font-style: italic;
}

.hero-lede {
  color: var(--deep-cream);
  font-size: 1.15rem;
  max-width: 560px;
  margin-bottom: 2.8rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--gold);
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  text-align: center;
}

.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: var(--gold);
  margin: 14px auto 0;
}

/* ---------- Page header (interior pages) ---------- */

.page-header {
  position: relative;
  min-height: 58vh;
  display: flex;
  align-items: center;
  background: var(--black);
  overflow: hidden;
}

.page-header-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.45);
}

.page-header-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,11,11,0.3), rgba(11,11,11,0.7));
}

.page-header-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  color: var(--cream);
  width: 100%;
}

.page-header h1 {
  color: var(--cream);
  font-style: italic;
  margin-bottom: 1rem;
}

.page-header p {
  color: var(--deep-cream);
  max-width: 620px;
  font-size: 1.1rem;
}

.page-header .eyebrow {
  color: var(--gold);
}

/* ---------- Sections ---------- */

section {
  padding: 120px 0;
}

.section-head {
  text-align: center;
  margin-bottom: 5rem;
}

.section-head h2 {
  font-style: italic;
  margin-bottom: 1rem;
}

.section-head p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--muted);
}

/* ---------- Intro / text-image split ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.split.reverse {
  direction: rtl;
}

.split.reverse > * {
  direction: ltr;
}

.split-image {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
  position: relative;
}

.split-image::before {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid var(--gold);
  pointer-events: none;
  opacity: 0.5;
}

.split-text h2 {
  margin-bottom: 2rem;
  font-style: italic;
}

.split-text p + p {
  margin-top: 1.25rem;
}

.split-text .btn {
  margin-top: 2rem;
}

.signature {
  margin-top: 2.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gold-muted);
}

.signature small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

/* ---------- Services grid ---------- */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.service-card {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-card .icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  color: var(--gold);
}

.service-card h3 {
  margin-bottom: 1rem;
  font-style: italic;
}

.service-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* ---------- Services detailed list (Services page) ---------- */

.services-detail {
  display: grid;
  gap: 0;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 5rem 0;
  border-bottom: 1px solid var(--line);
}

.service-row:last-child {
  border-bottom: none;
}

.service-row.reverse .service-row-image {
  order: 2;
}

.service-row-image {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  position: relative;
}

.service-row-image::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(201, 169, 97, 0.45);
  pointer-events: none;
}

.service-row-text .number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  color: var(--gold);
  font-style: italic;
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}

.service-row-text h3 {
  margin-bottom: 1.5rem;
  font-size: 2.2rem;
  font-style: italic;
}

.price-tag {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 8px 18px;
  border: 1px solid var(--gold);
  color: var(--gold-muted);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

/* ---------- Process ---------- */

.process {
  background: var(--black);
  color: var(--cream);
}

.process h2,
.process .section-head p {
  color: var(--cream);
}

.process .eyebrow {
  color: var(--gold);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step .step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  color: var(--gold);
  font-style: italic;
  display: block;
  line-height: 1;
  margin-bottom: 1rem;
}

.process-step h4 {
  color: var(--cream);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.process-step p {
  color: var(--deep-cream);
  font-size: 0.92rem;
  opacity: 0.85;
}

/* ---------- Gallery ---------- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background-color: var(--black);
  cursor: pointer;
}

.gallery-item.wide {
  grid-column: span 2;
  aspect-ratio: 16 / 10;
}

.gallery-item.tall {
  grid-row: span 2;
  aspect-ratio: 3 / 7.5;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease, filter 0.6s ease;
}

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

.gallery-item .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  color: var(--cream);
  background: linear-gradient(180deg, transparent, rgba(11,11,11,0.85));
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.gallery-item:hover .caption {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item .caption h4 {
  color: var(--cream);
  font-style: italic;
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.gallery-item .caption small {
  color: var(--gold-light);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ---------- Testimonials ---------- */

.testimonials {
  background: var(--warm-cream);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.testimonial {
  background: var(--white);
  padding: 3rem 2.5rem;
  border: 1px solid var(--line);
  position: relative;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 30px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  color: var(--gold);
  line-height: 1;
  font-style: italic;
}

.testimonial blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--charcoal);
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.testimonial-author .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--gold);
}

.testimonial-author .who {
  font-size: 0.9rem;
}

.testimonial-author .name {
  font-weight: 500;
  color: var(--black);
  display: block;
}

.testimonial-author .title {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.stars {
  color: var(--gold);
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

/* ---------- CTA band ---------- */

.cta-band {
  background: var(--black);
  color: var(--cream);
  text-align: center;
  padding: 120px 0;
  background-image: linear-gradient(rgba(11,11,11,0.85), rgba(11,11,11,0.9)),
                    url('images/header-gallery.svg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.cta-band h2 {
  color: var(--cream);
  font-style: italic;
  max-width: 800px;
  margin: 0 auto 1.5rem;
}

.cta-band p {
  color: var(--deep-cream);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  font-size: 1.1rem;
}

/* ---------- Contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 1.5rem;
}

.contact-form label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 16px 0;
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: var(--black);
  transition: border-color 0.3s ease;
  border-radius: 0;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-bottom-color: var(--gold);
}

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

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

.contact-form button {
  justify-self: start;
  margin-top: 1rem;
}

.contact-info {
  background: var(--black);
  color: var(--cream);
  padding: 3rem;
  border: 1px solid var(--gold);
}

.contact-info h3 {
  color: var(--cream);
  font-style: italic;
  margin-bottom: 2rem;
}

.contact-info .info-block {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(201, 169, 97, 0.2);
}

.contact-info .info-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-info .info-label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.contact-info .info-value {
  color: var(--deep-cream);
  font-size: 1.05rem;
  line-height: 1.7;
}

.contact-info .info-value a:hover {
  color: var(--gold);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--gold);
  color: var(--black);
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--black);
  color: var(--deep-cream);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand .brand {
  margin-bottom: 1.5rem;
  display: inline-block;
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 300px;
}

.footer-col h5 {
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul a {
  color: var(--deep-cream);
  font-size: 0.92rem;
  opacity: 0.85;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.footer-col ul a:hover {
  color: var(--gold);
  opacity: 1;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 169, 97, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.1em;
}

/* ---------- Service features list ---------- */

.service-features {
  list-style: none;
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.service-features li {
  font-size: 0.9rem;
  color: var(--muted);
  padding-left: 1.2rem;
  position: relative;
}

.service-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

/* ---------- Wardrobe packages ---------- */

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

.package-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 2.5rem 2rem;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.package-card.package-featured {
  background: var(--black);
  border-color: var(--gold);
  transform: scale(1.04);
}

.package-card.package-featured:hover {
  transform: scale(1.04) translateY(-6px);
}

.package-badge {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 5px 14px;
  margin-bottom: 1.5rem;
}

.package-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-style: italic;
  color: var(--black);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.package-featured .package-name {
  color: var(--cream);
}

.package-price {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold-muted);
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

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

.package-features {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.package-features li {
  font-size: 0.92rem;
  color: var(--muted);
  padding-left: 1.2rem;
  position: relative;
}

.package-featured .package-features li {
  color: var(--deep-cream);
}

.package-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

@media (max-width: 1024px) {
  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .package-card.package-featured {
    transform: none;
  }
  .package-card.package-featured:hover {
    transform: translateY(-6px);
  }
}

/* ---------- Gallery filters ---------- */

.gallery-filters {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 26px;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--gold);
  color: var(--gold);
}

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

/* ---------- Lightbox ---------- */

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(11, 11, 11, 0.96);
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox.open {
  display: flex;
}

.lightbox-inner {
  position: relative;
  max-width: 1000px;
  max-height: 90vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-inner img {
  max-width: 100%;
  max-height: 72vh;
  object-fit: contain;
  display: block;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}

.lightbox-caption {
  margin-top: 1.75rem;
  text-align: center;
}

.lightbox-caption h4 {
  color: var(--cream);
  font-style: italic;
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.lightbox-caption small {
  color: var(--gold-light);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.lightbox-close {
  position: absolute;
  top: -48px;
  right: 0;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.8rem;
  cursor: pointer;
  padding: 6px 10px;
  line-height: 1;
  opacity: 0.65;
  transition: opacity 0.3s ease;
}

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

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 1px solid rgba(201, 169, 97, 0.45);
  color: var(--gold);
  width: 52px;
  height: 52px;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.lightbox-nav:hover {
  background: var(--gold);
  color: var(--black);
}

.lightbox-prev { left: -70px; }
.lightbox-next { right: -70px; }

@media (max-width: 900px) {
  .lightbox-prev { left: -50px; }
  .lightbox-next { right: -50px; }
  .lightbox-nav { width: 40px; height: 40px; }
}

@media (max-width: 600px) {
  .lightbox { padding: 20px; }
  .lightbox-prev,
  .lightbox-next { display: none; }
}

/* ---------- Utilities ---------- */

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

.pt-0 { padding-top: 0 !important; }
.pb-0 { padding-bottom: 0 !important; }

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
  .services-grid,
  .testimonial-grid,
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .gallery-item.wide {
    grid-column: span 2;
  }

  .gallery-item.tall {
    grid-row: span 1;
    aspect-ratio: 3 / 4;
  }

  .split,
  .contact-grid,
  .service-row {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .service-row.reverse .service-row-image {
    order: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 720px) {
  section {
    padding: 80px 0;
  }

  .container,
  .container-narrow {
    padding: 0 24px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--black);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-top: 1px solid var(--line);
  }

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

  .services-grid,
  .testimonial-grid,
  .process-steps,
  .gallery-grid,
  .footer-grid,
  .contact-form .form-row {
    grid-template-columns: 1fr;
  }

  .gallery-item.wide {
    grid-column: span 1;
  }

  .cta-band {
    background-attachment: scroll;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
