@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400&display=swap");

:root {
  --black: #020404;
  --ink: #ffffff;
  --muted: rgba(255, 255, 255, 0.7);
  --soft: rgba(255, 255, 255, 0.12);
  --line: rgba(255, 255, 255, 0.18);
  --teal: #13b8cc;
  --deep-teal: #06383f;
  --graphite: #151719;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color:  var(--ink);
  font-family: Inter, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
 
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background: var(--black);
}

body::after {
  content: none;
}

a {
  color: inherit;
}

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

.site-shell {
  min-height: 100vh;
  padding-top: 80px;
}


.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 18px 58px 18px 34px;
  background: #000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: none;
}

.site-nav {
  display: flex;
  justify-content: flex-start;
  gap: 40px;
  transform: translateY(3px);
}

.site-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  font-weight: 300;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 220ms ease, text-shadow 220ms ease;
}

.site-nav a::after {
  content: "";
  display: none;
}

.site-nav a:hover,
.text-link:hover {
  color: var(--teal);
  text-shadow: 0 0 12px rgba(35, 212, 238, 0.48);
}

.language-switch {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 0;
  padding: 4px;
  background: rgba(0, 0, 0, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.35);
  transform: translateY(3px);
}

.lang-button {
  min-width: 42px;
  height: 34px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.74);
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  line-height: 1;
  transition: color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.lang-button.active {
  color: #ffffff;
  background: #285d6c;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.24);
}

.menu-toggle {
  display: none;
}

.panel {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  border-bottom: 1px solid var(--soft);
}

.hero.panel {
  width: 100%;
  margin: 0;
  padding-left: 6.8vw;
}

.hero {
  position: relative;
  display: block;
  min-height: 560px;
  padding: 64px 0 86px;
}

.hero-content {
  width: min(1040px, 100%);
  max-width: 1040px;
  text-align: left;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 47px;
}

.hero-kicker span {
  width: 252px;
  height: 7px;
  background: #18bdd4;
}

.hero-kicker p {
  margin: 0;
  color: #69d8ea;
  font-size: 20.6px;
  font-weight: 500;
  letter-spacing: 0.42em;
  line-height: 1;
  text-transform: uppercase;
}

.hero-title {
    display: grid;
    gap: 0;
    margin: 0;
    color: #ffffff;
  font-size: clamp(80px, 9.48vw, 130px);
    font-weight: 200;
    font-variation-settings: "wght" 200;
    line-height: 0.93;
    letter-spacing: -0.06em;
}

.hero-title span {
  display: block;
}

.hero-title span:last-child {
  color: #17c2dc;
  font-weight: 240;
  font-variation-settings: "wght" 240;
}

.hero-description {
  display: grid;
  gap: 20px;
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 1.56vw, 22px);
  font-weight: 200;
  line-height: 1.22;
}

.hero-description span {
  display: block;
}

.hero-description span:first-child {
  color: rgba(255, 255, 255, 0.86);
}

.hero-description span:nth-child(2) {
  color: rgba(255, 255, 255, 0.58);
}

.hero-logo-wrap {
  position: absolute;
  top: 54px;
  right: 7.2vw;
  width: min(17.8vw, 222px);
  overflow: visible;
  cursor: default;
}

.hero-logo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
}

.hero-logo-wrap::before {
  position: absolute;
  top: 30%;
  left: 8%;
  width: 92%;
  height: 56%;
  z-index: 2;
  content: "";
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.22), rgba(47, 212, 235, 0.16) 38%, transparent 68%);
  mix-blend-mode: screen;
  opacity: 0;
  filter: blur(10px);
  transform: rotate(-14deg) scale(0.82);
  transition: opacity 1200ms ease-out, transform 1200ms ease-out;
  pointer-events: none;
}

.hero-logo-wrap::after {
  position: absolute;
  top: 32%;
  left: 12%;
  width: 78%;
  height: 46%;
  z-index: 0;
  content: "";
  background: radial-gradient(ellipse at center, rgba(47, 212, 235, 0.14), transparent 66%);
  opacity: 0;
  filter: blur(14px);
  transition: opacity 1400ms ease-out;
  pointer-events: none;
}

.hero-logo-wrap:hover::before {
  opacity: 0.48;
  transform: rotate(-14deg) scale(1.04);
}

.hero-logo-wrap:hover::after {
  opacity: 1;
}

