/* =========================================================
   VOSS — Shared Stylesheet
   Design tokens live in :root — change colors/fonts here and
   they update across every page.
   ========================================================= */
   
/* === MY SHIT === */ 

/*-- START fixed_photo_01 --*/ 

.fixed_photo_01 {
  position: absolute;  /* fixed; sticky; */
  top: 200px;        /* Distance from the top of the screen */
  right: 1500px;     /* Distance from the right of the screen */
  width: 600px;      /* Sets a fixed size for the photo */
  height: auto;      /* Maintains the original aspect ratio */
  z-index: 99999;     /* Keeps the photo on top of other content */
  transform: rotate(0deg);          /* Angles the photo Use negative numbers like -7deg to rotate left */
  transition: transform 0.3s ease;  /* Adds a smooth 0.3-second animation effect */
  opacity: 0.6;  /* Dims the photo by making it semi-transparent */
}

/*-- END fixed_photo_01 --*/

/*-- START fixed_photo_02 --*/

.fixed_photo_02 {
  position: absolute;
  top: 100px;         
  right: 1400px;       
  width: 900px;      
  height: auto;      
  z-index: 99999;     
  transform: rotate(7deg);
  
  /* Dims the photo by making it semi-transparent */
  opacity: 1; 
  
  /* Smoothly transitions both the rotation AND opacity */
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.fixed_photo_02:hover {
  transform: rotate(0deg);
  opacity: 0.6; /* Brings it back to full brightness on hover */
}

/*-- END fixed_photo_02 --*/

/*-- START top-footer --*/

/*-- END top-footer --*/

/* === END MY SHIT === */

:root {
  --bg-page: #EBF3F1;
  --bg-panel: #FFFFFF;
  --bg-panel-alt: #E1EEEB;
  --navy: #182D46;
  --text-muted: #5C7488;
  --teal-deep: #187C69;
  --teal-bright: #2AB79D;
  --line: rgba(24,45,70,0.12);
  --line-strong: rgba(24,45,70,0.24);
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'IBM Plex Sans', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg-page);
  color: var(--navy);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
:focus-visible { outline: 2px solid var(--teal-bright); outline-offset: 3px; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 32px; }

/* ---------- Nav ---------- */

/*-- MY NAV --*/

.nav1 {
  position: sticky;
  z-index: 50;
  background: rgba(235,243,241,0.82);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
  
.nav1-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 32px;
  max-width: 1180px;
margin: 0 auto}
  
  /*-- END MY NAV --*/

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(235,243,241,0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 32px;
  max-width: 1180px;
  margin: 0 auto;
}

.logo { display: flex; align-items: center; } /*-- gap: 12px; } --*/
.logo-mark { height: 120px; width: auto; }
/*-- .logo-mark { height: 68px; width: auto; } --*/

.logo-word {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.02em;
  color: var(--navy);
}
.logo-word small {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px; /*-- 09px; --*/
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--teal-deep);
  margin-top: 1px;
}

.nav-links { display: flex; gap: 36px; font-size: 14px; color: var(--text-muted); }
.nav-links a { transition: color 0.2s ease; padding-bottom: 3px; border-bottom: 1px solid transparent; }
.nav-links a:hover { color: var(--navy); }
.nav-links a.active { color: var(--navy); border-bottom-color: var(--teal-bright); }

.nav-cta {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  border: 1px solid var(--line-strong);
  padding: 9px 18px;
  border-radius: 3px;
  color: var(--navy);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.nav-cta:hover { border-color: var(--teal-deep); background: rgba(24,124,105,0.07); }

.nav-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-menu-btn svg { width: 24px; height: 24px; color: var(--navy); }

/* ---------- Horizon divider (signature element) ---------- */

.horizon {
  position: relative;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong) 20%, var(--line-strong) 80%, transparent);
  max-width: 1180px;
  margin: 0 auto;
}

.horizon-label {
  position: absolute;
  top: -9px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  background: var(--bg-page);
  padding: 0 12px;
}
.horizon-label.left { left: 32px; }
.horizon-label.right { right: 32px; }

@media (max-width: 700px) {
  .horizon-label.right { display: none; }
}

/* ---------- Page header (non-home pages) ---------- */

.page-header {
  padding: 168px 0 70px;
  position: relative;
  background:
    radial-gradient(ellipse 800px 420px at 82% 0%, rgba(42,183,157,0.14), transparent 60%),
    linear-gradient(180deg, #F5FAF9 0%, #EBF3F1 100%);
  overflow: hidden;
}

.page-header .hero-grid-lines { opacity: 0.7; }

.page-header h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 5.5vw, 58px);
  letter-spacing: -0.01em;
  max-width: 700px;
}

