/* ============================================
   FOTOCOPY – Main Stylesheet
   Brand colors: Black · Gold · Orange
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&display=swap');

:root {
  --dark:        #111111;
  --dark2:       #1c1c1c;
  --dark3:       #2a2a2a;
  --gold:        #F5A623;
  --gold-dark:   #D97706;
  --gold-light:  #FEF3C7;
  --orange:      #D4621E;
  --orange-dark: #B8521A;
  --white:       #FFFFFF;
  --light:       #F9F8F6;
  --muted:       #6B7280;
  --slate:       #374151;
  --border:      #E5E7EB;
  --border-dark: #333333;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow:      0 4px 24px rgba(0,0,0,.10);
  --shadow-md:   0 8px 40px rgba(0,0,0,.15);
  --transition:  .2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ---- UTILITIES ---- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.text-gold { color: var(--gold); }
.section { padding: 80px 0; }
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
  color: var(--dark);
}
.section-sub {
  text-align: center;
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 48px;
}

/* ---- LOGO ---- */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.logo-squares {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-shrink: 0;
}
.sq {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 3px;
}
.sq-gold   { background: #F5C842; }
.sq-orange { background: #D4621E; }
.sq-amber  { background: #F5A623; }
.logo-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.logo-sub {
  font-size: .78rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: .3px;
  font-family: 'Dancing Script', cursive;
}
.logo-name {
  font-family: 'Dancing Script', cursive;
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -.5px;
  line-height: 1;
}
/* image logo (header) */
.logo-img {
  height: 52px;
  width: auto;
  display: block;
}
@media (max-width: 640px) {
  .logo-img { height: 40px; }
}
/* dark header variant */
.header--dark .logo-name { color: var(--white); }
.header--dark .logo-sub  { color: var(--gold); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--dark);
}
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-1px); }
.btn-outline-white {
  background: transparent;
  border-color: rgba(255,255,255,.6);
  color: var(--white);
}
.btn-outline-white:hover { background: rgba(255,255,255,.12); }
.btn-outline-dark {
  background: transparent;
  border-color: var(--dark);
  color: var(--dark);
}
.btn-outline-dark:hover { background: var(--dark); color: var(--white); }
.btn-white {
  background: var(--white);
  color: var(--dark);
  font-weight: 700;
}
.btn-white:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-dark {
  background: var(--dark);
  color: var(--white);
}
.btn-dark:hover { background: var(--dark3); transform: translateY(-1px); }

/* Legacy alias used in order/contact */
.btn-blue { background: var(--dark); color: var(--white); }
.btn-blue:hover { background: var(--dark3); transform: translateY(-1px); }
.btn-primary { background: var(--gold); color: var(--dark); }
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-1px); }

/* ---- HEADER ---- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: var(--shadow); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--slate);
  transition: var(--transition);
}
.nav-link:hover { background: var(--gold-light); color: var(--dark); }
.nav-link.active { background: var(--gold-light); color: var(--dark); font-weight: 600; }
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lang-toggle {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--slate);
  transition: var(--transition);
}
.lang-toggle:hover { background: var(--gold-light); border-color: var(--gold); }
.lang-el, .lang-en { cursor: pointer; transition: var(--transition); }
.lang-el.active, .lang-en.active { color: var(--orange); font-weight: 700; }
.lang-sep { color: var(--border); }
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--dark);
  overflow: hidden;
  padding-top: 68px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 85%, rgba(245,166,35,.12) 0%, transparent 50%),
    radial-gradient(circle at 85% 15%, rgba(212,98,30,.10) 0%, transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(245,166,35,.04) 0%, transparent 70%);
}
/* Decorative grid lines */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,166,35,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,166,35,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 60px 24px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,.12);
  color: var(--gold);
  border: 1px solid rgba(245,166,35,.3);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: .5px;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  display: block;
}
.hero-title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -.5px;
}
.hero-sub {
  font-size: clamp(.95rem, 2vw, 1.1rem);
  color: rgba(255,255,255,.6);
  margin-bottom: 40px;
  max-width: 560px;
  line-height: 1.7;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
}
.hero-wave svg { width: 100%; display: block; }

