/* ============================================================
   FACES Beauty Salon — Main Stylesheet
   Colours: Cream #e8e0d5 | Dark #1a1a1a | Red #c0392b | Blue #2c3e7a | Coral #c97a6b
   ============================================================ */

:root {
  --cream:  #e8e0d5;
  --dark:   #1a1a1a;
  --red:    #c0392b;
  --blue:   #2c3e7a;
  --coral:  #c97a6b;
  --white:  #faf9f7;
  --mid:    #6b6560;
  --border: rgba(0,0,0,0.1);
  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'Montserrat', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--ff-body); background: var(--white); color: var(--dark); font-size: 14px; line-height: 1.7; }
img  { max-width: 100%; display: block; }
a    { color: inherit; }

/* ── TYPOGRAPHY ─────────────────────────────────────── */
.display { font-family: var(--ff-display); font-weight: 300; }
h1,h2,h3,h4 { font-family: var(--ff-display); font-weight: 300; line-height: 1.1; }

/* ── NAV ─────────────────────────────────────────────── */
#mainNav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--cream); border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 70px;
}
.nav-logo { display: flex; flex-direction: column; line-height: 1; }
.nav-sub { font-size: 9px; letter-spacing: 3px; color: var(--mid); text-transform: uppercase; }
.nav-logo .brand { font-family: var(--ff-display); font-size: 26px; font-weight: 600; letter-spacing: 6px; color: var(--dark); text-decoration: none; }
.nav-logo .brand span, footer .brand span { color: var(--coral); }
.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links a { text-decoration: none; color: var(--dark); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--red); }
.nav-links .nav-cta { background: var(--dark); color: var(--white) !important; padding: 10px 22px; transition: background .2s; }
.nav-links .nav-cta:hover { background: var(--red); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); transition: .3s; }
.mobile-menu { display: none; position: fixed; top: 70px; left: 0; right: 0; background: var(--cream); border-bottom: 1px solid var(--border); z-index: 999; padding: 20px 30px; flex-direction: column; gap: 4px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { text-decoration: none; color: var(--dark); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; padding: 10px 0; border-bottom: 1px solid var(--border); }
.page-wrap { margin-top: 70px; }

/* ── BUTTONS ─────────────────────────────────────────── */
.btn { display: inline-block; text-decoration: none; font-family: var(--ff-body); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; font-weight: 500; padding: 14px 36px; border: none; cursor: pointer; transition: background .2s, color .2s; }
.btn-dark   { background: var(--dark);  color: var(--white); }
.btn-dark:hover  { background: var(--red); }
.btn-red    { background: var(--red);   color: var(--white); }
.btn-red:hover   { background: #a93226; }
.btn-outline { background: transparent; color: var(--dark); border: 1px solid var(--dark); }
.btn-outline:hover { background: var(--dark); color: var(--white); }
.btn-sm { padding: 8px 18px; font-size: 10px; }
.btn-block { width: 100%; text-align: center; }

/* ── HERO ─────────────────────────────────────────────── */

.hero {
  position: relative;
  overflow: hidden;
  background: var(--dark); min-height: calc(100vh - 70px);
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; padding: 60px 80px; gap: 60px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('../img/hero-img.jpg');
  background-size: cover; background-position: center;
  transform: scale(1.08);
  transition: transform .4s ease-out;
  will-change: transform;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(110deg,
    rgba(232,224,213,.95) 0%,
    rgba(232,224,213,.86) 38%,
    rgba(26,26,26,.55) 78%,
    rgba(26,26,26,.4) 100%);
}
.hero-text, .hero-visual { position: relative; z-index: 2; }
.hero-visual .stat-card { backdrop-filter: blur(2px); }
.hero-eyebrow { font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--mid); margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.hero-eyebrow::after { content: ''; display: inline-block; width: 40px; height: 1px; background: var(--red); }
.hero-title { font-size: clamp(52px,7vw,90px); margin-bottom: 24px; }
.hero-title em { font-style: italic; color: var(--coral); }
.hero-sub { font-size: 13px; color: var(--mid); line-height: 1.8; max-width: 400px; margin-bottom: 40px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-visual { display: flex; flex-direction: column; gap: 20px; }
.hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-card { background: var(--white); padding: 28px 24px; border-left: 3px solid var(--red); }
.stat-card.blue { border-color: var(--blue); }
.stat-num { font-family: var(--ff-display); font-size: 42px; font-weight: 300; line-height: 1; }
.stat-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--mid); margin-top: 6px; }
.hero-tagline { background: var(--dark); color: var(--white); padding: 24px 28px; font-family: var(--ff-display); font-size: 18px; font-style: italic; }

/* ── SECTION COMMONS ─────────────────────────────────── */
.section { padding: 90px 80px; }
.section.cream { background: var(--cream); }
.section.dark  { background: var(--dark); color: var(--white); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-eyebrow { font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--red); margin-bottom: 14px; }
.section.dark .section-eyebrow { color: var(--coral); }
.section-title { font-size: clamp(36px,5vw,56px); }
.section.dark .section-title { color: var(--white); }
.divider-line { width: 60px; height: 2px; margin: 20px auto 0; background: linear-gradient(to right, var(--red) 50%, var(--blue) 50%); }
.section.dark .divider-line { background: linear-gradient(to right, var(--coral) 50%, var(--blue) 50%); }

/* ── SERVICES GRID ─────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 2px; background: var(--border); }
.svc-card { background: var(--white); cursor: pointer; transition: background .2s; position: relative; overflow: hidden; text-decoration: none; display: block; color: var(--dark); }
.svc-card::after { content:''; position: absolute; bottom:0; left:0; width:0; height:2px; background:var(--red); transition: width .3s; z-index: 2; }
.svc-card:hover::after { width: 100%; }
.svc-card:hover { background: var(--cream); }
.svc-image { position: relative; height: 150px; overflow: hidden; }
.svc-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.svc-card:hover .svc-image img { transform: scale(1.08); }
.svc-icon-badge {
  position: absolute; left: 24px; bottom: -22px; width: 44px; height: 44px;
  background: var(--white); border-radius: 50%; display: flex; align-items: center;
  justify-content: center; box-shadow: 0 3px 10px rgba(0,0,0,.18); z-index: 2;
}
.svc-icon { width: 22px; height: 22px; stroke: var(--red); fill: none; stroke-width: 1.5; margin: 0; }
.svc-body { padding: 36px 30px 30px; }
.svc-name { font-family: var(--ff-display); font-size: 22px; margin-bottom: 10px; }
.svc-desc { font-size: 12px; color: var(--mid); margin-bottom: 18px; line-height: 1.6; }
.svc-price { font-size: 11px; letter-spacing: 1px; color: var(--blue); font-weight: 600; }
.svc-note  { text-align: center; margin-top: 30px; font-size: 12px; color: var(--mid); font-style: italic; }

/* ── TEAM ──────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 30px; }
.team-card { text-align: center; }
.team-photo {
  width: 140px; height: 140px; border-radius: 50%; margin: 0 auto 18px;
  overflow: hidden; border: 3px solid var(--white); box-shadow: 0 4px 18px rgba(0,0,0,.12);
  position: relative;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.team-card:hover .team-photo img { transform: scale(1.08); }
.team-name { font-family: var(--ff-display); font-size: 20px; margin-bottom: 4px; }
.team-role { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--mid); }

/* ── PRICING TABS ──────────────────────────────────── */
.price-tabs { display: flex; border-bottom: 2px solid var(--border); margin-bottom: 40px; overflow-x: auto; gap: 0; }
.price-tab { padding: 12px 28px; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; font-weight: 500; cursor: pointer; border: none; background: none; color: var(--mid); white-space: nowrap; border-bottom: 2px solid transparent; margin-bottom: -2px; transition: all .2s; font-family: var(--ff-body); }
.price-tab.active { color: var(--dark); border-bottom-color: var(--red); }
.price-tab:hover  { color: var(--dark); }
.price-panel { display: none; }
.price-panel.active { display: block; }
.price-row { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--border); }
.price-row:last-child { border-bottom: none; }
.price-name { font-family: var(--ff-display); font-size: 18px; }
.price-sub  { font-size: 11px; color: var(--mid); }
.price-amt  { font-family: var(--ff-display); font-size: 22px; color: var(--blue); white-space: nowrap; }
.price-note { font-size: 11px; color: var(--mid); text-align: center; margin-top: 24px; font-style: italic; }

