:root {
  --red: #a91218;
  --red-dark: #4f0303;
  --ocean: #123646;
  --ocean-deep: #0b2530;
  --sea: #b7cbc7;
  --paper: #f5f1e8;
  --paper-2: #ebe4d7;
  --ink: #1f2323;
  --muted: #686b67;
  --line: rgba(31,35,35,0.14);
  --white-soft: rgba(255,255,255,0.58);
}

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

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 5vw;
  background: rgba(245, 241, 232, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(31,35,35,0.08);
}

.brand img { width: 124px; border-radius: 10px; }

nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.95rem;
  font-weight: 650;
}

nav a { text-decoration: none; color: var(--muted); }
nav a:hover { color: var(--ink); }

.nav-cta {
  color: white;
  background: var(--ocean);
  padding: 10px 16px;
  border-radius: 999px;
}

.nav-cta:hover { color: white; background: var(--red); }

.hero {
  position: relative;
  min-height: 82vh;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(245,241,232,0.70), rgba(245,241,232,0.52) 40%, rgba(245,241,232,0.18)),
    url("assets/lighthouse-ocean.jpeg") center / cover no-repeat;
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 82vh;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.95fr);
  gap: 5vw;
  align-items: center;
  padding: 4.2vw 5vw 7.5vw;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 0.77rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 980px;
  margin-bottom: 28px;
  font-size: clamp(3.1rem, 7.2vw, 7.2rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2rem, 4.4vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.28rem;
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.lead {
  max-width: 760px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 36px;
}

.hero-meta span {
  border: 1px solid rgba(18,54,70,0.22);
  background: rgba(245,241,232,0.62);
  color: var(--ocean);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 650;
}

.actions { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: white;
  text-decoration: none;
  border-radius: 999px;
  padding: 15px 22px;
  font-weight: 750;
  box-shadow: 0 18px 36px rgba(169,18,24,0.18);
}

.text-link {
  color: var(--ocean);
  font-weight: 750;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.portrait-card {
  background: var(--ocean);
  border-radius: 36px;
  padding: 14px;
  transform: rotate(-2deg);
  box-shadow: 0 28px 70px rgba(11,37,48,0.25);
  max-width: 560px;
  justify-self: end;
}

.portrait-card img {
  border-radius: 26px;
  aspect-ratio: 0.86 / 1;
  object-fit: cover;
  object-position: center;
  transform: rotate(1deg);
}

.statement {
  padding: 6.5vw 5vw;
  background: var(--ocean-deep);
  color: var(--paper);
}

.statement p {
  max-width: 1160px;
  margin: 0;
  font-size: clamp(1.45rem, 3.2vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.landscape-break {
  position: relative;
  height: 54vw;
  max-height: 640px;
  min-height: 320px;
  overflow: hidden;
}

.landscape-break img { width: 100%; height: 100%; object-fit: cover; }

.landscape-break::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11,37,48,0.45), rgba(11,37,48,0.08));
}

.landscape-caption {
  position: absolute;
  z-index: 1;
  left: 5vw;
  bottom: 5vw;
  color: white;
  font-size: clamp(1.4rem, 3vw, 3.2rem);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.section { padding: 8vw 5vw; }
.section-heading { max-width: 960px; margin-bottom: 46px; }
.section-heading.wide { max-width: 1120px; }

.section-intro {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.15rem;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.focus-grid article {
  min-height: 288px;
  padding: 28px;
  background: var(--white-soft);
  border: 1px solid var(--line);
  border-radius: 30px;
}

.focus-grid span {
  display: block;
  margin-bottom: 54px;
  color: var(--red);
  font-weight: 850;
}

.focus-grid p, .work-item p, .about-copy p, .principles-list p, .contact p {
  color: var(--muted);
}

.selected-work {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.work-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.work-item {
  padding: 30px;
  background: rgba(255,255,255,0.52);
  border: 1px solid rgba(31,35,35,0.13);
  border-radius: 30px;
}

.work-kicker {
  margin-bottom: 30px;
  color: var(--red);
  font-size: 0.79rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.about {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 8vw;
  align-items: center;
}

.about-image {
  border-radius: 36px;
  overflow: hidden;
  transform: rotate(1.5deg);
  box-shadow: 0 24px 58px rgba(11,37,48,0.18);
}

.about-image img {
  width: 100%;
  aspect-ratio: 0.82 / 1;
  object-fit: cover;
}

.about-copy p {
  max-width: 760px;
  font-size: 1.17rem;
}

.principles {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: stretch;
  padding-top: 2vw;
}

.principles-card {
  padding: 42px;
  background: var(--red);
  color: white;
  border-radius: 34px;
}

.principles-card .eyebrow { color: rgba(255,255,255,0.76); }

.principles-card h2 {
  font-size: clamp(2rem, 3.7vw, 4rem);
  margin-bottom: 0;
}

.tilt { transform: rotate(-1.5deg); }

.principles-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.principles-list div {
  padding: 28px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: var(--white-soft);
}

.contact {
  margin: 2vw 5vw 8vw;
  padding: 6vw;
  color: white;
  background:
    linear-gradient(90deg, rgba(11,37,48,0.96), rgba(11,37,48,0.76)),
    url("assets/coastal-horizon.jpeg") center / cover no-repeat;
  border-radius: 42px;
}

.contact .eyebrow { color: var(--sea); }
.contact h2 { max-width: 920px; }
.contact p { color: rgba(255,255,255,0.82); }

.contact-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin: 18px 0 30px;
}

.contact-links a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  color: white;
  text-decoration: none;
  font-weight: 750;
  background: rgba(255,255,255,0.08);
}

.contact-email {
  font-size: clamp(1.05rem, 2.1vw, 1.45rem);
  letter-spacing: -0.02em;
}

.linkedin-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-right: 9px;
  border-radius: 5px;
  background: white;
  color: var(--ocean-deep);
  font-weight: 850;
  font-size: 0.88rem;
  font-family: Arial, sans-serif;
}


.contact-form {
  max-width: 720px;
  margin-top: 36px;
  padding: 26px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 28px;
  background: rgba(255,255,255,0.08);
}

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.form-row label {
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
  font-weight: 750;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 16px;
  padding: 13px 14px;
  color: white;
  background: rgba(255,255,255,0.09);
  font: inherit;
  outline: none;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: rgba(255,255,255,0.62);
}

.form-row textarea {
  resize: vertical;
}

.contact-form button {
  border: 0;
  border-radius: 999px;
  padding: 13px 18px;
  color: var(--ocean-deep);
  background: white;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.form-note {
  margin: 14px 0 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.68) !important;
}

.small-note {
  max-width: 720px;
  font-size: 0.95rem;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 5vw 42px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

footer a {
  text-decoration: none;
  font-weight: 650;
}


@media (min-width: 981px) {
  .hero-copy {
    transform: translateY(-28px);
  }

  .portrait-card {
    transform: rotate(-2deg) translateY(-8px);
  }
}

@media (max-width: 980px) {
  .hero-grid, .about, .principles { grid-template-columns: 1fr; }
  .portrait-card { max-width: 520px; justify-self: start; }
  .focus-grid, .work-list { grid-template-columns: 1fr; }
  .focus-grid article { min-height: auto; }
  .focus-grid span { margin-bottom: 28px; }
}

@media (max-width: 700px) {
  .site-header {
    position: static;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 5vw;
    gap: 16px;
  }
  nav { width: 100%; gap: 16px; flex-wrap: wrap; }
  h1 { font-size: 3.2rem; }
  h2 { font-size: 2.35rem; }
  .hero-grid { padding-top: 54px; }
  .landscape-break { height: 72vw; }
  .section { padding-top: 70px; padding-bottom: 70px; }
  .contact { padding: 34px; border-radius: 30px; }
}

.hero-copy { transform: translateY(-18px); }


.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(31,35,35,0.12);
  border-radius: 999px;
  background: rgba(255,255,255,0.28);
}

.language-switcher a {
  padding: 5px 8px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 850;
  color: var(--muted);
}

.language-switcher a.active {
  background: var(--ocean);
  color: white;
}

@media (max-width: 700px) {
  .language-switcher {
    order: 10;
  }
}


.what .section-heading h2 {
  font-size: clamp(2rem, 3.25vw, 3.45rem);
}


.hidden-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
}


.footer-left {
  display: grid;
  gap: 14px;
}

.footer-left > p {
  margin: 0;
}

.footer-company {
  display: grid;
  gap: 2px;
  font-size: 0.88rem;
  line-height: 1.35;
}

.footer-company p {
  margin: 0;
}
