: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;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
}

* {
  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 {
  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 {
  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: var(--radius-md);
  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;
}

.section-contact {
  padding: 104px clamp(20px, 6vw, 86px) 70px;
  color: rgba(255, 255, 255, 0.88);
  background:
    radial-gradient(circle at 85% 20%, rgba(201, 168, 106, 0.16), rgba(201, 168, 106, 0) 32%),
    var(--ink);
}

.section-contact__inner {
  max-width: 1120px;
}

.section-contact__eyebrow,
.section-contact .eyebrow {
  color: var(--gold);
}

.section-contact h2 {
  max-width: 760px;
  margin-top: 0;
  color: var(--white);
}

.section-contact__intro {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.65;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 28rem) minmax(15rem, 1fr);
  gap: 1.25rem 1.75rem;
  align-items: stretch;
  margin-top: 2rem;
}

.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  padding: 1.15rem 1.2rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.contact-aside__title {
  margin: 0;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--white);
}

.contact-aside__lead {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.68);
}

.contact-aside__email-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.contact-aside__email {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-aside__email:hover {
  border-color: rgba(201, 168, 106, 0.45);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.contact-aside__email-label {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.52);
}

.contact-aside__email-value {
  font-size: clamp(0.92rem, 0.35vw + 0.84rem, 1rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--white);
  word-break: break-word;
}

.contact-aside__copy {
  align-self: flex-start;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.contact-aside__copy:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(201, 168, 106, 0.45);
  color: var(--white);
}

.contact-aside__copy.is-copied {
  border-color: rgba(201, 168, 106, 0.45);
  color: var(--white);
  background: rgba(201, 168, 106, 0.22);
}

.contact-aside__tip {
  margin: 0;
  padding: 0.75rem 0.85rem;
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.68);
}

.contact-aside__meta {
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.contact-aside__meta-item {
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
}

.contact-aside__meta-label {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.52);
}

.contact-aside__meta-value {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--white);
}

.callback-form {
  max-width: 28rem;
  padding: 1.15rem 1.2rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.callback-form--success {
  border-color: rgba(201, 168, 106, 0.45);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
}

.callback-form--loading .callback-form__submit {
  position: relative;
  color: transparent;
}

.callback-form--loading .callback-form__submit::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 1.1rem;
  height: 1.1rem;
  margin: -0.55rem 0 0 -0.55rem;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: callbackSpin 0.7s linear infinite;
}

@keyframes callbackSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes callbackAlertIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.callback-form__title {
  margin: 0 0 1rem;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.callback-form__field {
  margin-bottom: 0.85rem;
}

.callback-form__label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
}

.callback-form__input {
  width: 100%;
  padding: 0.62rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.callback-form__input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.callback-form__input:focus-visible {
  outline: none;
  border-color: rgba(201, 168, 106, 0.55);
  box-shadow: 0 0 0 3px rgba(201, 168, 106, 0.18);
}

.callback-form__input.is-error {
  border-color: rgba(201, 120, 120, 0.65);
  box-shadow: 0 0 0 3px rgba(116, 50, 72, 0.2);
}

.callback-form__field--channels {
  margin: 0 0 0.85rem;
  padding: 0;
  border: 0;
  min-width: 0;
}

.callback-form__field--channels .callback-form__label {
  margin-bottom: 0.45rem;
  padding: 0;
}

.callback-form__channels {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.callback-form__channel {
  flex: 1 1 5.5rem;
  display: block;
  cursor: pointer;
}

.callback-form__channel input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.callback-form__channel-text {
  display: block;
  padding: 0.5rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.86rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.25;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.callback-form__channel:hover .callback-form__channel-text {
  border-color: rgba(201, 168, 106, 0.4);
}

.callback-form__channel input:focus-visible + .callback-form__channel-text {
  outline: none;
  border-color: rgba(201, 168, 106, 0.55);
  box-shadow: 0 0 0 3px rgba(201, 168, 106, 0.18);
}

.callback-form__channel input:checked + .callback-form__channel-text {
  border-color: var(--mist);
  background: var(--mist);
  color: var(--ink);
}

.callback-form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.callback-form__consent {
  margin: 0 0 0.95rem;
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.56);
}

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

.section-contact .callback-form__submit.button.primary:hover {
  background: var(--white);
  border-color: var(--white);
}

.callback-form__submit {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.callback-form__submit:disabled {
  opacity: 0.72;
  cursor: not-allowed;
  transform: none;
}

.callback-form__alert {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin: 1rem 0 0;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-sm);
  animation: callbackAlertIn 0.35s ease;
}

.callback-form__alert-icon {
  flex: 0 0 auto;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
}

.callback-form__alert-text {
  flex: 1;
  font-size: 0.98rem;
  line-height: 1.45;
}

.callback-form__alert--success {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(201, 168, 106, 0.45);
}

.callback-form__alert--success .callback-form__alert-icon {
  background: var(--gold);
  color: var(--ink);
}

.callback-form__alert--success .callback-form__alert-icon::before {
  content: "✓";
}

.callback-form__alert--success .callback-form__alert-text {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--white);
}

.callback-form__alert--error {
  background: rgba(116, 50, 72, 0.22);
  border: 1px solid rgba(201, 120, 120, 0.4);
}

.callback-form__alert--error .callback-form__alert-icon {
  background: var(--wine);
  color: #fff;
}

.callback-form__alert--error .callback-form__alert-icon::before {
  content: "!";
}

.callback-form__alert--error .callback-form__alert-text {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
}

.footer {
  padding: 28px clamp(20px, 6vw, 86px) 36px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.copyright {
  margin: 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: var(--radius-lg);
    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: var(--radius-sm);
    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-layout {
    grid-template-columns: 1fr;
  }
}

@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,
  .callback-form__submit {
    width: 100%;
  }

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