:root {
  --navy: #0f2740;
  --navy-2: #17324f;
  --ember: #e07a3f;
  --ember-dark: #c96530;
  --cream: #faf6f0;
  --paper: #ffffff;
  --ink: #1c2530;
  --muted: #5b6675;
  --line: #e7e0d6;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 10px 30px rgba(15, 39, 64, 0.08);
  --shadow-lg: 0 20px 50px rgba(15, 39, 64, 0.14);
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'Fraunces', Georgia, serif; line-height: 1.1; margin: 0 0 .5em; letter-spacing: -0.01em; }
p { margin: 0 0 1rem; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .74rem;
  font-weight: 600;
  color: var(--ember-dark);
  margin: 0 0 .8rem;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem; padding: .85rem 1.5rem; border-radius: 999px;
  font-weight: 600; font-size: .96rem; cursor: pointer;
  border: 1.5px solid transparent; transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--ember); color: #fff; box-shadow: 0 8px 20px rgba(224,122,63,.3); }
.btn-primary:hover { background: var(--ember-dark); }
.btn-ghost { border-color: rgba(255,255,255,.4); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,.1); }
.btn-block { width: 100%; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(15,39,64,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: flex; align-items: center; gap: .6rem; color: #fff; font-weight: 600; }
.brand-mark {
  display: inline-grid; place-items: center;
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--ember); color: #fff;
  font-family: 'Fraunces', serif; font-weight: 700; font-size: .95rem; letter-spacing: .02em;
}

/* Logo mark */
.brand-logo { width: 40px; height: 40px; display: block; border-radius: 11px; }

.brand-text { font-family: 'Fraunces', serif; font-size: 1.1rem; }
.nav-links { display: flex; align-items: center; gap: 1.6rem; }
.nav-links a { color: rgba(255,255,255,.85); font-size: .95rem; font-weight: 500; }
.nav-links a:hover { color: #fff; }
.nav-links .btn-ghost { color: #fff; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; transition: .2s; }

/* Hero */
.hero {
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(224,122,63,.25), transparent 60%),
    linear-gradient(160deg, var(--navy), var(--navy-2));
  color: #fff; padding: 96px 0 104px; position: relative; overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 22px 22px; opacity: .5; pointer-events: none;
}
.hero-inner { position: relative; max-width: 820px; }
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; margin-bottom: .5rem; }
.hero .lead { font-size: 1.15rem; color: rgba(255,255,255,.85); max-width: 640px; }
.hero-cta { display: flex; gap: .9rem; flex-wrap: wrap; margin: 1.8rem 0 2rem; }
.hero-badges { list-style: none; display: flex; flex-wrap: wrap; gap: .6rem; padding: 0; margin: 0; }
.hero-badges li {
  font-size: .84rem; font-weight: 500; color: #fff;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16);
  padding: .4rem .9rem; border-radius: 999px;
}

/* Sections */
.section { padding: 84px 0; }
.section-alt { background: var(--paper); }
.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); font-weight: 600; }
.section-sub { color: var(--muted); font-size: 1.06rem; }

/* Cards */
.cards { display: grid; gap: 24px; }
.cards.two { grid-template-columns: repeat(2, 1fr); }
.cards.three { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow);
}
.card.capability { position: relative; }
.card-icon {
  display: inline-grid; place-items: center; width: 56px; height: 56px;
  border-radius: 14px; background: rgba(224,122,63,.12); color: var(--ember-dark);
  margin-bottom: 18px;
}
.card h3 { font-size: 1.4rem; font-weight: 600; }
.tick-list { list-style: none; padding: 0; margin: 1rem 0 0; }
.tick-list li { position: relative; padding-left: 1.6rem; margin-bottom: .55rem; color: var(--ink); }
.tick-list li::before {
  content: ""; position: absolute; left: 0; top: .5rem;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--ember); box-shadow: 0 0 0 4px rgba(224,122,63,.15);
}

