/* ====================================================
   shot.by.nos — photo-style.css
   Vibe: cinematic · earthy · clean modern

   HOW THIS FILE IS ORGANIZED:
    1.  CSS Variables (colors, fonts, spacing)
    2.  Reset & base
    3.  Shared typography & buttons
    4.  Navigation bar
    5.  Hero section
    6.  Services section
    7.  Portfolio / Gallery
    8.  Lightbox
    9.  About section
   10.  Testimonials
   11.  Contact section
   12.  Footer
   13.  Responsive (mobile & tablet fixes)
   ==================================================== */


/* ----------------------------------------------------
   1. CSS VARIABLES
   Change these values to restyle the whole site at once.
   Think of variables as named presets for your colors,
   fonts, and spacing.
   ---------------------------------------------------- */
:root {
  /* Color palette */
  --bg:          #0e0d0b;   /* near-black with a warm undertone */
  --surface:     #181714;   /* slightly lighter — used for cards */
  --surface-2:   #221f1a;   /* even lighter — used for inputs, hover */
  --accent:      #c8956c;   /* warm terracotta / earthy orange */
  --accent-lt:   #d4a980;   /* lighter warm gold — for hover states */
  --text:        #f0ebe3;   /* warm off-white for body text */
  --text-muted:  #9a9080;   /* soft warm gray for secondary text */
  --border:      #2d2822;   /* subtle divider lines */
  --light-bg:    #f4efe7;   /* cream — used for the About section */
  --light-text:  #1c1a17;   /* dark text on cream background */

  /* Fonts */
  --font-display: 'Bebas Neue', sans-serif;  /* cinematic headings */
  --font-body:    'DM Sans', sans-serif;     /* clean readable body */

  /* Layout */
  --max-w:    1200px;                      /* max page width */
  --pad-x:    clamp(1rem, 4vw, 2.5rem);   /* horizontal page padding */
  --pad-sec:  clamp(4rem, 8vw, 7rem);     /* top/bottom section padding */
  --radius:   8px;                         /* card corner rounding */

  /* Animation */
  --ease: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


/* ----------------------------------------------------
   2. RESET & BASE
   Clears default browser styles and sets sensible
   defaults so things look the same everywhere.
   ---------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;   /* animated scrolling when clicking nav links */
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;        /* prevents horizontal scroll on mobile */
}

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

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

/* Reusable wrapper: centers content and adds side padding */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}


/* ----------------------------------------------------
   3. SHARED TYPOGRAPHY & BUTTONS
   ---------------------------------------------------- */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1;
  color: var(--text);
}

/* Gold accent bar under every section title */
.section-title::after {
  content: '';
  display: block;
  width: 44px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

.section-title.left {
  text-align: left;
}

.section-title.left::after {
  margin: 0.75rem 0 0;
}

.section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 0.6rem;
  margin-bottom: 3rem;
}

/* Base button — shared across the whole site */
.btn {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  border-radius: 50px;          /* pill shape — modern & premium */
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
  position: relative;
}

/* Filled accent button */
.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-lt) 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 18px rgba(200, 149, 108, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 32px rgba(200, 149, 108, 0.5);
  background: linear-gradient(135deg, var(--accent-lt) 0%, var(--accent) 100%);
}

/* Ghost / outline button */
.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 0 rgba(200, 149, 108, 0);
}

.btn-outline:hover {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-lt) 100%);
  color: #fff;
  border-color: transparent;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 32px rgba(200, 149, 108, 0.4);
}

.full-width {
  width: 100%;
  text-align: center;
}


/* ----------------------------------------------------
   4. NAVIGATION BAR
   Starts transparent over the hero. JS adds .scrolled
   once the user scrolls, which gives it a solid background.
   ---------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.3rem 0;
  transition: background var(--ease), padding var(--ease), box-shadow var(--ease);
}

/* Solid background added by JS on scroll */
.navbar.scrolled {
  background: rgba(14, 13, 11, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.85rem 0;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.05em;
  color: var(--text);
  transition: color var(--ease);
}

.nav-logo:hover {
  color: var(--accent);
  text-shadow: 0 0 20px rgba(200, 149, 108, 0.6);
}

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

.nav-links a {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--ease);
}

.nav-links a:hover { color: var(--text); }

/* "Book Now" gets a bordered button look in the nav */
.nav-cta {
  color: var(--accent) !important;
  border: 1px solid var(--accent);
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius);
}

.nav-cta:hover {
  background: var(--accent);
  color: #fff !important;
}