@keyframes logoPetalGlow {
  0% {
    opacity: 0;
    transform: rotate(-14deg) scale(0.78);
  }

  35% {
    opacity: 0.55;
  }

  70% {
    opacity: 0.38;
  }

  100% {
    opacity: 0;
    transform: rotate(-14deg) scale(1.04);
  }
}

.hero-banner {
  position: relative;
  width: 100vw;
  margin-top: 32px;
  margin-left: -6.8vw;
  right: 0;
  bottom: auto;
  left: 0;
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: start;
  gap: clamp(58px, 8.4vw, 118px);
  align-items: center;
  min-height: 172px;
  padding: 44px 0 44px 6.8vw;
  background:
    linear-gradient(rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.42)),
    url("../Asset/banner.png") center / cover no-repeat;
  overflow: hidden;
}

.hero-banner span {
  color: #2fd4eb;
  font-size: clamp(15px, 1.7vw, 23px);
  font-weight: 380;
  letter-spacing: 0.34em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .hero-description span:first-child {
    white-space: normal;
  }
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--teal);
  font-size: clamp(13px, 0.96vw, 16px);
  font-weight: 400;
  letter-spacing: 0.36em;
  line-height: 1;
  text-transform: uppercase;
}

.services-heading p,
.booking-heading p,
.perspective-top p,
.perspective-content p {
  font-size: clamp(13px, 0.96vw, 16px);
  font-weight: 400;
  letter-spacing: 0.36em;
  line-height: 1;
}

.services-heading p,
.booking-heading p,
.perspective-content p {
  transform: translateX(3px);
}

.booking-heading p {
  transform: translateX(6px);
}

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

h1 {
  margin-bottom: 24px;
  font-size: clamp(58px, 8vw, 118px);
  font-weight: 200;
  line-height: 0.92;
}

h2 {
  color: #fff;
  font-size: clamp(38px, 5vw, 74px);
  font-weight: 200;
  line-height: 1;
}

h3 {
  font-size: 26px;
  font-weight: 300;
  line-height: 1.12;
}

.hero-copy,
.large-text,
.statement p,
.booking-copy p {
  color: var(--muted);
  font-size: 21px;
  font-weight: 300;
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font: inherit;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 240ms ease, background 240ms ease, border-color 240ms ease, box-shadow 240ms ease, transform 240ms ease;
}

.button.primary {
  background: rgba(8, 88, 104, 0.58);
  border-color: rgba(35, 212, 238, 0.78);
  color: #ffffff;
  font-weight: 360;
  letter-spacing: 0.08em;
  box-shadow: inset 0 0 18px rgba(0, 0, 0, 0.22);
}

.button.primary:hover {
  background: rgba(35, 212, 238, 0.78);
  border-color: rgba(35, 212, 238, 0.94);
  box-shadow: 0 0 18px rgba(35, 212, 238, 0.14), inset 0 0 22px rgba(0, 0, 0, 0.26);
  transform: translateY(-2px);
}

.button.primary.sent,
.button.primary.sent:hover {
  color: #ffffff;
  background: transparent;
  border-color: rgba(35, 212, 238, 0.7);
  box-shadow: none;
  cursor: default;
  transform: none;
}

.button.primary:disabled {
  opacity: 0.9;
}

.button.ghost {
  color: #fff;
  border-color: var(--line);
}

.intro,
.statement,
.booking,
.contact {
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  gap: 56px;
  padding: 96px 0;
}

.about-page {
  background: #000;
}

.about-heading {
  padding: 78px 0 30px 6.8vw;
}

.about-heading h2 {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(47px, 4.86vw, 69px);
  font-weight: 200;
  font-variation-settings: "wght" 200;
  line-height: 1;
}

.about-heading span {
  color: #10b9d6;
}

.about-texture {
  position: relative;
  min-height: 430px;
  padding: 82px 6.6vw 54px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.26), rgba(0, 0, 0, 0.04)),
    url("../Asset/sfondo con crepe.png") center / cover no-repeat;
  overflow: hidden;
}

.about-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 23px;
}

.about-card {
  min-height: 223px;
  padding: 30px 34px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(20, 185, 213, 0.38);
  border-radius: 10px;
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease, background 260ms ease;
}

.about-card:hover {
  background: rgba(0, 0, 0, 0.26);
  border-color: rgba(35, 212, 238, 0.62);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2), 0 0 18px rgba(19, 184, 204, 0.08);
  transform: translateY(-3px);
}

.about-card h3 {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(14px, 1.42vw, 19.5px);
  font-weight: 300;
  letter-spacing: 0.16em;
  line-height: 1.08;
  text-transform: uppercase;
}

