:root {
  --ink: #172221;
  --soft-ink: #5c615c;
  --paper: #f4f0e8;
  --paper-deep: #ebe3d4;
  --white: #ffffff;
  --line: #d8cdbc;
  --teal: #1d5f5d;
  --wine: #743248;
  --gold: #c9a86a;
  --sand: #e8d9bd;
  --mist: #f8f5ee;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0) 420px),
    var(--paper);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  letter-spacing: 0;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 64px);
  background: rgba(244, 240, 232, 0.84);
  border-bottom: 1px solid rgba(23, 23, 23, 0.08);
  backdrop-filter: blur(18px);
}

.brand,
.header-actions,
.nav,
.hero-actions,
.facts,
.contact-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}

.brand-word {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 22px;
  line-height: 1;
}

.brand-line {
  width: 26px;
  height: 1px;
  background: var(--gold);
}

.brand-sub {
  color: var(--soft-ink);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-actions {
  gap: clamp(18px, 3vw, 34px);
  margin-left: auto;
}

.nav {
  gap: clamp(14px, 2.5vw, 30px);
  color: var(--soft-ink);
  font-size: 14px;
}

.nav a {
  text-decoration: none;
}

.nav a:hover {
  color: var(--ink);
}

.language-switch {
  display: flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(23, 34, 33, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
}

.lang-button {
  min-width: 38px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--soft-ink);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
}

.lang-button.is-active {
  color: var(--white);
  background: var(--ink);
}

.menu-toggle {
  display: none;
  position: relative;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 1px solid rgba(23, 34, 33, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 12px;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease, top 180ms ease;
}

.menu-toggle span:nth-child(1) {
  top: 14px;
}

.menu-toggle span:nth-child(2) {
  top: 20px;
}

.menu-toggle span:nth-child(3) {
  top: 26px;
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) {
  top: 20px;
  transform: rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .menu-toggle span:nth-child(3) {
  top: 20px;
  transform: rotate(-45deg);
}

.hero {
  min-height: 93vh;
  display: grid;
  grid-template-columns: minmax(0, 880px);
  align-content: center;
  align-items: center;
  gap: 18px;
  padding: 142px clamp(20px, 6vw, 86px) 72px;
  background:
    radial-gradient(circle at 85% 24%, rgba(235, 202, 137, 0.25), rgba(235, 202, 137, 0) 30%),
    linear-gradient(90deg, rgba(18, 30, 30, 0.72), rgba(22, 39, 39, 0.34) 54%, rgba(22, 39, 39, 0.02)),
    linear-gradient(180deg, rgba(18, 30, 30, 0.12), rgba(18, 30, 30, 0.55)),
    url("assets/limassol-hero.jpg") center 58% / cover;
  color: var(--white);
}

.hero-copy {
  max-width: 900px;
}

.eyebrow,
.status {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: "Libre Baskerville", Georgia, serif;
  letter-spacing: 0;
}

h1 {
  max-width: 900px;
  font-size: clamp(58px, 10vw, 132px);
  line-height: 0.94;
}

h2 {
  font-size: clamp(34px, 5vw, 72px);
  line-height: 0.98;
}

.lead {
  max-width: 760px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(19px, 2vw, 27px);
  line-height: 1.45;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--ink);
  background: var(--mist);
  border-color: var(--mist);
}

.button.ghost {
  color: var(--white);
}

.button.dark {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.button.outline {
  color: var(--ink);
  background: transparent;
}

.hero-panel {
  display: flex;
  flex-wrap: wrap;
  align-self: start;
  gap: 10px;
  max-width: 760px;
  margin-top: 0;
}

.hero-panel p {
  margin: 0;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(18, 30, 30, 0.22);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.intro,
.project,
.source-note,
.footer {
  padding-left: clamp(20px, 6vw, 86px);
  padding-right: clamp(20px, 6vw, 86px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 7vw, 96px);
  padding-top: 104px;
  padding-bottom: 104px;
  border-bottom: 1px solid var(--line);
}

.intro p:last-child,
.project-copy p,
.source-note p {
  color: var(--soft-ink);
  font-size: 18px;
  line-height: 1.72;
}

.project {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.72fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
  padding-top: 104px;
  padding-bottom: 104px;
}

.project + .project {
  border-top: 1px solid var(--line);
}

.project-media {
  overflow: hidden;
  min-height: 460px;
  background: var(--ink);
  border-radius: 2px;
  box-shadow: 0 28px 70px rgba(23, 34, 33, 0.12);
}

.project-media img {
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.project-media.portrait {
  height: 680px;
}

.project-media.portrait img {
  height: 680px;
}

.project-copy {
  max-width: 640px;
}

.project-copy h2 {
  line-height: 1.04;
}

.project-lead {
  margin-top: 28px;
  color: var(--ink) !important;
  font-size: 21px !important;
}

.facts {
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0;
}

.facts span {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
}

.status.muted {
  color: var(--wine);
}

.source-note {
  padding-top: 22px;
  padding-bottom: 72px;
}

.source-note p {
  max-width: 980px;
  margin: 0;
  font-size: 14px;
}

.source-note a {
  color: var(--teal);
  font-weight: 700;
}

.footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
  padding-top: 70px;
  padding-bottom: 70px;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 20%, rgba(201, 168, 106, 0.16), rgba(201, 168, 106, 0) 32%),
    var(--ink);
}

.footer h2 {
  max-width: 760px;
}

.contact-links {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.contact-links a {
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  text-decoration: none;
}

.copyright {
  grid-column: 1 / -1;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
}

@media (max-width: 980px) {
  .site-header {
    position: absolute;
    gap: 14px;
    padding: 16px clamp(18px, 4vw, 34px);
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    right: clamp(18px, 4vw, 34px);
    left: clamp(18px, 4vw, 34px);
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(23, 34, 33, 0.12);
    border-radius: 18px;
    background: var(--mist);
    box-shadow: 0 24px 70px rgba(23, 34, 33, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
    backdrop-filter: blur(18px);
  }

  .site-header.is-menu-open .nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav a {
    padding: 14px 12px;
    border-radius: 12px;
    color: var(--ink);
    font-size: 16px;
    font-weight: 800;
  }

  .nav a:hover {
    background: rgba(232, 217, 189, 0.48);
  }

  .header-actions {
    gap: 10px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero,
  .intro,
  .project,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 100vh;
    padding-top: 128px;
    background:
      radial-gradient(circle at 78% 18%, rgba(235, 202, 137, 0.24), rgba(235, 202, 137, 0) 34%),
      linear-gradient(180deg, rgba(18, 30, 30, 0.5), rgba(18, 30, 30, 0.76)),
      url("assets/limassol-hero.jpg") 48% center / cover;
  }

  .upcoming .project-copy {
    order: 2;
  }

  .project-media,
  .project-media img,
  .project-media.portrait,
  .project-media.portrait img {
    min-height: 360px;
    height: 430px;
  }

  .contact-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 16px 20px;
  }

  .brand {
    gap: 8px;
  }

  .brand-word {
    font-size: 20px;
  }

  .brand-line,
  .brand-sub {
    display: none;
  }

  .hero {
    padding-bottom: 28px;
  }

  .hero-panel {
    gap: 8px;
  }

  .hero-panel p {
    font-size: 12px;
    padding: 10px 12px;
  }

  h1 {
    font-size: 54px;
    line-height: 0.94;
  }

  h2 {
    font-size: 36px;
    line-height: 1;
  }

  .lead,
  .project-lead {
    line-height: 1.46;
    font-size: 18px !important;
  }

  .button,
  .contact-links a {
    width: 100%;
  }

  .project,
  .intro {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