/* ---- SERVICES GRID ---- */
.services-overview { background: var(--light); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  display: block;
}
.service-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(245,166,35,.15);
  transform: translateY(-4px);
}
.service-card--cta {
  background: #F5A623;
  border-color: transparent;
  color: var(--dark);
}
.service-card--cta h3 { color: var(--dark); }
.service-card--cta p  { color: rgba(0,0,0,.6); }
.service-card--cta .card-link { color: var(--dark); font-weight: 700; }
.service-card--cta:hover { border-color: transparent; box-shadow: 0 8px 32px rgba(212,98,30,.4); }
.service-icon {
  width: 52px;
  height: 52px;
  background: var(--gold-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--orange);
  flex-shrink: 0;
}
.service-card--cta .service-icon {
  background: rgba(255,255,255,.28);
  color: var(--dark);
}
.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}
.service-card p {
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.6;
  margin-bottom: 16px;
}
.card-link {
  font-size: .88rem;
  font-weight: 600;
  color: var(--orange);
}

/* ---- WHY US ---- */
.why-us { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.why-item {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.why-item:hover { background: var(--gold-light); }
.why-icon {
  width: 56px;
  height: 56px;
  background: var(--gold-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--orange);
}
.why-item h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}
.why-item p { color: var(--muted); font-size: .9rem; }

/* ---- CTA BANNER ---- */
.cta-banner {
  background: linear-gradient(120deg, #F5A623 0%, #E8901A 50%, #D4621E 100%);
  padding: 64px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-inner h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}
.cta-inner p { color: rgba(0,0,0,.55); font-weight: 500; }

/* ---- FOOTER ---- */
.footer {
  background: #0a0a0a;
  color: rgba(255,255,255,.6);
  padding: 60px 0 0;
  border-top: 1px solid rgba(245,166,35,.15);
}
.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-brand .logo-name { color: var(--white); }
.footer-brand .logo-sub  { color: var(--gold); }
.footer-brand > p { font-size: .85rem; margin-top: 8px; color: rgba(255,255,255,.4); }
.footer-links, .footer-contact, .footer-hours { display: flex; flex-direction: column; gap: 10px; }
.footer-links h5, .footer-contact h5, .footer-hours h5 {
  color: var(--gold);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 4px;
}
.footer-links a { font-size: .88rem; transition: var(--transition); color: rgba(255,255,255,.6); }
.footer-links a:hover { color: var(--gold); }
.footer-contact p, .footer-hours p { font-size: .88rem; }
.footer-contact a { color: rgba(255,255,255,.6); }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  text-align: center;
  padding: 20px 0;
  font-size: .78rem;
  color: rgba(255,255,255,.25);
}
.made-by {
  color: rgba(255,255,255,.45);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: .3px;
  transition: color .2s;
}
.made-by:hover { color: var(--gold); }
.footer-tagline {
  display: inline-block;
  background: rgba(245,166,35,.1);
  color: var(--gold);
  font-size: .72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
  margin-top: 8px;
  letter-spacing: .5px;
  text-transform: uppercase;
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.page-hero {
  background: var(--dark);
  padding: 140px 0 80px;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(245,166,35,.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(212,98,30,.06) 0%, transparent 40%);
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 12px;
}
.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.6);
  max-width: 560px;
  margin: 0 auto;
}

.services-detail { background: var(--light); }
.service-detail-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 24px;
  border: 1px solid var(--border);
  display: flex;
  gap: 32px;
  align-items: flex-start;
  transition: var(--transition);
}
.service-detail-card:hover { box-shadow: 0 8px 32px rgba(245,166,35,.12); border-color: var(--gold); transform: translateY(-2px); }
.service-detail-icon {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  background: var(--gold-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}
.service-detail-body h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}
.service-detail-body p {
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.7;
}
.service-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.tag {
  background: var(--gold-light);
  color: var(--orange-dark);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 600;
}

/* ============================================
   ORDER PAGE
   ============================================ */
