/* ==========================================================================
   Holly Creates — brand stylesheet
   Cobalt blue #004AAD · Cream #F4F1EB · Black photo panels · Poppins
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
  --blue: #004AAD;
  --blue-dark: #00337A;
  --cream: #F4F1EB;
  --cream-deep: #EAE5DA;
  --ink: #14151A;
  --ink-soft: #4B4C52;
  --white: #FFFFFF;
  --line: rgba(20, 21, 26, 0.12);
  --line-on-blue: rgba(255, 255, 255, 0.25);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-full: 999px;
  --shadow-card: 0 12px 30px rgba(20, 21, 26, 0.08);
  --maxw: 1220px;
  --font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 40px; }
@media (max-width: 720px) { .wrap { padding: 0 22px; } }

h1, h2, h3 { font-weight: 800; line-height: 1.08; margin: 0; letter-spacing: -0.01em; }
p { line-height: 1.65; color: var(--ink-soft); margin: 0 0 1em; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.eyebrow.on-dark { color: #B9CCF2; }

/* Flower dingbat, used in place of a literal asterisk throughout */
.dingbat { display: inline-block; }
.dingbat svg { display: block; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: var(--blue-dark); box-shadow: 0 10px 24px rgba(0,74,173,.28); }
.btn-white { background: var(--white); color: var(--blue); }
.btn-white:hover { box-shadow: 0 10px 24px rgba(0,0,0,.15); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.btn-link { padding: 0; border-radius: 0; font-weight: 600; color: var(--blue); border-bottom: 1px solid currentColor; }
.btn-link:hover { transform: none; opacity: .75; }
.btn[disabled] { opacity: .55; cursor: not-allowed; transform: none !important; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 92px;
}
.brand {
  font-size: 22px; font-weight: 800; color: var(--blue);
  display: inline-flex; align-items: center; gap: 6px;
}
.brand .dingbat { color: var(--blue); }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a:not(.btn) {
  font-size: 14.5px; font-weight: 600; color: var(--ink);
  padding-bottom: 2px; border-bottom: 1px solid transparent;
}
.nav-links a:not(.btn):hover { border-color: var(--blue); color: var(--blue); }
.nav-toggle { display: none; }
@media (max-width: 860px) {
  .nav-links { position: fixed; inset: 92px 0 0 0; background: var(--cream); flex-direction: column;
    justify-content: flex-start; align-items: flex-start; gap: 0; padding: 10px 22px 30px;
    transform: translateY(-8px); opacity: 0; pointer-events: none; transition: .18s ease; }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a:not(.btn) { width: 100%; padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav-links .btn { margin-top: 16px; }
  .nav-toggle {
    display: inline-flex; width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--line);
    background: var(--white); align-items: center; justify-content: center; cursor: pointer;
  }
}

/* ---------- Hero ---------- */
.hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 640px; background: var(--blue); }
.hero-copy { padding: 90px 60px 90px 40px; display: flex; flex-direction: column; justify-content: center; color: var(--white); max-width: 620px; }
.hero-copy h1 { font-size: clamp(46px, 6vw, 74px); color: var(--white); }
.hero-copy p.lead { color: #DCE6F7; font-size: 18px; max-width: 460px; margin-top: 22px; }
.hero-actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero-media { background: var(--ink); display: flex; align-items: center; justify-content: center; padding: 40px; }
.hero-media img { border-radius: 4px; max-height: 560px; object-fit: cover; }
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-copy { padding: 56px 22px; max-width: none; }
  .hero-media { padding: 22px 22px 56px; }
}

