/* =========================================
   TOM JOSE PHOTOGRAPHY – STYLESHEET
   ========================================= */

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

:root {
  --black:   #0a0a0a;
  --off-white: #f5f3ef;
  --white:   #ffffff;
  --gold:    #c9a96e;
  --gold-lt: #e0c99a;
  --grey:    #888888;
  --grey-lt: #e8e6e2;
  --text:    #1c1c1c;
  --font-head: 'Oswald', sans-serif;
  --font-body: 'EB Garamond', Georgia, serif;
  --font-inter: 'Inter', sans-serif;
  --font-poppins: 'Poppins', sans-serif;
  --nav-h:   72px;
  --section-pad: 100px;
  --gap: 16px;
  --radius: 4px;
  --transition: 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
  background: var(--white);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

/* Honeypot (spam) */
.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; pointer-events: none; }

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: var(--nav-h);
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(10,10,10,0.96);
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
  backdrop-filter: blur(10px);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 0.18em;
  color: var(--white);
}

.logo-tagline {
  font-family: var(--font-head);
  font-weight: 200;
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
}

.nav-links a {
  font-family: var(--font-head);
  font-weight: 300;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 4px;
}

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

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

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

.nav-toggle span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--white);
  transition: var(--transition);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 90px 0 40px;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

/* YouTube iframe fills hero */
#yt-player {
  position: absolute;
  top: 50%;
  left: 50%;
  /* 16:9 ratio — oversized so it always covers the viewport */
  width: 100vw;
  height: 56.25vw; /* 16:9 based on width */
  min-height: 100vh;
  min-width: 177.78vh; /* 16:9 based on height */
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
}

#yt-player iframe {
  width: 100%;
  height: 100%;
  border: none;
  pointer-events: none;
}

/* Fallback kenburns (shown until / if YouTube loads) */
.kenburns-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  animation: kenburns 22s ease-in-out infinite alternate;
  transition: opacity 1.6s ease;
  z-index: 1;
}

.kenburns-b {
  opacity: 0;
}

/* Hide fallback once YouTube is ready */
.yt-ready .kenburns-img {
  opacity: 0 !important;
  pointer-events: none;
}

/* Overlay to block YouTube title bar, logo & watermark */
.yt-shield {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

/* Top bar — covers title + channel name */
.yt-shield-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 80px;
  background: transparent;
  pointer-events: none;
}

/* Bottom bar — covers progress bar + controls */
.yt-shield-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: transparent;
  pointer-events: none;
}

/* Right side — covers YouTube watermark/logo */
.yt-shield-right {
  position: absolute;
  top: 0; right: 0;
  width: 160px;
  height: 100%;
  background: transparent;
  pointer-events: none;
}

@keyframes kenburns {
  0%   { transform: scale(1)     translate(0, 0); }
  100% { transform: scale(1.12)  translate(-2%, -2%); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  width: 100%;
  padding: 0 48px;
  text-align: left;
}

.hero-pre {
  font-family: var(--font-head);
  font-weight: 300;
  font-size: 0.78rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s ease forwards;
}

.hero-title {
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: clamp(1.9rem, 5vw, 5.2rem);
  line-height: 1.08;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
}

.hero-title span {
  display: block;
  opacity: 0;
  transform: translateY(30px);
}

.hero-title span:nth-child(1) { animation: fadeUp 0.8s 0.5s ease forwards; }
.hero-title span:nth-child(2) { animation: fadeUp 0.8s 0.7s ease forwards; color: var(--gold); }
.hero-title span:nth-child(3) { animation: fadeUp 0.8s 0.9s ease forwards; }

/* New: bold caps sub-headline (services list) */
.hero-tags {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: clamp(0.75rem, 1.4vw, 1.15rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
  opacity: 0;
  animation: fadeUp 0.8s 1s ease forwards;
}

.hero-sub {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size: clamp(0.9rem, 1.6vw, 1.25rem);
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.78);
  line-height: 1.35;
  margin-bottom: 22px;
  max-width: 520px;
  opacity: 0;
  animation: fadeUp 0.8s 1.2s ease forwards;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 400;
  font-size: 0.82rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid var(--gold);
  padding: 15px 36px;
  transition: var(--transition);
  opacity: 0;
  animation: fadeUp 0.8s 1.3s ease forwards;
}

.hero-cta:hover {
  background: var(--gold);
  color: var(--black);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeIn 1s 1.8s ease forwards;
}

.hero-scroll span {
  font-family: var(--font-head);
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(201,169,110,0.8), transparent);
  animation: scrollPulse 2s 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50%       { opacity: 0.4; transform: scaleY(0.6); }
}