/* Hamburger button — only visible on mobile (see responsive section) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 10;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--ease);
}


/* ----------------------------------------------------
   5. HERO SECTION
   Full-screen opener. Background is a dark gradient
   until you drop in your own photo or video.
   ---------------------------------------------------- */
.hero {
  position: relative;
  height: 100svh;       /* svh = small viewport height — handles mobile browsers */
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* Background container — holds your image or video */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, #1c1914 0%, #0e0d0b 55%, #171210 100%);
}

.hero-img,
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.8) contrast(1.1) brightness(1.08);
}

/* Hide image only if src is truly empty */
.hero-img[src=""],
.hero-img:not([src]) {
  display: none;
}

/* Dark gradient overlay — sunset shows at top, text area is darkened for readability */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(14, 13, 11, 0.10) 0%,
    rgba(14, 13, 11, 0.42) 45%,
    rgba(14, 13, 11, 0.65) 65%,
    rgba(14, 13, 11, 0.92) 100%
  );
}

/* Decorative grain texture over the hero */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
  opacity: 0.4;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 0 1.5rem;
}

.hero-eyebrow {
  font-size: 0.92rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #cfc0a4;
  margin-bottom: 1.4rem;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.85);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 16vw, 11rem);
  letter-spacing: 0.01em;
  line-height: 0.88;
  color: var(--text);
  text-transform: uppercase;
  margin-bottom: 1.3rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.9), 0 4px 40px rgba(0,0,0,0.6);
}

/* The dots in shot.by.nos — colored + glowing */
.hero-dot {
  color: var(--accent);
  text-shadow: 0 0 24px rgba(200, 149, 108, 0.8), 0 0 60px rgba(200, 149, 108, 0.4);
}

.hero-tagline {
  font-size: clamp(0.95rem, 2.2vw, 1.25rem);
  color: var(--text-muted);
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-bottom: 2.8rem;
  text-shadow: 0 1px 10px rgba(0,0,0,0.9);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.4rem;
  color: var(--text-muted);
  animation: bounce 2s ease-in-out infinite;
  z-index: 2;
  pointer-events: none;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(10px); }
}


/* ----------------------------------------------------
   6. SERVICES SECTION
   ---------------------------------------------------- */
.services {
  padding: var(--pad-sec) 0;
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
}

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

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 14px 36px rgba(200, 149, 108, 0.15), 0 0 0 1px rgba(200, 149, 108, 0.1), 0 0 60px rgba(200, 149, 108, 0.07);
}

/* Dashed/faded card for the "coming soon" slot */
.service-card--coming {
  opacity: 0.55;
  border-style: dashed;
}

.service-card--coming:hover {
  opacity: 0.8;
}

.service-card--coming a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.service-icon {
  font-size: 2.1rem;
  margin-bottom: 1.1rem;
  line-height: 1;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.7rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.75;
}


/* ----------------------------------------------------
   7. PORTFOLIO / GALLERY
   ---------------------------------------------------- */
.portfolio {
  padding: var(--pad-sec) 0;
  background: var(--surface);
}

/* Photo grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);   /* 2 cols — better for landscape shots */
  gap: 0.8rem;
  margin-bottom: 4rem;
}

/* Featured and full-width photos span both columns */
.gallery-item--featured,
.gallery-item--full {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 7;
}

/* Hidden extra gallery section */
.gallery-extra {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-extra.open {
  max-height: 9999px;   /* large enough to fit any amount of photos */
}

.gallery-extra .gallery-grid {
  margin-top: 0.8rem;   /* small gap between the two grids */
}

/* See More button wrapper */
.gallery-toggle-wrap {
  text-align: center;
  margin-top: 2.5rem;
}

.gallery-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.8rem;
  background: transparent;
  border: 1px solid var(--accent);
  border-radius: 40px;           /* pill shape */
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--ease);
  box-shadow: 0 0 18px rgba(200, 149, 108, 0.15);
}

.gallery-toggle-btn:hover {
  background: var(--accent);
  box-shadow: 0 0 32px rgba(200, 149, 108, 0.45);
  transform: translateY(-2px);
}

.gallery-toggle-arrow {
  display: inline-block;
  font-size: 1rem;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Flip arrow when open */
.gallery-toggle-btn.open .gallery-toggle-arrow {
  transform: rotate(180deg);
}

/* Portrait cards — tall vertical shape, used for athlete portraits */
.gallery-item--portrait {
  aspect-ratio: 2 / 3 !important;
}

/* Each photo item */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  aspect-ratio: 3 / 2;
  background: var(--surface-2);
  transition: box-shadow var(--ease), transform var(--ease);
}