/* ---------- Section shells ---------- */
.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
.section.on-black { background: var(--ink); color: var(--white); }
.section.on-black p { color: #C7C8CE; }
.section.on-cream-deep { background: var(--cream-deep); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-head h2 { font-size: clamp(30px, 4vw, 42px); }
.section-head.left { text-align: left; margin-left: 0; margin-right: 0; max-width: 620px; }

/* ---------- Studio / two-col feature ---------- */
.feature-split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.feature-split img,
.feature-split .ph { border-radius: var(--radius-lg); width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.feature-split .col h3 { font-size: 30px; margin-bottom: 16px; }
.checklist { list-style: none; margin: 22px 0; padding: 0; display: grid; gap: 12px; }
.checklist li { display: flex; gap: 10px; font-size: 15px; color: var(--ink-soft); align-items: flex-start; }
.checklist .dingbat { color: var(--blue); flex: none; margin-top: 3px; }
.signoff { font-weight: 700; color: var(--blue); font-size: 18px; margin-top: 18px; }
@media (max-width: 860px) { .feature-split { grid-template-columns: 1fr; gap: 32px; } }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 48px; }
.step-num {
  width: 40px; height: 40px; border-radius: 50%; background: var(--blue); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; margin-bottom: 18px;
}
.step h3 { font-size: 19px; margin-bottom: 8px; }
@media (max-width: 780px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Gallery grid ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.gallery-grid .ph { aspect-ratio: 1/1; }
.gallery-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 720px) { .gallery-grid, .gallery-grid.cols-4 { grid-template-columns: repeat(2, 1fr); } }
.gallery-filters { display: flex; gap: 10px; flex-wrap: wrap; margin: 0 0 32px; }
.chip {
  border: 1px solid var(--line); background: var(--white); border-radius: var(--radius-full);
  padding: 9px 18px; font-size: 13.5px; font-weight: 600; cursor: pointer; transition: .15s ease;
}
.chip.active, .chip:hover { border-color: var(--blue); color: var(--blue); }
.instagram-link { margin-top: 28px; display: inline-block; }

/* ---------- Placeholder photo blocks (until real images are dropped in) ---------- */
.ph {
  position: relative; overflow: hidden; border-radius: var(--radius-md);
  background: linear-gradient(135deg, #DCE6F7, #F4F1EB 60%, #E5D9EE);
  display: flex; align-items: center; justify-content: center;
}
.ph::after {
  content: attr(data-label);
  font-size: 11px; font-weight: 600; letter-spacing: .04em; color: rgba(20,21,26,.45);
  background: rgba(255,255,255,.7); padding: 5px 10px; border-radius: var(--radius-full);
  position: absolute; bottom: 10px; left: 10px; right: 10px; text-align: center;
}
.ph.dark { background: linear-gradient(135deg, #1c1d22, #303240 60%, #1c1d22); }
.ph.dark::after { background: rgba(255,255,255,.12); color: rgba(255,255,255,.75); }

/* ---------- Offer / service cards ---------- */
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.offer-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); }
.offer-card .ph { border-radius: 0; aspect-ratio: 4/3; }
.offer-card .body { padding: 26px 24px 30px; }
.offer-card h3 { font-size: 21px; margin-bottom: 10px; }
.offer-card p { font-size: 14.5px; margin-bottom: 18px; }
@media (max-width: 900px) { .offer-grid { grid-template-columns: 1fr; } }

/* ---------- Forms ---------- */
.form-card {
  background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-card);
  padding: 40px; max-width: 760px;
}
.form-note { font-size: 14px; margin-bottom: 26px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-grid .full { grid-column: 1 / -1; }
label.field-label {
  display: block; font-size: 11.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 8px;
}
.field { margin-bottom: 20px; }
input[type=text], input[type=email], input[type=tel], input[type=date], input[type=number],
input[type=password], select, textarea {
  width: 100%; font-family: var(--font); font-size: 15px; padding: 13px 15px;
  border: 1px solid var(--line); border-radius: 10px; background: var(--white); color: var(--ink);
}
textarea { resize: vertical; min-height: 110px; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,74,173,.12); }
.form-foot-note { font-size: 13px; color: var(--ink-soft); margin-top: 18px; }
.form-status { font-size: 14px; font-weight: 600; margin-top: 16px; display: none; }
.form-status.show { display: block; }
.form-status.ok { color: #0E7B3E; }
.form-status.err { color: #B4232C; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } .form-card { padding: 26px; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--cream); border-top: 1px solid var(--line); padding: 70px 0 34px; }
.footer-top { display: flex; align-items: center; gap: 18px; margin-bottom: 26px; }
.footer-top .line { flex: 1; height: 1px; background: var(--blue); }
.footer-top .dingbat { color: var(--blue); }
.footer-name { font-size: 30px; font-weight: 800; margin-bottom: 4px; }
.footer-loc { color: var(--ink-soft); margin-bottom: 22px; }
.contact-chips { display: flex; gap: 12px; flex-wrap: wrap; }
.contact-chip {
  background: var(--blue); color: var(--white); border-radius: var(--radius-full);
  padding: 11px 20px; font-size: 14px; font-weight: 600;
}
.contact-chip:hover { background: var(--blue-dark); }
.footer-bottom { margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--line); font-size: 13.5px; color: var(--ink-soft); }

/* ---------- Utility ---------- */
.stack { display: grid; gap: 10px; }
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.badge {
  display: inline-block; font-size: 11.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  background: rgba(0,74,173,.1); color: var(--blue); padding: 6px 12px; border-radius: var(--radius-full);
}
