/* ── Charcuterie Blocks ─────────────────────────────────────── */
@font-face {
  font-family: 'Charcuterie';
  src: url('/fonts/CHARCUTERIE-BLOCK-W05-REGULAR.TTF') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ── Google Fonts: Barlow ───────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,300;0,400;0,500;1,300;1,400&display=swap');

/* ── Variables ──────────────────────────────────────────────── */
:root {
  --navy:         #0f1f35;
  --navy2:        #162840;
  --navy3:        #1c3050;
  --green:        #4fc98a;
  --teal:         #38bfbf;
  --violet:       #8b7cf8;
  --amber:        #c8a045;
  --frost:        #ddeef5;
  --muted:        #8ab0c0;
  --dim:          #4a7a90;
  --white:        #FFFFFF;
  --rule:         rgba(138, 176, 192, 0.5);

  --font-display: 'Charcuterie', Georgia, serif;
  --font-body:    'Barlow', 'Segoe UI', Arial, sans-serif;
}

/* ── Reset & base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--frost);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {  max-width: 100%; height: auto; }
a   { color: inherit; }

/* ── Layout ─────────────────────────────────────────────────── */
.wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── Nav ────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(15, 31, 53, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(56, 191, 191, 0.12);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.nav-wordmark {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 4px;
  color: white;
  text-decoration: none;
}

.nav-wordmark img {
  height: 40px;
  width: auto;
  
}
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.7);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--green); }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-bg-placeholder {
  width: 100%;
  height: 100%;
  background: var(--navy2);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 18, 35, 0.35) 0%,
    rgba(10, 18, 35, 0.55) 50%,
    rgba(10, 18, 35, 0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 0 24px;
  max-width: 800px;
}

.hero-logo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.hero-logo .logo-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8, 16, 35, 0.88) 0%, rgba(8, 16, 35, 0.5) 35%, rgba(8, 16, 35, 0.15) 60%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

.hero-logo img {
  position: relative;
  z-index: 1;
  width: 350px;
  height: 300px;
  object-fit: contain;
  filter: drop-shadow(0 4px 32px rgba(79, 201, 138, 0.25));
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.0;
  letter-spacing: 3px;
  color: white;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.hero-title em {
  color: var(--green);
  font-style: normal;
  
}

.hero-sub {
  font-size: 15px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.75);
  max-width: 500px;
  line-height: 1.85;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}

.hero-socials {
  display: flex;
  gap: 16px;
  margin-top: 4px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.social-link:hover { color: var(--green); }

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  animation: bounce 2s infinite;
  transition: color 0.2s;
}

.hero-scroll:hover { color: var(--green); }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── Tags ───────────────────────────────────────────────────── */
.tag {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.7);
  border-radius: 1px;
}

/* ── Photo strip ────────────────────────────────────────────── */
.photo-strip {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3px;
  height: 240px;
}

.strip-cell {
  overflow: hidden;
  position: relative;
  background: var(--navy3);
}

.strip-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  transition: opacity 0.3s;
}

.strip-cell:hover img { opacity: 1; }

.strip-label {
  position: absolute;
  bottom: 10px;
  left: 12px;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  pointer-events: none;
}

/* ── Sections ───────────────────────────────────────────────── */
.section {
  scroll-margin-top: 80px;
  padding: 72px 0;
  border-top: 1px solid var(--rule);
}

.eyebrow {
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}

.heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: 2px;
  color: var(--frost);
  margin-bottom: 32px;
}

.cta {
  display: inline-block;
  padding: 11px 28px;
  border: 1px solid var(--green);
  color: var(--green);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
}

.cta:hover {
  background: var(--green);
  color: var(--navy);
}

.section-cta { margin-top: 36px; }

/* ── About ──────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 52px;
  align-items: start;
}

.about-photo {
  margin-top: 52px;
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--navy3);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
}

.about-cap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(10, 18, 35, 0.92));
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
}

.about-copy .eyebrow { margin-bottom: 6px; }
.about-copy .heading { margin-bottom: 20px; }

.about-copy p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 16px;
}

.about-copy strong {
  color: var(--frost);
  font-weight: 500;
}

.stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}

.stat {
  padding: 18px 20px;
  border-left: 3px solid var(--green);
  background: rgba(79, 201, 138, 0.06);
}

.stat--teal {
  border-left-color: var(--teal);
  background: rgba(56, 191, 191, 0.06);
}

.stat-n {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--green);
  line-height: 1;
}

.stat--teal .stat-n { color: var(--teal); }

.stat-l {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

/* ── Work grid ──────────────────────────────────────────────── */
.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.work-card {
  position: relative;
  overflow: hidden;
  background: var(--navy3);
  aspect-ratio: 4 / 3;
  text-decoration: none;
  
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transition: opacity 0.3s, transform 0.4s;
}

.work-card:hover img {
  opacity: 0.8;
  transform: scale(1.03);
}