.page-header p.lead {
  margin-top: 18px;
  max-width: 520px;
  font-size: 16px;
  color: var(--text-muted);
}

/* ---------- Hero (home only) ---------- */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 140px 0 90px;
  background:
    radial-gradient(ellipse 900px 500px at 80% 15%, rgba(42,183,157,0.14), transparent 60%),
    linear-gradient(180deg, #F5FAF9 0%, #EBF3F1 45%, #E2EFEC 100%);
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 40%;
  background: linear-gradient(180deg, transparent, rgba(24,124,105,0.06));
  pointer-events: none;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(24,45,70,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24,45,70,0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 700px 500px at 70% 30%, black, transparent 70%);
  pointer-events: none;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--teal-deep);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal-bright);
  box-shadow: 0 0 0 3px rgba(42,183,157,0.20);
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 6vw, 74px);
  line-height: 1.03;
  letter-spacing: -0.01em;
  max-width: 780px;
  position: relative;
  color: var(--navy);
}
.hero h1 em { font-style: normal; color: var(--teal-deep); }

.hero p.lead {
  margin-top: 26px;
  max-width: 480px;
  font-size: 17px;
  color: var(--text-muted);
  position: relative;
}

.hero-actions { margin-top: 40px; display: flex; gap: 16px; flex-wrap: wrap; position: relative; }

.btn-primary {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  background: var(--teal-deep);
  color: #FFFFFF;
  padding: 14px 26px;
  border-radius: 3px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  display: inline-block;
}
.btn-primary:hover { background: var(--teal-bright); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(42,183,157,0.28); }

.btn-ghost {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  border: 1px solid var(--line-strong);
  padding: 14px 26px;
  border-radius: 3px;
  color: var(--navy);
  background: none;
  cursor: pointer;
  transition: border-color 0.2s ease;
  display: inline-block;
}
.btn-ghost:hover { border-color: var(--navy); }

.hero-readout {
  position: absolute;
  right: 32px;
  top: 150px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  text-align: right;
  line-height: 2;
  letter-spacing: 0.04em;
}
.hero-readout .v { color: var(--navy); }

@media (max-width: 860px) { .hero-readout { display: none; } }

/* ---------- Section shell ---------- */

section.block { padding: 100px 0; position: relative; }
section.block.tight { padding: 70px 0; }
.section-head { max-width: 560px; margin-bottom: 56px; }
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 3.4vw, 40px);
  margin-top: 14px;
  letter-spacing: -0.01em;
  color: var(--navy);
}
.section-head p { margin-top: 14px; color: var(--text-muted); font-size: 15px; }
.section-head.center { max-width: 620px; margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }

/* ---------- Services ---------- */

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}

.service-card { background: var(--bg-panel); padding: 36px 30px; transition: background 0.25s ease; }
.service-card:hover { background: var(--bg-panel-alt); }
.service-card .icon { width: 34px; height: 34px; color: var(--teal-deep); margin-bottom: 24px; }
.service-card h3 { font-family: var(--font-display); font-size: 19px; font-weight: 600; margin-bottom: 10px; color: var(--navy); }
.service-card p { font-size: 14px; color: var(--text-muted); }

@media (max-width: 780px) { .service-grid { grid-template-columns: 1fr; } }

/* ---------- Services page: detailed rows ---------- */

.service-detail {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  padding: 44px 0;
  border-top: 1px solid var(--line);
}
.service-detail:last-child { border-bottom: 1px solid var(--line); }

.service-detail .num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--teal-deep);
  letter-spacing: 0.1em;
}
.service-detail h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  margin-top: 8px;
}

.service-detail-body p { color: var(--text-muted); font-size: 15px; max-width: 620px; }

.service-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.service-tags span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--teal-deep);
  background: var(--bg-panel-alt);
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: 3px;
}

@media (max-width: 700px) {
  .service-detail { grid-template-columns: 1fr; gap: 14px; }
}

/* ---------- Process steps ---------- */

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.process-step .num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--teal-deep);
  letter-spacing: 0.1em;
}
.process-step h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  margin: 10px 0 8px;
}
.process-step p { font-size: 13.5px; color: var(--text-muted); }

@media (max-width: 860px) {
  .process-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .process-list { grid-template-columns: 1fr; }
}

/* ---------- Portfolio ---------- */

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 14px;
}

.shot {
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  border: 1px solid var(--line);
}

.shot .tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: #FFFFFF;
  background: rgba(24,45,70,0.55);
  padding: 5px 9px;
  border-radius: 3px;
  backdrop-filter: blur(4px);
}

