:root {
  --night: #0f1b2d;
  --night-deep: #0b1626;
  --text: #0f1b2d;
  --muted: #4e5d78;
  --line: #e1e6ee;
  --surface: #f7f9fc;
  --blue: #0573c3;
  --cyan: #1fd3dc;
  --orange: #e57e24;
  --orange-deep: #d8541c;
  --white: #fff;
  --radius: 16px;
  --shadow: 0 12px 28px rgb(15 27 45 / 12%), 0 4px 8px rgb(15 27 45 / 6%);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--surface);
  font: 16px/1.65 Inter, Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }
a:focus-visible { outline: 3px solid var(--cyan); outline-offset: 4px; }
h1, h2, h3 { margin: 0; line-height: 1.16; letter-spacing: -.025em; }
h1 { font-size: clamp(2.6rem, 6vw, 4.2rem); }
h2 { font-size: clamp(2rem, 4vw, 2.8rem); }
h3 { font-size: 1.35rem; }
p { margin: 0; }

.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 100; padding: .7rem 1rem; color: var(--white); background: var(--night); border-radius: 8px; }
.skip-link:focus { top: 1rem; }
.site-header { position: sticky; top: 0; z-index: 20; display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: .75rem clamp(1rem, 4vw, 2.5rem); background: rgb(255 255 255 / 96%); border-bottom: 1px solid var(--line); box-shadow: 0 1px 3px rgb(15 27 45 / 8%); }
.logo img { width: 141px; height: 60px; object-fit: contain; }
nav { display: flex; align-items: center; gap: clamp(.8rem, 2vw, 1.75rem); font-weight: 700; }
.section { max-width: 1140px; margin: auto; padding: clamp(4rem, 8vw, 5.5rem) clamp(1.25rem, 4vw, 2.5rem); }
.eyebrow { margin-bottom: 1rem; color: #65f5f0; font-size: .78rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow.blue { color: var(--blue); }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: .7rem 1.5rem; color: var(--white); background: linear-gradient(105deg, #f0a93b, var(--orange) 55%, var(--orange-deep)); border-radius: 12px; box-shadow: 0 8px 22px rgb(216 84 28 / 35%); font-weight: 800; }
.button:hover { text-decoration: none; filter: brightness(1.06); }
.button-small { min-height: 40px; padding: .45rem 1rem; }
.short-label { display: none; }
.button-secondary { background: rgb(255 255 255 / 8%); border: 1px solid rgb(255 255 255 / 24%); box-shadow: none; }
.actions { display: flex; flex-wrap: wrap; gap: .9rem; }
.centered { justify-content: center; }
.hero-inner > *, .intro > *, .gallery > *, .cards > *, .contact-grid > * { min-width: 0; }

.hero, .contact { position: relative; overflow: hidden; color: var(--white); background: linear-gradient(160deg, var(--night), var(--night-deep) 60%, #102338); }
.hero::before, .contact::before { position: absolute; content: ""; width: 32rem; height: 32rem; border-radius: 50%; background: linear-gradient(120deg, var(--cyan), #9b53e6); filter: blur(120px); opacity: .45; pointer-events: none; }
.hero::before { right: -8rem; top: -12rem; }
.contact::before { left: -8rem; bottom: -12rem; }
.hero-inner { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; max-width: 1200px; margin: auto; padding: clamp(4rem, 9vw, 5.5rem) clamp(1.25rem, 4vw, 2.5rem); }
.hero h1 { margin-bottom: 1.25rem; }
.hero-copy { max-width: 34rem; margin-bottom: 2rem; color: #c3ccd9; font-size: 1.12rem; }
.hero-image { width: 100%; height: 460px; object-fit: cover; border-radius: var(--radius); box-shadow: 0 24px 56px rgb(0 0 0 / 28%); }

.intro { display: grid; grid-template-columns: 240px 1fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
.portrait-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.portrait-card p { margin-top: .8rem; color: #6b7a93; font-size: .78rem; text-align: center; }
.intro h2 { margin-bottom: 1.5rem; }
.prose { display: grid; gap: 1.1rem; color: var(--muted); font-size: 1.08rem; }
blockquote { margin: .3rem 0; color: var(--text); font-size: 1.25rem; font-weight: 700; line-height: 1.4; }

.portfolio { background: linear-gradient(180deg, var(--white), #f4f8fd); border-block: 1px solid var(--line); }
.section-heading { margin-bottom: 2.75rem; text-align: center; }
.gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; align-items: stretch; }
.gallery figure { margin: 0; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.gallery img { width: 100%; height: 100%; object-fit: cover; }
.gallery-stack { display: grid; gap: 1.5rem; }
.gallery-stack figure { aspect-ratio: 1280 / 567; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.cards article { padding: 1.9rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 1px 3px rgb(15 27 45 / 8%); }
.cards h3 { margin-bottom: .7rem; }
.cards p { color: var(--muted); }

.contact-inner { position: relative; max-width: 900px; margin: auto; padding: clamp(4.5rem, 9vw, 5.5rem) clamp(1.25rem, 4vw, 2.5rem); text-align: center; }
.contact-inner > p { max-width: 35rem; margin: 1.1rem auto 2rem; color: #c3ccd9; font-size: 1.1rem; }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; padding-top: 2.5rem; border-top: 1px solid rgb(255 255 255 / 15%); text-align: left; }
.contact-grid h3 { margin-bottom: .7rem; color: #65f5f0; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; }
.contact-grid p, .contact-grid address { color: #c3ccd9; font-style: normal; }
.contact-grid a { overflow-wrap: anywhere; }
.contact-grid a:hover { color: var(--white); }
footer { padding: 1.5rem; color: #95a2b6; background: #07111f; font-size: .78rem; text-align: center; }

@media (max-width: 800px) {
  .site-header { align-items: center; gap: 1rem; }
  nav { flex: 0 0 auto; justify-content: flex-end; flex-wrap: nowrap; margin-left: auto; font-size: .9rem; }
  nav > a:not(.button) { display: none; }
  .hero-inner, .intro, .gallery { grid-template-columns: 1fr; }
  .section { padding-block: 3.75rem; }
  .hero-inner { gap: 2rem; padding-block: 3.5rem; }
  .hero h1 { font-size: clamp(2.3rem, 10vw, 3.25rem); }
  .hero-copy { font-size: 1.04rem; }
  .hero-image { height: clamp(240px, 62vw, 400px); }
  .portrait-card { max-width: 220px; margin-inline: auto; }
  .gallery, .gallery-stack, .cards { gap: 1rem; }
  .gallery-tall { max-height: 620px; }
  .cards { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
}

@media (max-width: 480px) {
  body { font-size: 15.5px; }
  .site-header { gap: .5rem; padding: .5rem .75rem; }
  .logo img { width: 105px; height: 45px; }
  .button-small { min-height: 38px; padding: .4rem .8rem; font-size: .88rem; white-space: nowrap; }
  .wide-label { display: none; }
  .short-label { display: inline; }
  .section { padding: 3.25rem 1.1rem; }
  .section-heading { margin-bottom: 2rem; }
  .hero-inner { gap: 1.6rem; padding: 3rem 1.1rem; }
  .hero h1 { font-size: clamp(2.1rem, 10vw, 2.7rem); }
  .hero-copy { margin-bottom: 1.5rem; }
  .hero-image { height: clamp(220px, 68vw, 320px); }
  .cards article { padding: 1.45rem; }
  .contact-inner { padding: 3.75rem 1.1rem; }
  .contact-grid { margin-top: 2.5rem; padding-top: 2rem; }
  .actions .button { width: 100%; }
  footer { padding-inline: 1rem; }
}

@media (max-width: 350px) {
  .hero h1 { font-size: 2rem; }
  .section, .hero-inner, .contact-inner { padding-inline: 1rem; }
  .button { padding-inline: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