.about-card p {
  max-width: 340px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(14.5px, 1.26vw, 19px);
  font-weight: 200;
  line-height: 1.52;
}

.about-logo,
.services-logo,
.perspective-logo,
.founder-logo {
  position: absolute;
  right: 58px;
  bottom: 26px;
  width: 104px;
  height: auto;
}

.corner-social {
  display: grid;
  place-items: center;
  color: #ffffff;
  text-decoration: none;
}

.corner-social img,
.corner-social span {
  grid-area: 1 / 1;
  transition: opacity 320ms ease, transform 360ms ease, filter 360ms ease;
}

.corner-social img {
  width: 100%;
  height: auto;
}

.corner-social span {
  opacity: 0;
  color: #19c5df;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: translate(18px, 14px);
}

.corner-social:hover img {
  opacity: 0;
  filter: blur(3px);
  transform: translateY(-12px) scale(0.86);
}

.corner-social:hover span {
  opacity: 1;
  transform: translateX(18px);
}

.section-number {
  color: rgba(255, 255, 255, 0.28);
  font-size: 120px;
  font-weight: 100;
  line-height: 0.8;
}

.split-copy h2,
.section-heading h2,
.statement h2,
.booking h2,
.contact h2 {
  margin-bottom: 0;
}

.services-page {
  position: relative;
  min-height: 0;
  padding: 86px 7vw 64px;
  background: #000;
  overflow: hidden;
}

.services-heading {
  margin-bottom: 96px;
}

.services-heading p {
  margin: 0 0 10px;
  color: #16c4dd;
  text-transform: uppercase;
}

.services-heading h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(47px, 4.45vw, 66.5px);
  font-weight: 100;
  line-height: 1;
}

.services-heading h2 span,
.service-title h3 span {
  color: #12bdd7;
}

.services-list {
  display: grid;
  gap: 76px;
  max-width: 1460px;
}

.service-row {
  display: grid;
  grid-template-columns: 330px minmax(720px, 960px);
  gap: 58px;
  align-items: start;
}

.service-title {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: start;
}

.service-title > span {
  color: #14c7df;
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
}

.service-title h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: clamp(24px, 2.25vw, 33px);
  font-weight: 260;
  font-variation-settings: "wght" 260;
  line-height: 1;
}

.service-title p {
  margin: 0;
  color: #fff;
  font-size: clamp(15px, 1.24vw, 17.6px);
  font-weight: 200;
  line-height: 1.25;
}

.service-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 56px;
  row-gap: 12px;
}

.service-items span {
  min-height: 28px;
  padding: 0 0 5px;
  color: #fff;
  border-bottom: 1px solid rgba(16, 180, 205, 0.42);
  font-size: clamp(14px, 1.12vw, 16.4px);
  font-weight: 380;
  line-height: 1.2;
}


.statement {
  align-items: end;
}

.perspective-page {
  background: #000;
}

.perspective-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 410px;
  padding: 118px 24px 104px;
  text-align: center;
}

.perspective-top p {
  margin: 0 0 22px;
  color: #19c4de;
  text-transform: uppercase;
}

.perspective-top h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 3.4vw, 48px);
  font-weight: 200;
  line-height: 1.12;
}

.perspective-texture {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 460px;
  padding: 72px 8.2vw;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.02)),
    url("../Asset/sfondo con crepe.png") center / cover no-repeat;
  overflow: hidden;
}

.perspective-logo {
  bottom: 34px;
}

.perspective-content p {
  margin: 0 0 20px;
  color: #69d8ea;
  text-transform: uppercase;
}

.perspective-content h3 {
  margin: 0 0 30px;
  color: #fff;
  font-size: clamp(40px, 4.15vw, 57px);
  font-weight: 100;
  line-height: 1.08;
}

.perspective-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 230px;
  min-height: 48px;
  padding: 11px 22px;
  color: #fff;
  background: rgba(8, 88, 104, 0.58);
  border: 1px solid rgba(35, 212, 238, 0.78);
  border-radius: 8px;
  font-size: clamp(11px, 0.95vw, 13.4px);
  font-weight: 360;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: inset 0 0 18px rgba(0, 0, 0, 0.22);
  transition: color 240ms ease, background 240ms ease, border-color 240ms ease, box-shadow 240ms ease, transform 240ms ease;
}