.shot-1 { grid-column: span 2; grid-row: span 2; background: linear-gradient(155deg, #BFE3DA, #EFF8F7 60%, #FFFFFF); }
.shot-2 { grid-column: span 2; background: linear-gradient(155deg, #A9D6C9, #EFF8F7); }
.shot-3 { background: linear-gradient(155deg, #D9CBAE, #EFF8F7); }
.shot-4 {
  background: repeating-linear-gradient(135deg, rgba(24,45,70,0.05) 0 2px, transparent 2px 14px);
  border-style: dashed;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.shot-4 .tag { background: none; color: var(--text-muted); backdrop-filter: none; }

@media (max-width: 780px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 160px); }
  .shot-1 { grid-column: span 2; grid-row: span 1; }
}

/* ---------- Portfolio page: full gallery + filters ---------- */

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.filter-btn {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  border: 1px solid var(--line-strong);
  background: none;
  color: var(--text-muted);
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.filter-btn:hover { color: var(--navy); border-color: var(--navy); }
.filter-btn.active { background: var(--teal-deep); color: #fff; border-color: var(--teal-deep); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-grid .shot { height: 260px; }

@media (max-width: 860px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; } }

/* ---------- About / readout ---------- */

.about-split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: start; }
.about-split p { color: var(--text-muted); font-size: 16px; margin-top: 18px; max-width: 460px; }

.readout-box {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--bg-panel);
  padding: 28px 30px;
  font-family: var(--font-mono);
}

.readout-row { display: flex; justify-content: space-between; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 13px; }
.readout-row:last-child { border-bottom: none; }
.readout-row .k { color: var(--text-muted); letter-spacing: 0.04em; }
.readout-row .v { color: var(--teal-deep); font-weight: 500; }

@media (max-width: 860px) { .about-split { grid-template-columns: 1fr; } }

/* ---------- About page: equipment / values ---------- */

.equip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}
.equip-card { background: var(--bg-panel); padding: 26px 28px; }
.equip-card .label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--teal-deep);
}
.equip-card .value {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin-top: 6px;
}

@media (max-width: 600px) { .equip-grid { grid-template-columns: 1fr; } }

/* ---------- Contact page ---------- */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 60px;
  align-items: start;
}

.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-panel);
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  padding: 13px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--navy);
  transition: border-color 0.2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal-deep);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.contact-info-box {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--bg-panel);
  padding: 30px;
}
.contact-info-box h3 {
  font-family: var(--font-display);
  font-size: 18px;
  margin-bottom: 18px;
}
.contact-info-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13.5px;
}
.contact-info-row:last-child { border-bottom: none; }
.contact-info-row .k { color: var(--text-muted); }
.contact-info-row .v { color: var(--navy); font-family: var(--font-mono); font-size: 13px; }

@media (max-width: 860px) { .contact-layout { grid-template-columns: 1fr; } }

/* ---------- CTA ---------- */

.cta-block { text-align: center; padding: 120px 0; }
.cta-block h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 5vw, 52px);
  max-width: 640px;
  margin: 16px auto 0;
  letter-spacing: -0.01em;
  color: var(--navy);
}
.cta-block p { color: var(--text-muted); margin-top: 18px; }
.cta-block .hero-actions { justify-content: center; margin-top: 36px; }

/* ---------- Footer ---------- */

footer { border-top: 1px solid var(--line); padding: 20px 0;} /*-- padding: 40px 0; } --*/
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo img { height: 70px; width: auto; } /*-- height: 24; --*/
.footer-tag { font-family: var(--font-mono); font-size: 11px; color: var(--navy); letter-spacing: 0.06em; } /*-- var(--text-muted); --*/
.footer-links { display: flex; gap: 26px; font-size: 13px; color: var(--text-muted); }
.footer-links a:hover { color: var(--navy); }
.footer-word { font-family: var(--font-display); font-weight: 600; font-size: 18px; letter-spacing: 0.02em; color: var(--navy); }
.footer-word small { display: block; font-family: var(--font-mono); font-size: 09px; font-weight: 400; letter-spacing: 0.18em; color: var(--teal-deep); margin-top: 1px; }
.align-center { display: flex; justify-content: center; /* Horizontally centers items */ align-items: center; /* Vertically centers items */ }
.footer-tag a { display: inline !important; white-space: nowrap; }

font.type70 { font-family: var(--font-mono); font-size: 11px; color: var(--navy); letter-spacing: 0.06em; }

p.type5 { margin-left: 5cm; margin-right: 5cm; text-align: center; }


@media (max-width: 700px) {
  .nav-links { display: none; }
  .nav-menu-btn { display: block; }
  .about-split { gap: 40px; }
  .service-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto !important; }
}