/* ---------- SECTIONS ---------- */
.section {
  padding: var(--section-pad) 48px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-pre {
  font-family: var(--font-head);
  font-weight: 300;
  font-size: 0.72rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
  line-height: 1;
}

.section-desc {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--grey);
  max-width: 540px;
  margin: 20px auto 0;
}

/* ---------- PORTFOLIO / FILTER ---------- */
.portfolio-section {
  background: var(--off-white);
}

.filter-bar {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  background: #1a1a1a;
  border: 1px solid #333;
  padding: 10px 26px;
  cursor: pointer;
  border-radius: var(--radius);
  transition: var(--transition);
}

.filter-btn:hover {
  background: #2e2e2e;
  color: #fff;
  border-color: #555;
}

.filter-btn.active {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}

/* ---------- GALLERY GRID ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

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

.gallery-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0) 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 18px;
  opacity: 0;
  transition: opacity var(--transition);
}

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

.gallery-cat {
  font-family: var(--font-head);
  font-weight: 300;
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.gallery-title {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: var(--white);
}

/* ---------- LIGHTBOX ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(5,5,5,0.96);
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
}

.lightbox.open { display: flex; }

.lb-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lb-inner img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}

.lb-caption {
  font-family: var(--font-head);
  font-weight: 300;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 16px;
}

.lb-close, .lb-prev, .lb-next {
  position: fixed;
  background: none;
  border: none;
  color: rgba(255,255,255,0.75);
  cursor: pointer;
  font-size: 2rem;
  transition: color var(--transition);
  z-index: 2001;
  line-height: 1;
}

.lb-close:hover, .lb-prev:hover, .lb-next:hover { color: var(--gold); }

.lb-close { top: 24px; right: 32px; font-size: 2.5rem; }
.lb-prev   { left: 24px; top: 50%; transform: translateY(-50%); font-size: 2rem; }
.lb-next   { right: 24px; top: 50%; transform: translateY(-50%); font-size: 2rem; }

/* ---------- ABOUT ---------- */
.about-section {
  background: var(--white);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-image-wrap {
  position: relative;
}

.about-img {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius);
  display: block;
  position: relative;
  z-index: 1;
}

.about-img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 70%;
  height: 70%;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  z-index: 0;
  pointer-events: none;
}

.about-content .section-title {
  text-align: left;
  margin-bottom: 8px;
}

.about-content .section-pre { text-align: left; }

.about-role {
  font-family: var(--font-head);
  font-weight: 300;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: block;
}

.about-pullquote {
  font-family: var(--font-poppins);
  font-weight: 400;
  font-size: clamp(1.3rem, 2.1vw, 1.85rem);
  line-height: 1.45;
  color: var(--black);
  margin: 0 0 20px;
}

.about-pullquote .highlight {
  font-weight: 700;
  color: var(--gold);
}

.about-pullquote-sub {
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--grey);
  margin-bottom: 32px;
  max-width: 640px;
}

.about-text {
  font-family: var(--font-inter);
  font-weight: 400;
  color: #444;
  font-size: 0.95rem;
  margin-bottom: 18px;
  line-height: 1.8;
  letter-spacing: 0em;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid var(--grey-lt);
}

.stat { display: flex; flex-direction: column; }

.stat-num {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 2.6rem;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-head);
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 6px;
}

/* ---------- TRUSTED BY / LOGOS ---------- */
.logos-section {
  background: var(--off-white);
  padding-top: 40px;
  padding-bottom: 40px;
}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border: 1px solid #ddd;
  border-radius: var(--radius);
}

.logo-item img {
  max-width: 100%;
  max-height: 100px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.6);
  transition: filter var(--transition), opacity var(--transition);
}

.logo-item img:hover {
  filter: grayscale(0%) opacity(1);
}

/* ---------- TESTIMONIALS ---------- */
.testimonials-section {
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--off-white);
  border: 1px solid var(--grey-lt);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.testimonial-quote {
  font-family: var(--font-inter);
  font-weight: 400;
  font-style: normal;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 24px;
}

.testimonial-quote::before {
  content: '\201C';
  font-family: var(--font-head);
  color: var(--gold);
  font-size: 1.4rem;
  margin-right: 2px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--grey-lt);
  padding-top: 16px;
}

.testimonial-name {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
}

.testimonial-role {
  font-family: var(--font-inter);
  font-weight: 300;
  font-size: 0.8rem;
  color: var(--grey);
  margin-top: 4px;
}

/* ---------- CONTACT ---------- */
.contact-section {
  background: #0a0a0a;
}

.contact-section .section-pre {
  color: var(--gold);
}

.contact-section .section-title {
  color: #ffffff;
}