.combo {
  margin-top: 28px; background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #fff; border-radius: var(--radius-lg); padding: 30px 34px;
}
.combo p { margin: 0; font-size: 1.08rem; color: rgba(255,255,255,.9); }
.combo strong { color: #fff; }

/* Mini cards */
.mini-card {
  background: var(--cream); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px;
}
.section-alt .mini-card { background: var(--cream); }
.mini-card h4 { font-size: 1.18rem; font-weight: 600; margin-bottom: .4rem; }
.mini-card p { color: var(--muted); margin: 0; font-size: .98rem; }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.tile, .gallery img {
  aspect-ratio: 4 / 3; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); object-fit: cover; width: 100%; height: auto;
}
.tile {
  margin: 0; display: grid; place-items: end start; padding: 18px;
  background:
    linear-gradient(180deg, rgba(15,39,64,0) 40%, rgba(15,39,64,.72)),
    repeating-linear-gradient(45deg, #ece4d8, #ece4d8 12px, #e6dccd 12px, #e6dccd 24px);
  color: #fff;
}
.tile span { font-weight: 600; font-size: .95rem; text-shadow: 0 1px 3px rgba(0,0,0,.4); }

/* Real client-work tiles (image + caption overlay) */
.work-tile { position: relative; margin: 0; border-radius: var(--radius); overflow: hidden; }
.work-tile img { display: block; margin: 0; }
.work-tile figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 28px 18px 16px; color: #fff; font-weight: 600; font-size: .95rem;
  text-shadow: 0 1px 3px rgba(0,0,0,.5);
  background: linear-gradient(180deg, rgba(15,39,64,0), rgba(15,39,64,.78));
}
.gallery-note { margin-top: 22px; color: var(--muted); text-align: center; }
.gallery-note a { color: var(--ember-dark); font-weight: 600; }

/* More possibilities chip list */
.possibilities { margin-top: 40px; text-align: center; }
.possibilities h3 { font-size: 1.15rem; font-weight: 600; margin: 0 0 6px; }
.possibilities p { color: var(--muted); margin: 0 0 20px; }
.chip-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem;
}
.chip-list li {
  font-size: .9rem; font-weight: 500; color: var(--ink);
  background: var(--cream); border: 1px solid var(--line);
  padding: .5rem 1rem; border-radius: 999px;
}

/* About */
.about-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px; align-items: center; }
.about-photo { margin: 24px 0 0; }
.about-photo img {
  width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover;
  border-radius: var(--radius); border: 1px solid var(--line); display: block;
}
.about-grid h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); font-weight: 600; }
.about-grid p { color: var(--muted); }
.stats { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stats li {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px;
}
.stats strong { display: block; font-family: 'Fraunces', serif; font-size: 1.35rem; color: var(--navy); }
.stats span { color: var(--muted); font-size: .9rem; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.contact-intro h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); font-weight: 600; }
.contact-intro p { color: var(--muted); }
.contact-list { list-style: none; padding: 0; margin: 1.6rem 0 0; }
.contact-list li { display: flex; gap: 1rem; padding: .6rem 0; border-top: 1px solid var(--line); }
.contact-list li span { min-width: 60px; color: var(--muted); font-size: .9rem; text-transform: uppercase; letter-spacing: .06em; }
.contact-list a { color: var(--ember-dark); font-weight: 600; }

.contact-form {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow);
}
.field { margin-bottom: 18px; }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: .4rem; }
input, select, textarea {
  width: 100%; padding: .8rem .9rem; border: 1.5px solid var(--line);
  border-radius: 10px; font: inherit; color: var(--ink); background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--ember);
  box-shadow: 0 0 0 3px rgba(224,122,63,.15);
}
textarea { resize: vertical; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { margin: 1rem 0 0; font-weight: 500; font-size: .95rem; min-height: 1.2em; }
.form-status.ok { color: #237a4b; }
.form-status.err { color: #c0392b; }

/* Footer */
.site-footer { background: var(--navy); color: rgba(255,255,255,.8); padding: 46px 0; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: .5rem; text-align: center; }
.footer-inner .brand { color: #fff; }
.footer-tag { color: rgba(255,255,255,.7); margin: .4rem 0 0; }
.footer-copy { color: rgba(255,255,255,.5); font-size: .86rem; margin: 0; }

/* Responsive */
@media (max-width: 900px) {
  .cards.two, .cards.three { grid-template-columns: 1fr 1fr; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: flex-start;
    position: absolute; top: 70px; left: 0; right: 0;
    background: var(--navy); padding: 20px 24px; gap: 1rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .cards.two, .cards.three, .gallery, .stats, .row { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .hero { padding: 70px 0 80px; }
}

/* Preferred contact method chips */
.pref-options { display: flex; flex-wrap: wrap; gap: 10px; }
.pref-chip {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .55rem .9rem; border: 1.5px solid var(--line);
  border-radius: 999px; cursor: pointer; font-weight: 500; font-size: .92rem;
  background: #fff; transition: border-color .15s ease, background .15s ease, color .15s ease;
  margin: 0;
}
.pref-chip input { width: auto; margin: 0; accent-color: var(--ember); }
.pref-chip:hover { border-color: var(--ember); }
.pref-chip:has(input:checked) {
  border-color: var(--ember); background: rgba(224,122,63,.1); color: var(--ember-dark);
}