.order-section { background: var(--light); min-height: calc(100vh - 68px); padding-top: 68px; }
.order-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  padding: 60px 0;
  align-items: start;
}
.order-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.order-form-card h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--dark);
}
.order-form-card .form-sub {
  color: var(--muted);
  margin-bottom: 32px;
  font-size: .92rem;
}
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: .9rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245,166,35,.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.upload-zone {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: var(--light);
}
.upload-zone:hover, .upload-zone.dragover {
  border-color: var(--gold);
  background: var(--gold-light);
}
.upload-zone input[type="file"] { display: none; }
.upload-icon {
  display: flex;
  justify-content: center;
  color: var(--muted);
  margin-bottom: 12px;
}
.upload-text { font-size: .9rem; color: var(--muted); }
.upload-text strong { color: var(--orange); }
.upload-hint { font-size: .78rem; color: var(--muted); margin-top: 8px; }
.uploaded-file {
  display: none;
  background: var(--gold-light);
  border: 1px solid var(--gold);
  border-radius: 8px;
  padding: 12px 16px;
  margin-top: 12px;
}
.uploaded-file-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.uploaded-file-label { font-size: .82rem; font-weight: 600; color: var(--dark); flex: 1; }
.uploaded-file .file-remove { cursor: pointer; color: var(--muted); font-size: 1.05rem; margin-left: auto; }
.file-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.file-list li {
  font-size: .85rem;
  color: var(--dark);
  padding: 4px 8px;
  background: rgba(255,255,255,.6);
  border-radius: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.btn-submit {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  justify-content: center;
  margin-top: 8px;
}
.order-info-card {
  background: #F5A623;
  border-radius: var(--radius-lg);
  padding: 32px;
  color: var(--dark);
  position: sticky;
  top: 88px;
}
.order-info-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 24px;
}
.info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
  align-items: flex-start;
}
.info-item-icon { flex-shrink: 0; margin-top: 2px; }
.info-item h4 { font-size: .9rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.info-item p { font-size: .82rem; color: rgba(0,0,0,.55); }
.info-divider { height: 1px; background: rgba(0,0,0,.12); margin: 20px 0; }
.info-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  color: rgba(0,0,0,.7);
  padding: 8px 0;
  transition: var(--transition);
  font-weight: 500;
}
.info-contact a:hover { color: var(--dark); font-weight: 700; }
.info-contact p.label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(0,0,0,.45);
  margin-bottom: 8px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section { background: var(--light); min-height: calc(100vh - 68px); padding-top: 68px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 60px 0;
  align-items: start;
}
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.contact-form-card h2 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.contact-info-panel { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
}
.contact-card h3 {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold-dark);
  margin-bottom: 18px;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.contact-detail:last-child { margin-bottom: 0; }
.contact-detail-icon {
  width: 40px; height: 40px;
  background: var(--gold-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-detail-text .label {
  font-size: .72rem;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.contact-detail-text .value {
  font-size: .95rem;
  font-weight: 600;
  color: var(--dark);
}
.contact-detail-text a.value:hover { color: var(--orange); }
.contact-detail-text a.value { text-decoration: underline; text-decoration-color: transparent; transition: color var(--transition), text-decoration-color var(--transition); }
.contact-detail-text a.value:hover { text-decoration-color: var(--orange); }
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: .88rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: var(--slate); font-weight: 500; }
.hours-row .time { color: var(--dark); font-weight: 700; }
.hours-row .time.closed { color: var(--muted); font-weight: 400; }
.map-placeholder {
  background: #F5A623;
  border-radius: var(--radius-lg);
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  font-size: .9rem;
  color: var(--dark);
  cursor: pointer;
  transition: var(--transition);
  font-weight: 700;
}
.map-placeholder:hover { background: #E8941A; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,98,30,.15); }
.map-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
}

/* ============================================
   PORTFOLIO SECTION
   ============================================ */
.portfolio { background: var(--white); }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.portfolio-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--light);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.portfolio-item:hover { transform: scale(1.02); box-shadow: var(--shadow-md); z-index: 1; }
.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.portfolio-item:hover img { transform: scale(1.06); }

/* Placeholder when image missing */
.portfolio-item.no-img {
  background: linear-gradient(135deg, var(--gold-light) 0%, #fde68a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.portfolio-item.no-img::before {
  content: '';
  width: 40px; height: 40px;
  border: 2px solid var(--gold);
  border-radius: 8px;
  opacity: .4;
}

.portfolio-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.65));
  color: var(--white);
  font-size: .78rem;
  font-weight: 600;
  padding: 28px 12px 10px;
  letter-spacing: .3px;
}
.portfolio-item.no-img .portfolio-label {
  background: linear-gradient(transparent, rgba(0,0,0,.25));
  color: var(--dark);
}

.portfolio-instagram {
  text-align: center;
}
.portfolio-instagram .btn {
  gap: 10px;
  font-size: .95rem;
}

/* footer Instagram link */
.footer-instagram {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
}
.footer-instagram:hover { color: var(--gold); }

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

/* ============================================
   FORM VALIDATION
   ============================================ */
.form-error-banner {
  display: none;
  align-items: center;
  gap: 10px;
  background: #FEF2F2;
  border: 1.5px solid #FECACA;
  color: #B91C1C;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: .88rem;
  font-weight: 500;
  margin-bottom: 20px;
}
.form-error-banner.visible { display: flex; }
.form-group input.field-error,
.form-group select.field-error,
.form-group textarea.field-error {
  border-color: #F87171;
  box-shadow: 0 0 0 3px rgba(248,113,113,.15);
}