.gallery-item:hover {
  box-shadow: 0 0 0 2px rgba(200, 149, 108, 0.5), 0 8px 40px rgba(200, 149, 108, 0.2);
  transform: translateY(-2px);
}

/* Hide broken placeholder images — show the label div instead */
.gallery-item img[src^="PLACEHOLDER"],
.gallery-item img:not([src]),
.gallery-item img[src=""] {
  opacity: 0;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.07);   /* subtle zoom on hover */
}

/* "View" overlay that appears when hovering a photo */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 13, 11, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--ease);
}

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

.gallery-overlay span {
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.55);
  padding: 0.45rem 1.2rem;
  border-radius: 4px;
}

/* Placeholder label — shows the slot name until a real image is added */
.gallery-placeholder-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--text-muted);
  text-align: center;
  padding: 0.5rem;
  pointer-events: none;
  opacity: 0.5;
}

/* Hide placeholder label when a real image is loaded */
.gallery-item img:not([src^="PLACEHOLDER"]):not([src=""]):not(:not([src])) ~ .gallery-placeholder-label {
  display: none;
}

/* Video embed section */
.video-section {
  margin-top: 1rem;
}

.video-section-title {
  font-family: var(--font-display);
  font-size: 1.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text);
  text-align: center;
  margin-bottom: 1.5rem;
}

/* Video grid — 2×2 scattered floating layout */
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 2.5rem;
  margin-top: 3rem;
  padding: 0.5rem 1rem 2rem;
}

@media (max-width: 600px) {
  .video-grid {
    grid-template-columns: 1fr;
    padding: 0;
  }
}

/* Floating video card — gold glow + deep shadow */
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: 10px;
  overflow: hidden;
  background: transparent;
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.55),
    0 0 30px rgba(200, 149, 108, 0.18),
    0 0 0 1px rgba(200, 149, 108, 0.12);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
  z-index: 0;
}

/* Horizontal videos — subtle tilt */
.video-grid > .video-wrap:nth-child(1) { transform: rotate(-1.2deg); }
.video-grid > .video-wrap:nth-child(2) { transform: rotate(0.9deg);  }

/* 3 Shorts row — spans full grid width */
.video-shorts-row {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 1.8rem;
  flex-wrap: wrap;
}

/* Each Short tilted slightly differently */
.video-shorts-row .video-wrap:nth-child(1) { transform: rotate(-1.5deg); }
.video-shorts-row .video-wrap:nth-child(2) { transform: rotate(0.6deg);  }
.video-shorts-row .video-wrap:nth-child(3) { transform: rotate(-1deg);   }

/* Hover — straighten, lift, and intensify the glow */
.video-grid .video-wrap:hover,
.video-shorts-row .video-wrap:hover {
  transform: rotate(0deg) scale(1.04) !important;
  box-shadow:
    0 22px 64px rgba(0, 0, 0, 0.7),
    0 0 55px rgba(200, 149, 108, 0.35),
    0 0 0 1px rgba(200, 149, 108, 0.3);
  z-index: 2;
}

.video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Vertical (9:16) wrapper for YouTube Shorts */
.video-wrap--vertical {
  padding-bottom: 0;
  width: 230px;
  height: 409px;
  margin: 0 auto;
}

/* Thumbnail facade */
.video-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter var(--ease);
}

.video-wrap:hover .video-thumb {
  filter: brightness(0.65);
}

/* Play button overlay */
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(200, 149, 108, 0.9);
  border: none;
  color: #fff;
  font-size: 1.1rem;
  padding-left: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
  z-index: 1;
}

.video-wrap:hover .video-play-btn {
  background: var(--accent);
  transform: translate(-50%, -50%) scale(1.12);
  box-shadow: 0 8px 32px rgba(200, 149, 108, 0.55);
}

.video-placeholder-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  padding: 1rem;
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
}


/* ----------------------------------------------------
   8. LIGHTBOX
   Full-screen photo viewer. JS toggles .active.
   Click X or the background to close.
   ---------------------------------------------------- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.95);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.97); }
  to   { opacity: 1; transform: scale(1); }
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 1rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--ease);
  line-height: 1;
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.18);
}


/* ----------------------------------------------------
   9. ABOUT SECTION
   Light cream background for contrast — the site
   breathes here before going back dark.
   ---------------------------------------------------- */
.about {
  padding: var(--pad-sec) 0;
  background: var(--light-bg);
}

/* Side-by-side layout on desktop */
.about-container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

/* Photo wrapper */
.about-photo-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;   /* portrait orientation — good for headshots */
  background: #ddd6cc;
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;  /* crops to show the right person (Nos) */
}