/* ── BOOKING FORM ─────────────────────────────────── */
.booking-wrap { max-width: 700px; margin: 0 auto; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; font-weight: 500; }
.section.dark label { color: rgba(255,255,255,.5); }
input, select, textarea {
  padding: 14px 16px; font-family: var(--ff-body); font-size: 13px;
  outline: none; border-radius: 0; width: 100%; transition: border-color .2s;
}
.section.dark input,
.section.dark select,
.section.dark textarea {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.15);
  color: var(--white);
}
.section.dark select option { background: #1a1a1a; }
.section.dark input:focus,
.section.dark select:focus,
.section.dark textarea:focus { border-color: var(--coral); }
.form-input { background: var(--white); border: 1px solid var(--border); color: var(--dark); }
.form-input:focus { border-color: var(--red); }
textarea { resize: vertical; min-height: 90px; }
.booking-success { display: none; text-align: center; padding: 48px; border: 1px solid var(--coral); margin-top: 20px; }
.booking-success svg { width: 52px; height: 52px; stroke: var(--coral); fill: none; stroke-width: 1.5; margin: 0 auto 16px; display: block; }
.booking-success h3 { font-family: var(--ff-display); font-size: 30px; margin-bottom: 8px; }
.booking-success p  { font-size: 13px; color: rgba(255,255,255,.6); }
.form-error { color: #e74c3c; font-size: 12px; margin-top: 4px; }
.alert { padding: 14px 18px; margin-bottom: 20px; font-size: 13px; border-left: 3px solid; }
.alert-success { background: #eafaf1; color: #1e8449; border-color: #1e8449; }
.alert-error   { background: #fdedec; color: #c0392b; border-color: #c0392b; }

/* ── CONTACT ──────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-detail { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.contact-detail svg { width: 20px; height: 20px; stroke: var(--red); fill: none; stroke-width: 1.5; flex-shrink: 0; margin-top: 2px; }
.contact-detail strong { display: block; font-size: 10px; letter-spacing: 1px; text-transform: uppercase; color: var(--mid); margin-bottom: 2px; font-weight: 500; }
.contact-detail span  { font-size: 13px; }
.hours-table { width: 100%; border-collapse: collapse; margin-top: 30px; }
.hours-table tr { border-bottom: 1px solid var(--border); }
.hours-table td { padding: 10px 0; font-size: 13px; }
.hours-table td:last-child { text-align: right; color: var(--mid); }
.map-placeholder { background: var(--cream); display: flex; align-items: center; justify-content: center; min-height: 300px; border: 1px solid var(--border); padding: 30px; text-align: center; flex-direction: column; gap: 12px; }
.map-placeholder svg { width: 48px; height: 48px; stroke: var(--mid); fill: none; stroke-width: 1; }

/* ── WORK SHOWCASE ────────────────────────────────── */
.work-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 22px; }
.work-tile { position: relative; overflow: hidden; aspect-ratio: 1/1; cursor: pointer; }
.work-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.work-tile:hover img { transform: scale(1.1); }
.work-overlay {
  position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,26,26,.85) 0%, rgba(26,26,26,.05) 55%);
  display: flex; align-items: flex-end; padding: 22px; opacity: .92; transition: opacity .3s;
}
.work-tile:hover .work-overlay { opacity: 1; }
.work-info { color: var(--white); }
.work-cat { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--coral); margin-bottom: 4px; }
.work-title { font-family: var(--ff-display); font-size: 22px; }