/* ============================================
   SUCCESS STATE
   ============================================ */
.success-state {
  display: none;
  text-align: center;
  padding: 48px 0;
}
.success-state.visible { display: block; }
.success-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

/* footer contact lines with SVG icons */
.fc-line {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* numbered step badges */
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: rgba(0,0,0,.18);
  color: var(--dark);
  border-radius: 50%;
  font-weight: 800;
  font-size: .88rem;
  flex-shrink: 0;
}

/* muted icon wrapper */
.icon-muted { color: var(--muted); display: flex; align-items: center; }

/* contact detail icon sizing */
.contact-detail-icon svg { display: block; }
.success-state h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 8px; }
.success-state p { color: var(--muted); }

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .nav {
    display: none;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 12px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    z-index: 99;
  }
  .nav.open { display: flex; }
  .nav-link { padding: 12px 16px; border-radius: 8px; font-size: .95rem; }
  .burger { display: flex; }

  .hero-content { padding: 40px 24px 80px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { text-align: center; justify-content: center; }

  .cta-inner { flex-direction: column; text-align: center; }
  .order-grid { grid-template-columns: 1fr; }
  .order-info-card { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-detail-card { flex-direction: column; gap: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .section { padding: 60px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}

/* ============================================
   ACCORDION
   ============================================ */
.accordion { display: flex; flex-direction: column; gap: 10px; }
.accordion-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.accordion-item.open { border-color: var(--gold); box-shadow: 0 4px 20px rgba(245,166,35,.12); }
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: background var(--transition);
}
.accordion-trigger:hover { background: var(--gold-light); }
.accordion-item.open .accordion-trigger { background: var(--gold-light); }
.acc-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--gold-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  transition: background var(--transition), color var(--transition);
}
.accordion-item.open .acc-icon { background: var(--gold); color: var(--dark); }
.acc-title {
  flex: 1;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
}
.acc-chevron {
  flex-shrink: 0;
  color: var(--muted);
  transition: transform .25s ease, color var(--transition);
}
.accordion-item.open .acc-chevron { transform: rotate(180deg); color: var(--orange); }
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.accordion-content-inner {
  padding: 16px 28px 24px 84px;
  color: var(--muted);
  line-height: 1.75;
  font-size: .93rem;
  border-top: 1px solid rgba(245,166,35,.2);
}

/* Services page accordion – slightly larger */
.services-accordion .acc-icon { width: 52px; height: 52px; }
.services-accordion .acc-icon svg { width: 28px; height: 28px; }
.services-accordion .acc-title { font-size: 1.1rem; }
.services-accordion .accordion-trigger { padding: 22px 28px; }
.services-accordion .accordion-content-inner { padding-left: 96px; }

/* ============================================
   SERVICE CARDS (homepage grid)
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.services-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
.services-cta {
  text-align: center;
  margin-top: 36px;
}
.service-card {
  background: linear-gradient(160deg, #ffffff 0%, #fdfcf8 100%);
  border: 1px solid rgba(245, 166, 35, 0.15);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 16px rgba(0,0,0,.06), 0 1px 4px rgba(0,0,0,.03);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.service-card { cursor: default; }
.services-overview .service-card:hover {
  transform: none;
  border-color: rgba(245, 166, 35, 0.15);
  border-top-color: var(--gold);
  box-shadow: 0 2px 16px rgba(0,0,0,.06), 0 1px 4px rgba(0,0,0,.03);
}
.services-overview .service-card:hover .service-icon {
  background: linear-gradient(135deg, #fff9ec 0%, var(--gold-light) 100%);
  border-color: rgba(245, 166, 35, 0.25);
  color: var(--gold-dark);
  box-shadow: none;
}
.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #fff9ec 0%, var(--gold-light) 100%);
  border: 1px solid rgba(245, 166, 35, 0.25);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold-dark);
  flex-shrink: 0;
  transition: background .35s ease, color .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 14px rgba(245,166,35,.4);
}
.service-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.service-card p  { color: var(--muted); font-size: .88rem; line-height: 1.65; flex: 1; }
.service-card--cta {
  background: var(--gold);
  border-color: transparent;
}
.service-card--cta .service-icon { background: rgba(255,255,255,.35); color: var(--dark); }
.service-card--cta h3,
.service-card--cta p { color: var(--dark); }
.service-card--cta p { color: rgba(0,0,0,.6); }
.service-card--cta:hover { border-color: transparent; box-shadow: 0 8px 32px rgba(212,98,30,.35); }
.service-card--cta:hover .service-icon { background: rgba(255,255,255,.55); color: var(--dark); }
.service-card--cta .card-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 22px;
  background: var(--dark);
  color: var(--gold);
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 700;
  transition: background .2s ease;
}
.service-card--cta .card-btn:hover { background: #222; }

/* ============================================
   PORTFOLIO SECTION
   ============================================ */
.portfolio { background: var(--light); }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  margin-top: 48px;
}
.portfolio-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: var(--border);
}
.portfolio-item:first-child {
  grid-column: span 2;
}
.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.portfolio-item:hover img { transform: scale(1.06); }
.portfolio-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #e9e9e9;
  color: var(--muted);
  font-size: .85rem;
  font-weight: 500;
}
.portfolio-placeholder svg { opacity: .35; }

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,.88);
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  animation: lbFadeIn .2s ease;
}
.lightbox.open { display: flex; }
@keyframes lbFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.lightbox-img {
  max-width: 92vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0,0,0,.6);
  animation: lbScaleIn .25s ease;
  cursor: default;
}
@keyframes lbScaleIn {
  from { transform: scale(.92); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  background: rgba(255,255,255,.12);
  border: none;
  color: var(--white);
  font-size: 1.4rem;
  width: 40px; height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease;
}
.lightbox-close:hover { background: rgba(255,255,255,.25); }
.portfolio-item { cursor: zoom-in; }

/* ============================================
   FLOATING ACTION BUTTONS
   ============================================ */
.fab-group {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fab {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(0,0,0,.28);
  transition: transform .2s ease, box-shadow .2s ease;
  flex-shrink: 0;
}
.fab:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,.35);
}
.fab-phone {
  background: var(--gold);
  color: var(--dark);
}
.fab-contact {
  background: var(--dark);
  color: var(--white);
  border: 2px solid var(--gold);
}
.btn-sm { padding: 8px 18px; font-size: .85rem; border-radius: 6px; }
.optional-label { font-weight: 400; color: var(--muted); font-size: .8rem; }

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-item:first-child { grid-column: span 2; }
}