.contact-section .section-desc {
  color: #b8a08a;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.ci-icon {
  font-size: 1.3rem;
  color: var(--gold);
  line-height: 1.4;
  flex-shrink: 0;
}

.contact-item strong {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: var(--font-inter);
  font-weight: 500;
  color: #ffffff;
  display: block;
  margin-bottom: 4px;
}

.contact-item p {
  font-family: var(--font-body);
  font-family: var(--font-inter);
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

/* ---------- FORM ---------- */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-inter);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
}

.form-group label span { color: var(--gold); }

.form-group input,
.form-group textarea {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: var(--radius);
  padding: 14px 18px;
  font-family: var(--font-inter);
  font-size: 0.95rem;
  color: #f0f0f0;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #555;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15);
}

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

.submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  align-self: flex-start;
  font-family: var(--font-head);
  font-weight: 400;
  font-size: 0.82rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #2a1a0e;
  background: var(--gold);
  border: 1px solid var(--gold);
  padding: 16px 40px;
  cursor: pointer;
  border-radius: var(--radius);
  transition: var(--transition);
}

.submit-btn:hover {
  background: #f0dfc0;
  border-color: #f0dfc0;
  color: #2a1a0e;
}

.form-status {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 16px;
  border-radius: var(--radius);
  display: none;
}

.form-status.success {
  display: block;
  background: #f0faf4;
  color: #2a7a4f;
  border: 1px solid #b6e8cc;
}

.form-status.error {
  display: block;
  background: #fff5f5;
  color: #c0392b;
  border: 1px solid #f5b8b8;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--black);
  padding: 64px 48px 40px;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer .logo-name { font-size: 1.5rem; }
.footer .logo-tagline { font-size: 0.65rem; }

.footer-copy {
  font-family: var(--font-head);
  font-weight: 200;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-top: 4px;
}

.social-icons {
  display: flex;
  gap: 24px;
  margin-top: 20px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.footer-legal {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.25);
  margin-top: 20px;
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

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

.reveal.visible {
  opacity: 1;
  transform: none;
}

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

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

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .about-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-img {
    max-width: 300px;
    margin: 0 auto;
  }
  .about-img-accent { display: none; }
  .about-content .section-title,
  .about-content .section-pre,
  .about-role { text-align: center; }
  .about-stats { justify-content: center; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 70px; }

  .hero {
    padding: 80px 0 30px;
  }

  .hero-pre { margin-bottom: 10px; }

  .hero-title {
    margin-bottom: 10px;
    line-height: 1.1;
  }

  .hero-tags {
    margin-bottom: 10px;
  }

  .hero-sub {
    margin-bottom: 16px;
  }

  .hero-cta {
    padding: 12px 28px;
    font-size: 0.72rem;
  }

  .navbar { padding: 0 24px; }

  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(10,10,10,0.98);
    flex-direction: column;
    align-items: center;
    padding: 36px 0;
    gap: 28px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s ease, opacity 0.4s ease;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .section { padding: var(--section-pad) 24px; }

  .hero-content { padding: 0 24px; }

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

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

  .about-stats { gap: 24px; flex-wrap: wrap; }

  .footer { padding: 48px 24px 32px; }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-title { font-size: clamp(3rem, 14vw, 5rem); }

  .social-icons { gap: 14px; }
}

/* =========================================
   SERVICES SECTION
   ========================================= */
.services-section {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--off-white);
  border: 1px solid var(--grey-lt);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: left;
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.service-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(201,169,110,0.12);
  color: var(--gold);
  margin-bottom: 22px;
}

.service-icon svg {
  width: 26px;
  height: 26px;
}

.service-title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  color: var(--black);
  margin-bottom: 12px;
}

.service-text {
  font-family: var(--font-inter);
  font-weight: 400;
  font-size: 0.92rem;
  line-height: 1.7;
  color: #555;
}

/* =========================================
   FAQ SECTION
   ========================================= */
.faq-section {
  background: var(--off-white);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--grey-lt);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item:hover {
  border-color: var(--gold);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 22px 26px;
  text-align: left;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.98rem;
  color: var(--black);
}

.faq-toggle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(201,169,110,0.12);
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 400;
  transition: transform var(--transition);
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease, padding 0.38s ease;
  padding: 0 26px;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 26px 22px;
}

.faq-answer p {
  font-family: var(--font-inter);
  font-weight: 300;
  font-size: 0.92rem;
  line-height: 1.75;
  color: #555;
}

/* Services/FAQ responsive */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 28px 22px; }
  .faq-question { padding: 18px 20px; font-size: 0.9rem; }
  .faq-answer { padding: 0 20px; }
  .faq-item.open .faq-answer { padding: 0 20px 18px; }
}