/* Text column */
.about-text .section-title {
  color: var(--light-text);
  margin-bottom: 1.6rem;
}

.about-text p {
  color: #3b3228;
  line-height: 1.85;
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

.about-text .btn-outline {
  color: var(--accent);
  border-color: var(--accent);
  margin-top: 0.5rem;
}

.about-text .btn-outline:hover {
  background: var(--accent);
  color: #fff;
}


/* ----------------------------------------------------
   10. TESTIMONIALS
   ---------------------------------------------------- */
.testimonials {
  padding: var(--pad-sec) 0;
  background: var(--bg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.8rem 1.8rem;
  position: relative;
  overflow: hidden;
}

/* Big decorative quotation mark */
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -0.4rem;
  left: 1.2rem;
  font-family: Georgia, serif;
  font-size: 6rem;
  color: var(--accent);
  opacity: 0.15;
  line-height: 1;
  pointer-events: none;
}

.testimonial-quote {
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.85;
  margin-bottom: 1.3rem;
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-weight: 500;
  color: var(--text);
  font-size: 0.95rem;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}


/* ----------------------------------------------------
   11. CONTACT SECTION
   ---------------------------------------------------- */
.contact {
  padding: var(--pad-sec) 0;
  background: var(--surface);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4.5rem;
  align-items: start;
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1.6rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.1rem;
  font-size: 0.95rem;
  transition: color var(--ease);
}

.contact-link:hover { color: var(--accent); }

.contact-icon { font-size: 1.1rem; }

.contact-note {
  color: var(--text-muted);
  font-size: 0.82rem;
  font-style: italic;
  margin-top: 1.8rem;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-group label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.5;
  transition: border-color var(--ease), box-shadow var(--ease);
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200, 149, 108, 0.18);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.55;
}

/* Select arrow */
.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='%239a9080' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group select option {
  background: var(--surface-2);
  color: var(--text);
}

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


/* ----------------------------------------------------
   12. FOOTER
   ---------------------------------------------------- */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 2.8rem 0;
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.04em;
  color: var(--text);
}

.footer-location {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.footer-socials {
  display: flex;
  gap: 1.8rem;
  margin: 0.4rem 0;
}

.footer-socials a {
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color var(--ease);
}

.footer-socials a:hover { color: var(--accent); }

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.5;
}


/* ----------------------------------------------------
   13. RESPONSIVE STYLES
   The site is built mobile-first — most things already
   work on small screens. These rules fix the multi-column
   layouts that need to stack on small screens.
   ---------------------------------------------------- */

/* Tablet and below (768px) */
@media (max-width: 768px) {

  /* Show hamburger button, hide nav links by default */
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(14, 13, 11, 0.97);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border);
    padding: 0.5rem 0 1rem;
  }

  /* JS adds .open to show the menu */
  .nav-links.open { display: flex; }

  .nav-links li {
    border-bottom: 1px solid var(--border);
  }

  .nav-links a {
    display: block;
    padding: 0.9rem 2rem;
  }

  .nav-links .nav-cta {
    margin: 0.5rem 2rem;
    text-align: center;
    border-radius: var(--radius);
    display: block;
  }

  /* Gallery: 1 column on tablet/mobile */
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  /* Featured and full-width photos use normal landscape ratio on mobile */
  .gallery-item--featured,
  .gallery-item--full {
    aspect-ratio: 3 / 2;
  }

  /* Portrait cards stay tall on mobile — they look great stacked */
  .gallery-item--portrait {
    aspect-ratio: 2 / 3 !important;
  }

  /* About: stack photo on top of text */
  .about-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-photo-wrap {
    aspect-ratio: 4 / 3;
    max-width: 480px;
    margin: 0 auto;
  }

  .about-text .section-title {
    text-align: center;
  }

  /* Contact: stack info above form */
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* Small mobile (420px and below) */
@media (max-width: 480px) {

  /* Shrink the hero title so it fits */
  .hero-title {
    font-size: clamp(3.5rem, 20vw, 5.5rem);
  }

  .hero-tagline {
    font-size: 0.9rem;
  }
}

/* ---- Contact form feedback messages ---- */
.form-success,
.form-error {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.form-success {
  background: rgba(22, 163, 74, 0.12);
  border: 1px solid rgba(22, 163, 74, 0.3);
  color: #4ade80;
}

.form-error {
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.3);
  color: #f87171;
}

.form-error a {
  color: #f87171;
  text-decoration: underline;
}

.hidden { display: none !important; }