@media (max-width: 640px) {
  .sticky-bar { flex-direction: column; gap: 8px; padding: 12px 16px; }
  .sticky-bar-text { text-align: center; font-size: .82rem; }
  .accordion-content-inner { padding-left: 24px; }
  .services-accordion .accordion-content-inner { padding-left: 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .services-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-item:first-child { grid-column: span 1; }
}

/* ── Radio group (styled as pill buttons) ── */
.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.radio-group input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.radio-group label {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  background: var(--surface);
  transition: border-color .2s, background .2s, color .2s;
  user-select: none;
}
.radio-group input[type="radio"]:checked + label {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
}
.radio-group label:hover {
  border-color: var(--orange);
}

/* Service-specific field sections */
.service-fields {
  display: none;
}
.service-fields.active {
  display: block;
}

/* T-shirt size grid */
.size-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}
.size-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.size-label {
  font-size: .8rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
}
.size-item input[type="number"] {
  width: 60px;
  text-align: center;
  padding: 8px 6px;
}

.footer-logo-img {
  height: 60px;
  width: auto;
  display: block;
}

@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .portfolio-item:nth-child(1) {
    grid-column: 1 / 3 !important;
    grid-row: auto !important;
    aspect-ratio: 4/3 !important;
  }
  .portfolio-item:nth-child(n+2) {
    grid-column: auto !important;
    grid-row: auto !important;
    aspect-ratio: 1/1 !important;
  }
}

/* ─── PRELOADER ─────────────────────────────────────────────────────────── */
#preloader {
  position: fixed;
  inset: 0;
  background: #111;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 500ms cubic-bezier(0.76, 0, 0.24, 1);
}

#preloader.slide-up {
  transform: translateY(-100%);
}

.preloader-logo-wrapper {
  position: relative;
  display: inline-block;
}

.preloader-logo {
  max-width: 320px;
  display: block;
  clip-path: inset(0 0 100% 0);
  animation: logoReveal 1400ms ease-out forwards;
}

@keyframes logoReveal {
  to { clip-path: inset(0 0 0% 0); }
}

.scan-line {
  position: absolute;
  top: 0;
  left: -10%;
  right: -10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #fff, transparent);
  animation: scanDown 1400ms ease-out forwards;
}

@keyframes scanDown {
  from { top: 0; }
  to   { top: 100%; }
}