.perspective-button:hover {
  color: #ffffff;
  background: rgba(35, 212, 238, 0.78);
  border-color: rgba(35, 212, 238, 0.94);
  box-shadow: 0 0 18px rgba(35, 212, 238, 0.14), inset 0 0 22px rgba(0, 0, 0, 0.26);
  transform: translateY(-2px);
}


.booking {
  align-items: start;
}

.booking-page {
  min-height: 720px;
  padding: 88px 8.2vw 69px;
  background: #000;
}

.booking-heading {
  margin-bottom: 64px;
}

.booking-heading p {
  margin: 0 0 20px;
  color: #18c5df;
  text-transform: uppercase;
}

.booking-heading h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(29px, 3.2vw, 47px);
  font-weight: 100;
  line-height: 1;
}

.booking-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(420px, 520px));
  justify-content: start;
  gap: 54px;
  align-items: stretch;
}

.booking-calendar-panel,
.contact-form {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(19, 196, 221, 0.42);
  border-radius: 18px;
  min-height: 438px;
}

.booking-calendar-panel {
  padding: 28px;
}

.calendar-widget {
  display: grid;
  gap: 16px;
  max-width: 386px;
  margin: 0 auto;
}

.calendar-head {
  display: grid;
  grid-template-columns: 36px 1fr 36px;
  align-items: center;
  gap: 12px;
}

.calendar-head strong {
  color: #fff;
  font-size: 20px;
  font-weight: 300;
  text-align: center;
}

.calendar-head button,
.calendar-days button {
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.calendar-head button {
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 50%;
  font-size: 23px;
  line-height: 1;
}

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

.calendar-weekdays span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.calendar-days button {
  display: grid;
  place-items: center;
  justify-self: center;
  width: 38px;
  min-height: 38px;
  aspect-ratio: 1;
  padding: 0;
  border: 0;
  border-radius: 0;
  font-size: 12.6px;
  transition: color 180ms ease, background 180ms ease, border-radius 180ms ease;
}

.calendar-days button:hover {
  color: #19c5df;
  background: transparent;
  border-color: transparent;
}

.calendar-days .selected-day,
.calendar-days .selected-day:hover {
  color: #ffffff;
  background: rgba(8, 88, 104, 0.58);
  box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
}

.preferred-time {
  margin-top: 56px;
  padding-left: calc((100% - 386px) / 2);
  width: calc(386px + ((100% - 386px) / 2));
}

.preferred-time legend {
  margin-bottom: 10px;
}

.contact-form {
  display: grid;
  gap: 15px;
  padding: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label,
fieldset {
  display: grid;
  gap: 8px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

label span,
legend {
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  padding: 13px 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--soft);
  border-radius: 0;
  font: inherit;
}

textarea {
  resize: vertical;
}

.booking-page textarea {
  min-height: 72px;
  font-size: 12.6px;
}

.founder-page {
  position: relative;
  display: grid;
  grid-template-columns: minmax(380px, 0.82fr) minmax(560px, 0.96fr);
  min-height: 0;
  gap: clamp(34px, 4.2vw, 68px);
  align-items: center;
  padding: 82px 8.2vw 118px;
  background: #000;
  overflow: hidden;
}

.founder-media {
  align-self: end;
  justify-self: end;
  display: grid;
  justify-items: center;
  gap: 12px;
  transform: translate(18px, -8px);
}

.founder-image {
  width: min(100%, 540px);
  height: auto;
  max-height: 720px;
  margin: 0;
  object-fit: contain;
  filter: saturate(0.94) contrast(1.02);
}

.founder-copy {
  align-self: center;
  max-width: 720px;
  padding-bottom: 0;
  transform: none;
}

.founder-copy > p {
  margin: 0 0 22px;
  color: #19c5df;
  font-size: clamp(13px, 0.96vw, 16px);
  font-weight: 400;
  letter-spacing: 0.36em;
  line-height: 1;
  text-transform: uppercase;
  transform: translateX(3px);
}

.founder-copy h2 {
  margin: 0 0 42px;
  color: #fff;
  font-size: clamp(40px, 3.8vw, 58px);
  font-weight: 100;
  line-height: 1.05;
}

.founder-copy h2 span {
  color: #16bdd8;
}

.founder-page .founder-logo {
  right: 72px;
  bottom: 46px;
  width: 92px;
}

.founder-text {
  display: grid;
  gap: 23px;
  max-width: 640px;
}

.founder-text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(16.5px, 1.16vw, 18.5px);
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.58;
}

input:focus,
textarea:focus {
  outline: 1px solid var(--teal);
  border-color: var(--teal);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease, border-color 260ms ease, box-shadow 260ms ease, background 260ms ease;
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero .reveal-on-scroll {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
  }

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}

.slot-list {
  display: flex;
  justify-content: space-between;
  gap: 0;
  width: 386px;
}

.slot {
  min-width: 74px;
  padding: 10px 14px;
  color: #fff;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
}

.slot.active {
  color: #ffffff;
  background: rgba(8, 88, 104, 0.58);
  border-color: transparent;
  box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.2);
}