/* ── FEEDBACK / TESTIMONIALS ─────────────────────── */
.feedback-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 26px; }
.feedback-card { background: var(--white); padding: 32px 30px; border-top: 3px solid var(--coral); box-shadow: 0 2px 14px rgba(0,0,0,.05); }
.feedback-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.feedback-stars svg { width: 15px; height: 15px; fill: var(--coral); }
.feedback-quote { font-family: var(--ff-display); font-size: 17px; font-style: italic; line-height: 1.5; margin-bottom: 22px; color: var(--dark); }
.feedback-person { display: flex; align-items: center; gap: 12px; }
.feedback-avatar {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: var(--cream); display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display); font-size: 16px; color: var(--dark);
}
.feedback-name { font-size: 13px; font-weight: 600; }
.feedback-service { font-size: 11px; color: var(--mid); }


footer { background: var(--dark); color: rgba(255,255,255,.6); padding: 50px 80px 30px; }
.footer-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); margin-bottom: 30px; }
.footer-brand .brand { font-family: var(--ff-display); font-size: 28px; font-weight: 600; letter-spacing: 6px; color: var(--white); text-decoration: none; display: block; margin-bottom: 10px; }
.footer-brand p { font-size: 12px; max-width: 240px; }
.footer-col h4 { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--white); margin-bottom: 16px; font-family: var(--ff-body); font-weight: 500; }
.footer-col a, .footer-col span { display: block; color: rgba(255,255,255,.5); font-size: 12px; margin-bottom: 10px; text-decoration: none; transition: color .2s; }
.footer-col a:hover { color: var(--coral); }
.footer-bottom { display: flex; justify-content: space-between; font-size: 11px; flex-wrap: wrap; gap: 10px; }