.work-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 22px;
  background: linear-gradient(transparent 25%, rgba(10, 18, 35, 0.9));
}

.work-accent {
  width: 28px;
  height: 2px;
  background: var(--accent, var(--green));
  margin-bottom: 10px;
}

.work-title {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 2px;
  color: white;
  margin-bottom: 6px;
}

.work-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

.work-label {
  margin-top: 10px;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent, var(--teal));
}

/* ── Blog ───────────────────────────────────────────────────── */
.blog-list { display: flex; flex-direction: column; }

.blog-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 28px;
  padding: 24px 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
  text-decoration: none;
  transition: opacity 0.2s;
}

.blog-item:hover { opacity: 0.75; }

.blog-date { text-align: right; padding-top: 2px; }

.blog-date .day {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--dim);
  line-height: 1;
  
}

.blog-date .mon {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dim);
}

.blog-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--frost);
  margin-bottom: 6px;
}

.blog-excerpt {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.75;
}

.blog-meta {
  margin-top: 8px;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dim);
}

/* ── Contact ────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 24px;
}

.contact-links { display: flex; flex-direction: column; gap: 10px; }

.contact-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border: 1px solid rgba(56, 191, 191, 0.15);
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
  transition: all 0.2s;
}

.contact-link:hover {
  border-color: var(--green);
  color: var(--green);
}

.cl-label {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
  
}

.contact-form { display: flex; flex-direction: column; gap: 10px; }

.ff {
  background: rgba(22, 40, 64, 0.8);
  border: 1px solid rgba(56, 191, 191, 0.15);
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  outline: none;
  width: 100%;
  transition: border-color 0.2s;
  resize: vertical;
}

.ff:focus { border-color: rgba(56, 191, 191, 0.4); }
.ff::placeholder { color: var(--muted); }

.submit {
  padding: 12px 24px;
  background: transparent;
  border: 1px solid var(--teal);
  color: var(--teal);
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  align-self: flex-start;
}

.submit:hover {
  background: var(--teal);
  color: var(--navy);
}

.form-heading {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 2px;
  color: var(--frost);
  margin-bottom: 12px;
}

.form-thanks {
  font-size: 15px;
  color: var(--green);
  line-height: 1.85;
}

.form-error {
  font-size: 15px;
  color: #e05a5a;
  line-height: 1.85;
}

/* ── Prose ───────────────────────────────────────────────────── */
.page-wrap { padding-top: 80px; padding-bottom: 72px; }
.page-header { margin-bottom: 40px; }

.page-subtitle {
  font-size: 16px;
  font-style: italic;
  color: var(--muted);
  margin-top: 8px;
}

.page-hero-img {
  margin-bottom: 40px;
  overflow: hidden;
  max-height: 420px;
}

.page-hero-img img {
  width: 100%;
  object-fit: cover;
  opacity: 0.88;
}

.prose { max-width: 680px; }
.prose p  { font-size: 15px; color: var(--muted); line-height: 1.9; margin-bottom: 20px; }
.prose h2 { font-family: var(--font-display); font-size: 28px; letter-spacing: 2px; color: var(--frost); margin: 40px 0 16px; }
.prose h3 { font-family: var(--font-display); font-size: 20px; letter-spacing: 1px; color: var(--frost); margin: 28px 0 12px; }
.prose strong { color: var(--frost); font-weight: 500; }
.prose a  { color: var(--teal); text-decoration: none; border-bottom: 1px solid rgba(56,191,191,0.3); }
.prose a:hover { color: var(--green); border-color: var(--green); }
.prose ul, .prose ol { padding-left: 24px; margin-bottom: 20px; color: var(--muted); }
.prose li { margin-bottom: 8px; }
.prose blockquote { border-left: 3px solid var(--green); padding: 12px 20px; margin: 24px 0; font-style: italic; color: var(--muted); }

/* ── Placeholders ───────────────────────────────────────────── */
.ph-tall, .ph-card {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(56, 191, 191, 0.12);
}

.ph-tall span, .ph-card span {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dim);
}

.no-content { font-size: 14px; color: var(--dim); padding: 32px 0; }

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
  padding: 28px 0;
  border-top: 1px solid var(--rule);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 3px;
  color: var(--dim);
}

.footer-copy {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--dim);
  text-transform: uppercase;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 720px) {
  .about-grid    { grid-template-columns: 1fr; }
  .work-grid     { grid-template-columns: 1fr; }
  .contact-grid  { grid-template-columns: 1fr; }
  .photo-strip   { grid-template-columns: 1fr 1fr; height: 180px; }
  .photo-strip .strip-cell:last-child { display: none; }
  .nav-links     { gap: 16px; }
  .hero-logo img { width: 140px; height: 140px; }
}

@media (max-width: 480px) {
  .wrap          { padding: 0 16px; }
  .photo-strip   { display: none; }
  .blog-item     { grid-template-columns: 56px 1fr; }
  .hero-title    { font-size: clamp(36px, 10vw, 56px); }
}
