/* ============================================================
   ADAM PHOTOGRAPHY SPECIALIST — DESIGN TOKENS
   Palette: corporate orange (brand), warm ink, cream paper
   Display: Fraunces (characterful serif, yearbook/portrait feel)
   Body: Inter
   Signature motif: photo-corner mounts + film-strip frame numbers
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,500&family=Inter:wght@400;500;600;700;800&display=swap');

:root{
  --orange: #FA9507;
  --orange-deep: #C97A05;
  --orange-soft: #FDE7C4;
  --ink: #241F19;
  --ink-soft: #4A423A;
  --muted: #8A8074;
  --cream: #FAF5EC;
  --paper: #FFFFFF;
  --sand: #F0E6D6;
  --line: #E3D6C3;

  --display: 'Fraunces', serif;
  --body: 'Inter', sans-serif;

  --container: 1180px;
  --radius: 4px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ font-family: var(--display); font-weight:600; margin:0; color: var(--ink); }
p{ margin:0 0 1em; }
.container{ max-width: var(--container); margin: 0 auto; padding: 0 32px; }

:focus-visible{
  outline: 2.5px solid var(--orange);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* ---------- Eyebrow / labels ---------- */
.eyebrow{
  font-family: var(--body);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-deep);
  display:flex;
  align-items:center;
  gap:10px;
}
.eyebrow::before{
  content:"";
  width: 22px;
  height: 2px;
  background: var(--orange);
  display:inline-block;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header{
  position: sticky;
  top:0;
  z-index: 100;
  background: rgba(250,245,236,0.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 18px 32px;
  max-width: var(--container);
  margin: 0 auto;
}
.brand{
  display:flex;
  flex-direction: column;
  line-height: 1;
}
.brand-logo{
  height: 48px;
  width: auto;
  mix-blend-mode: multiply;
}
.brand-name{
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.brand-name span{ color: var(--orange); }
.brand-tag{
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
}
@media (max-width: 400px){ .brand-logo{ height: 38px; } }
.nav-links{
  display:flex;
  align-items:center;
  gap: 36px;
}
.nav-links a{
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
}
.nav-links a:hover, .nav-links a.active{ color: var(--orange-deep); }
.nav-links a.active::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:-6px;
  height:2px;
  background: var(--orange);
}
.nav-cta{
  background: var(--orange);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 700 !important;
  font-size: 13.5px !important;
  transition: background 0.15s ease;
}
.nav-cta:hover{ background: var(--orange-deep); }

.nav-toggle{
  display:none;
  background:none;
  border:none;
  cursor:pointer;
  width:32px; height:32px;
  flex-direction:column;
  justify-content:center;
  gap:6px;
}
.nav-toggle span{
  display:block;
  height:2px;
  background: var(--ink);
  border-radius:2px;
}

@media (max-width: 860px){
  .nav-links{
    position:absolute;
    top: 100%;
    left:0; right:0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    flex-direction:column;
    align-items:flex-start;
    padding: 20px 32px 28px;
    gap: 18px;
    display:none;
  }
  .nav-links.open{ display:flex; }
  .nav-toggle{ display:flex; }
  .nav-cta{ margin-top: 6px; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14.5px;
  border: 1.5px solid transparent;
  cursor:pointer;
  transition: all 0.15s ease;
}
.btn-primary{ background: var(--orange); color:#fff; }
.btn-primary:hover{ background: var(--orange-deep); }
.btn-ghost{ background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover{ background: var(--ink); color: var(--cream); }
.btn-outline-light{ background: transparent; color:#fff; border-color: rgba(255,255,255,0.55); }
.btn-outline-light:hover{ background:#fff; color: var(--ink); }

/* ============================================================
   PHOTO CORNER MOUNT — signature motif
   ============================================================ */
.photo-mount{
  position: relative;
  padding: 14px;
  background: var(--paper);
  box-shadow: 0 18px 40px -20px rgba(36,31,25,0.35);
}
.photo-mount .corner{
  position:absolute;
  width: 20px; height: 20px;
  z-index: 2;
}
.photo-mount .corner::before{
  content:"";
  position:absolute;
  width:0; height:0;
  border-style: solid;
}
.photo-mount .corner.tl{ top:6px; left:6px; }
.photo-mount .corner.tl::before{ border-width: 16px 16px 0 0; border-color: var(--orange) transparent transparent transparent; }
.photo-mount .corner.tr{ top:6px; right:6px; }
.photo-mount .corner.tr::before{ border-width: 0 16px 16px 0; border-color: transparent var(--orange) transparent transparent; }
.photo-mount .corner.bl{ bottom:6px; left:6px; }
.photo-mount .corner.bl::before{ border-width: 16px 0 0 16px; border-color: transparent transparent transparent var(--orange); }
.photo-mount .corner.br{ bottom:6px; right:6px; }
.photo-mount .corner.br::before{ border-width: 0 0 16px 16px; border-color: transparent transparent var(--orange) transparent; }
.photo-mount img{ width:100%; height:100%; object-fit: cover; }
.photo-mount figcaption{
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-align:center;
  padding-top: 10px;
  font-weight: 600;
}

/* film sprocket divider */
.sprocket-divider{
  display:flex;
  justify-content:center;
  gap: 10px;
  padding: 6px 0;
}
.sprocket-divider span{
  width:6px; height:6px;
  border-radius:1px;
  background: var(--line);
}

/* ============================================================
   HERO (home)
   ============================================================ */
.hero{
  padding: 72px 0 90px;
  overflow: hidden;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items:center;
}
.hero h1{
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.08;
  margin: 18px 0 22px;
  letter-spacing: -0.01em;
}
.hero h1 em{
  font-style: italic;
  color: var(--orange-deep);
}
.hero p.lead{
  font-size: 17.5px;
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 32px;
}
.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; }

.hero-collage{
  position: relative;
  height: 420px;
}
.hero-collage .photo-mount{
  position:absolute;
  width: 230px;
}
.hero-collage .p1{ top:0; left: 40px; transform: rotate(-6deg); z-index:2; }
.hero-collage .p1 img{ height:190px; }
.hero-collage .p2{ top: 40px; right:0; transform: rotate(5deg); z-index:1; width:200px; }
.hero-collage .p2 img{ height:230px; }
.hero-collage .p3{ bottom:0; left: 90px; transform: rotate(3deg); z-index:3; width:210px; }
.hero-collage .p3 img{ height:170px; }

@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-collage{ height: 320px; margin-top:20px; }
  .hero-collage .photo-mount{ width: 150px; }
  .hero-collage .p1{ left:0; } .hero-collage .p1 img{ height:120px; }
  .hero-collage .p2{ right:0; width:140px; } .hero-collage .p2 img{ height:150px; }
  .hero-collage .p3{ left: 60px; width:140px; } .hero-collage .p3 img{ height:110px; }
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats{
  background: var(--ink);
  color: var(--cream);
  padding: 44px 0;
}
.stats-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align:center;
}
.stats-grid .num{
  font-family: var(--display);
  font-size: 40px;
  color: var(--orange);
  font-weight:600;
}
.stats-grid .label{
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sand);
  margin-top: 6px;
}
@media (max-width: 700px){ .stats-grid{ grid-template-columns: repeat(2,1fr); row-gap: 32px; } }

/* ============================================================
   SECTION helpers
   ============================================================ */
.section{ padding: 88px 0; }
.section-head{ max-width: 640px; margin-bottom: 48px; }
.section-head h2{ font-size: clamp(28px,3.4vw,38px); margin-top:14px; line-height:1.15; }
.section-head p{ color: var(--ink-soft); font-size: 16px; margin-top:14px; }
.section.alt{ background: var(--sand); }

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service-card{
  background: var(--paper);
  padding: 34px 30px;
  transition: background 0.2s ease;
}
.service-card:hover{ background: var(--orange-soft); }
.service-card .frame-num{
  font-family: var(--display);
  font-style: italic;
  color: var(--orange);
  font-size: 14px;
  font-weight: 600;
}
.service-card h3{ font-size: 20px; margin: 10px 0 8px; }
.service-card p{ font-size: 14.5px; color: var(--muted); margin:0; }
@media (max-width: 800px){ .services-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px){ .services-grid{ grid-template-columns: 1fr; } }

/* ============================================================
   PROCESS (real sequence — booking flow)
   ============================================================ */
.process-strip{
  display:grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
  position: relative;
}
.process-step{
  padding: 0 24px;
  position: relative;
}
.process-step:not(:last-child)::after{
  content:"";
  position:absolute;
  top: 22px; right: -2px;
  width: 40px; height:1px;
  background: repeating-linear-gradient(90deg, var(--muted) 0 6px, transparent 6px 11px);
}
.process-step .frame-num{
  font-family: var(--display);
  font-style: italic;
  font-size: 15px;
  color: var(--orange-deep);
  font-weight: 700;
}
.process-step h4{ font-size: 17px; margin: 10px 0 8px; }
.process-step p{ font-size: 14px; color: var(--muted); }
@media (max-width: 800px){
  .process-strip{ grid-template-columns: 1fr; gap: 28px; }
  .process-step:not(:last-child)::after{ display:none; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-track-wrap{
  overflow:hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.testi-track{
  display:flex;
  gap: 22px;
  width: max-content;
  animation: scroll-left 60s linear infinite;
}
.testi-track:hover{ animation-play-state: paused; }
@keyframes scroll-left{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}
.testi-card{
  width: 340px;
  flex: none;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 3px solid var(--orange);
  padding: 26px 26px 22px;
}
.testi-card p.quote{
  font-family: var(--display);
  font-style: italic;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 16px;
}
.testi-card .school{
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--orange-deep);
}

/* ============================================================
   PORTFOLIO
   ============================================================ */
.filter-bar{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  margin-bottom: 42px;
}
.filter-bar button{
  background: transparent;
  border: 1.5px solid var(--line);
  color: var(--ink-soft);
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  cursor:pointer;
  transition: all 0.15s ease;
}
.filter-bar button.active, .filter-bar button:hover{
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
}
.portfolio-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px 28px;
}
.portfolio-grid .photo-mount img{ height: 230px; }
.portfolio-grid .photo-mount{ cursor: pointer; }
@media (max-width: 900px){ .portfolio-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px){ .portfolio-grid{ grid-template-columns: 1fr; } }

/* ============================================================
   ABOUT PAGE — values / story
   ============================================================ */
.about-hero{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items:center;
}
.about-hero .photo-mount img{ height: 420px; }
@media (max-width: 900px){
  .about-hero{ grid-template-columns: 1fr; }
  .about-hero .photo-mount img{ height: 280px; }
}

.values-grid{
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
}
.value-card{
  border-top: 3px solid var(--orange);
  padding-top: 20px;
}
.value-card h3{ font-size: 19px; margin-bottom: 10px; }
.value-card p{ color: var(--ink-soft); font-size: 14.5px; }
@media (max-width: 800px){ .values-grid{ grid-template-columns: 1fr; } }

/* Team photo grid — About page regional presence */
.team-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.team-photo{
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center top;
}
.team-label{
  text-align:center;
  margin-top: 18px;
}
.team-label .tag{
  display:block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange-deep);
  margin-bottom: 4px;
}
.team-label h3{ font-size: 20px; }
.team-card p.desc{
  text-align:center;
  font-size: 14px;
  color: var(--muted);
  margin-top: 8px;
  padding: 0 8px;
}
@media (max-width: 900px){
  .team-grid{ grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

.pull-quote{
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(22px,2.6vw,30px);
  line-height: 1.4;
  color: var(--ink);
  border-left: 3px solid var(--orange);
  padding-left: 28px;
  margin: 0;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items:start;
}
@media (max-width: 900px){ .contact-layout{ grid-template-columns: 1fr; } }

.branch-cards{ display:flex; flex-direction:column; gap: 20px; }
.branch-card{
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 26px 28px;
  position:relative;
}
.branch-card.hq{ border-left: 4px solid var(--orange); }
.branch-card .tag{
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange-deep);
  margin-bottom: 6px;
  display:block;
}
.branch-card h3{ font-size: 20px; margin-bottom: 12px; }
.branch-card .row{
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 6px;
  display:flex;
  gap: 8px;
}
.branch-card .row b{ color: var(--ink); min-width: 62px; font-weight:600; }
.branch-card .visit-link{
  display:inline-flex;
  align-items:center;
  gap:6px;
  margin-top: 14px;
  font-weight: 700;
  font-size: 13.5px;
  color: var(--orange-deep);
  border-bottom: 1.5px solid var(--orange-deep);
  padding-bottom: 2px;
}

.eshop-banner{
  background: var(--ink);
  color: var(--cream);
  padding: 30px 32px;
  margin-bottom: 28px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.eshop-banner h3{ color:#fff; font-size: 21px; margin-bottom:6px; }
.eshop-banner p{ color: var(--sand); font-size: 14px; margin:0; max-width: 420px; }
.eshop-banner .lookup-note{
  font-size: 12.5px;
  color: var(--sand);
  opacity: 0.85;
  margin-top: 10px;
  max-width: 420px;
}
.eshop-banner .lookup-note a{ color: var(--orange); font-weight:700; border-bottom: 1px solid var(--orange); }

.contact-form{
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 34px;
}
.contact-form h3{ font-size: 22px; margin-bottom: 6px; }
.contact-form > p{ color: var(--muted); font-size: 14px; margin-bottom: 24px; }
.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-row.single{ grid-template-columns: 1fr; }
@media (max-width: 520px){ .form-row{ grid-template-columns: 1fr; } }
.field label{
  display:block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 7px;
}
.field input, .field select, .field textarea{
  width:100%;
  border: 1.5px solid var(--line);
  background: var(--cream);
  padding: 12px 14px;
  font-family: var(--body);
  font-size: 14.5px;
  color: var(--ink);
  border-radius: var(--radius);
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline: none;
  border-color: var(--orange);
  background: #fff;
}
.field textarea{ resize: vertical; min-height: 110px; }
.form-note{ font-size: 12px; color: var(--muted); margin-top: 14px; }
.form-success{
  display:none;
  background: var(--orange-soft);
  border: 1px solid var(--orange);
  color: var(--orange-deep);
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
}

.map-embed{
  border: 1px solid var(--line);
  overflow: hidden;
  height: 260px;
  margin-top: 24px;
}
.map-embed iframe{ width:100%; height:100%; border:0; display:block; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band{
  background: var(--orange);
  color: #fff;
  padding: 64px 0;
  text-align:center;
}
.cta-band h2{ color:#fff; font-size: clamp(26px,3.2vw,36px); margin-bottom: 16px; }
.cta-band p{ color: var(--orange-soft); max-width: 520px; margin: 0 auto 30px; }
.cta-band .hero-actions{ justify-content:center; }
.cta-band .btn-primary{ background: var(--ink); }
.cta-band .btn-primary:hover{ background: #000; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer{
  background: var(--ink);
  color: var(--sand);
  padding: 56px 0 28px;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-grid h4{
  color: #fff;
  font-family: var(--body);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-grid p{ font-size: 14px; color: var(--sand); opacity:0.85; }
.footer-grid ul li{ margin-bottom: 10px; }
.footer-grid ul a{ font-size: 14px; color: var(--sand); opacity: 0.85; }
.footer-grid ul a:hover{ color: var(--orange); opacity:1; }
.footer-brand-name{ font-family: var(--display); font-size: 22px; color:#fff; margin-bottom: 12px; }
.footer-brand-name span{ color: var(--orange); }
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 22px;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:12px;
  font-size: 13px;
  color: var(--muted);
}
@media (max-width: 800px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px){ .footer-grid{ grid-template-columns: 1fr; } }

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-header{
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--line);
}
.page-header h1{ font-size: clamp(32px,4.4vw,46px); margin-top: 14px; }
.page-header p{ color: var(--ink-soft); max-width: 560px; margin-top: 14px; font-size: 16px; }