/* ── TOAST ────────────────────────────────────────── */
.toast { position: fixed; bottom: 30px; right: 30px; background: var(--dark); color: var(--white); padding: 16px 24px; font-size: 12px; z-index: 3000; transform: translateY(80px); opacity: 0; transition: all .3s; max-width: 320px; border-left: 3px solid var(--coral); }
.toast.show { transform: translateY(0); opacity: 1; }

/* ── ADMIN PANEL ──────────────────────────────────── */
.admin-body { background: #f5f5f5; font-family: var(--ff-body); }
.admin-layout { display: flex; min-height: 100vh; }
.sidebar { width: 240px; background: var(--dark); color: rgba(255,255,255,.7); flex-shrink: 0; display: flex; flex-direction: column; }
.sidebar-brand { padding: 28px 24px; border-bottom: 1px solid rgba(255,255,255,.08); }
.sidebar-brand .brand { font-family: var(--ff-display); font-size: 22px; font-weight: 600; letter-spacing: 5px; color: var(--white); }
.sidebar-brand .brand span { color: var(--coral); }
.sidebar-brand small { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.4); display: block; margin-top: 4px; }
.sidebar nav { flex: 1; padding: 20px 0; }
.sidebar nav a { display: flex; align-items: center; gap: 12px; padding: 12px 24px; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,.55); text-decoration: none; transition: all .2s; }
.sidebar nav a svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.5; flex-shrink: 0; }
.sidebar nav a:hover, .sidebar nav a.active { color: var(--white); background: rgba(255,255,255,.06); border-left: 2px solid var(--coral); }
.sidebar-footer { padding: 20px 24px; border-top: 1px solid rgba(255,255,255,.08); font-size: 11px; }
.sidebar-footer strong { display: block; color: var(--white); margin-bottom: 2px; }
.sidebar-footer a { color: rgba(255,255,255,.4); text-decoration: none; font-size: 11px; }
.sidebar-footer a:hover { color: var(--coral); }
.admin-main { flex: 1; overflow-x: hidden; }
.admin-topbar { background: var(--white); border-bottom: 1px solid var(--border); padding: 0 36px; height: 65px; display: flex; align-items: center; justify-content: space-between; }
.admin-topbar h1 { font-family: var(--ff-display); font-size: 26px; font-weight: 300; }
.admin-content { padding: 36px; }
.dash-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px,1fr)); gap: 16px; margin-bottom: 36px; }
.dash-stat { background: var(--white); border-left: 3px solid var(--red); padding: 20px 18px; box-shadow: 0 1px 4px rgba(0,0,0,.06); }
.dash-stat.blue { border-color: var(--blue); }
.dash-stat.green { border-color: #27ae60; }
.dash-stat.coral { border-color: var(--coral); }
.dash-stat-num { font-family: var(--ff-display); font-size: 36px; }
.dash-stat-lbl { font-size: 10px; letter-spacing: 1px; text-transform: uppercase; color: var(--mid); margin-top: 4px; }
.card { background: var(--white); box-shadow: 0 1px 4px rgba(0,0,0,.06); margin-bottom: 24px; }
.card-head { padding: 20px 24px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.card-head h3 { font-family: var(--ff-display); font-size: 22px; }
.card-body { padding: 24px; }
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin-bottom: 20px; }
.filter-btn { padding: 7px 16px; font-size: 10px; letter-spacing: 1px; text-transform: uppercase; border: 1px solid var(--border); background: none; cursor: pointer; font-family: var(--ff-body); transition: all .2s; font-weight: 500; }
.filter-btn.active, .filter-btn:hover { background: var(--dark); color: var(--white); border-color: var(--dark); }
.search-input { padding: 8px 14px; border: 1px solid var(--border); font-family: var(--ff-body); font-size: 12px; outline: none; margin-left: auto; width: 220px; }
.search-input:focus { border-color: var(--red); }
table { width: 100%; border-collapse: collapse; }
thead th { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--mid); font-weight: 500; padding: 12px 14px; text-align: left; background: #f9f9f9; border-bottom: 1px solid var(--border); }
tbody tr { border-bottom: 1px solid var(--border); transition: background .15s; }
tbody tr:hover { background: #fafafa; }
tbody td { padding: 13px 14px; font-size: 13px; vertical-align: middle; }
.badge { display: inline-block; padding: 3px 10px; font-size: 10px; letter-spacing: 1px; text-transform: uppercase; font-weight: 500; }
.badge-pending   { background: #fef6e4; color: #7a5c00; }
.badge-confirmed { background: #e8f4e8; color: #2d6a2d; }
.badge-completed { background: #e4ecf8; color: #1a3a6b; }
.badge-cancelled { background: #fce8e8; color: #7a2020; }
.badge-no-show   { background: #f0e4f8; color: #5a1a7a; }
.action-btns { display: flex; gap: 5px; flex-wrap: wrap; }
.act { padding: 5px 10px; font-size: 10px; letter-spacing: 1px; text-transform: uppercase; border: 1px solid var(--border); background: none; cursor: pointer; font-family: var(--ff-body); font-weight: 500; transition: all .15s; text-decoration: none; display: inline-block; }
.act:hover { background: var(--dark); color: white; border-color: var(--dark); }
.act-green { border-color: #27ae60; color: #27ae60; }
.act-green:hover { background: #27ae60; color: white; }
.act-blue { border-color: var(--blue); color: var(--blue); }
.act-blue:hover { background: var(--blue); color: white; }
.act-red { border-color: var(--red); color: var(--red); }
.act-red:hover { background: var(--red); color: white; }
.table-wrap { overflow-x: auto; }
.empty-state { text-align: center; padding: 60px; color: var(--mid); }
.empty-state svg { width: 40px; height: 40px; stroke: var(--mid); fill: none; stroke-width: 1; margin: 0 auto 12px; display: block; }

/* Admin login */
.login-page { min-height: 100vh; background: var(--cream); display: flex; align-items: center; justify-content: center; padding: 20px; }
.login-box { background: var(--white); padding: 48px 44px; max-width: 400px; width: 100%; }
.login-box .brand { font-family: var(--ff-display); font-size: 32px; font-weight: 600; letter-spacing: 7px; color: var(--dark); margin-bottom: 4px; }
.login-box .brand span { color: var(--coral); }
.login-box h2 { font-family: var(--ff-display); font-size: 22px; font-weight: 300; margin-bottom: 6px; margin-top: 24px; }
.login-box p  { font-size: 12px; color: var(--mid); margin-bottom: 28px; }
.login-field  { margin-bottom: 16px; }
.login-field label { display: block; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--mid); margin-bottom: 6px; font-weight: 500; }
.login-field input { width: 100%; border: 1px solid var(--border); padding: 13px 16px; font-family: var(--ff-body); font-size: 13px; outline: none; background: var(--white); border-radius: 0; }
.login-field input:focus { border-color: var(--red); }
.login-err { font-size: 12px; color: var(--red); margin-bottom: 16px; }

/* Modal */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 2000; align-items: center; justify-content: center; padding: 20px; }
.modal-overlay.open { display: flex; }
.modal-box { background: var(--white); max-width: 520px; width: 100%; padding: 40px; position: relative; max-height: 90vh; overflow-y: auto; }
.modal-close { position: absolute; top: 14px; right: 18px; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--mid); line-height: 1; }
.modal-close:hover { color: var(--dark); }
.modal-box h3 { font-family: var(--ff-display); font-size: 26px; font-weight: 300; margin-bottom: 4px; }
.modal-box .sub { font-size: 12px; color: var(--mid); margin-bottom: 24px; }
.modal-field { margin-bottom: 14px; }
.modal-field label { display: block; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--mid); margin-bottom: 6px; font-weight: 500; }
.modal-field input,
.modal-field select,
.modal-field textarea { width: 100%; border: 1px solid var(--border); padding: 12px 14px; font-family: var(--ff-body); font-size: 13px; outline: none; background: var(--white); border-radius: 0; }
.modal-field input:focus, .modal-field select:focus { border-color: var(--red); }
.modal-field textarea { resize: vertical; min-height: 70px; }
.modal-actions { display: flex; gap: 12px; margin-top: 24px; }

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 960px) {
  #mainNav { padding: 0 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { grid-template-columns: 1fr; padding: 40px 24px; min-height: auto; }
  .hero-bg { transform: scale(1.15) !important; }
  .hero-visual { display: none; }
  .section { padding: 60px 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  footer { padding: 40px 24px 20px; }
  .footer-top { flex-direction: column; }
  .hero-actions { flex-direction: column; }
  .sidebar { display: none; }
  .admin-content { padding: 20px; }
  .search-input { width: 100%; margin-left: 0; }
}