.contact {
  align-items: center;
}

.contact img {
  width: min(360px, 90%);
}

.text-link {
  display: inline-block;
  margin-top: 28px;
  color: #fff;
  font-size: 24px;
  text-decoration: none;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 28px 0 44px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: grid;
    gap: 6px;
    justify-self: end;
    width: 42px;
    height: 42px;
    padding: 11px;
    background: transparent;
    border: 1px solid var(--soft);
    border-radius: 50%;
  }

  .menu-toggle span {
    display: block;
    height: 1px;
    background: #fff;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 28px;
    display: none;
    min-width: 220px;
    padding: 18px;
    background: rgba(2, 4, 4, 0.96);
    border: 1px solid var(--line);
  }

  .site-nav.open {
    display: grid;
    gap: 16px;
  }

  .hero,
  .intro,
  .statement,
  .booking,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-bottom: 144px;
    padding-top: 0;
  }

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

  .hero-logo-wrap {
    top: 54px;
    right: 34px;
    width: min(19vw, 138px);
  }

  .about-card-grid {
    grid-template-columns: 1fr;
  }

  .about-heading {
    padding-top: 90px;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .services-list {
    gap: 52px;
  }

  .perspective-texture {
    padding: 72px 22px;
  }

  .booking-layout {
    grid-template-columns: 1fr;
  }

  .founder-page {
    grid-template-columns: 1fr;
    gap: 46px;
    padding: 88px 8.2vw 120px;
  }

  .founder-media {
    width: min(440px, 82vw);
    transform: none;
  }
}

@media (max-width: 640px) {
  .site-header,
  .site-footer {
    width: calc(100% - 28px);
  }

  .panel {
    width: calc(100% - 28px);
  }

  .hero.panel {
    width: 100%;
    padding-left: 28px;
  }

  .hero-banner {
    grid-template-columns: 1fr;
    gap: 16px;
    min-height: 132px;
    padding-inline: 28px;
  }

  .hero-logo-wrap {
    display: none;
  }

  .about-heading {
    padding: 72px 22px 28px;
  }

  .about-heading h2 {
    font-size: 44px;
  }

  .about-texture {
    padding: 42px 22px 108px;
  }

  .about-card {
    min-height: auto;
  }

  .site-header {
    padding-inline: 0;
  }

  .lang-button {
    min-width: 38px;
    height: 30px;
    padding: 0 12px;
  }

  .hero,
  .intro,
  .services,
  .statement,
  .booking,
  .contact {
    padding: 64px 0;
  }

  h1 {
    font-size: 56px;
  }

  .hero-copy,
  .large-text,
  .statement p,
  .booking-copy p {
    font-size: 18px;
  }

  .section-number {
    font-size: 78px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 22px;
  }

  .site-footer {
    display: grid;
    gap: 8px;
  }

  .services-page {
    padding: 72px 22px 110px;
  }

  .services-heading h2 {
    font-size: 42px;
  }

  .service-title {
    grid-template-columns: 26px 1fr;
  }

  .service-items {
    grid-template-columns: 1fr;
  }

  .perspective-top {
    min-height: 300px;
  }

  .perspective-texture {
    padding: 72px 22px;
  }

  .perspective-content h3 {
    font-size: 42px;
  }

  .perspective-button {
    min-width: 220px;
  }

  .perspective-logo {
    width: 118px;
  }

  .booking-page {
    padding: 72px 22px 96px;
  }

  .booking-heading h2 {
    font-size: 40px;
  }

  .booking-calendar-panel,
  .contact-form {
    padding: 22px;
  }

  .calendar-grid {
    gap: 5px;
  }

  .founder-page {
    padding: 72px 22px 116px;
  }

  .founder-copy h2 {
    font-size: 38px;
  }

  .founder-media {
    width: min(360px, 86vw);
    transform: none;
  }

  .founder-image {
    width: 100%;
    max-width: none;
    height: auto;
    position: static;
    top: auto;
  }

  .founder-logo {
    width: 118px;
  }
}
