/* Airframe — bright white editorial with glass chrome */

:root {
  --ink: #0f1218;
  --charcoal: #1a1f28;
  --paper: #ffffff;
  --snow: #f7f8fa;
  --cloud: #eef0f4;
  --mist: #6b7280;
  --line: rgba(15, 18, 24, 0.08);
  --line-strong: rgba(15, 18, 24, 0.14);
  --accent: #1a1f28;
  --accent-soft: rgba(15, 18, 24, 0.06);
  --glass-bg: rgba(255, 255, 255, 0.62);
  --glass-bg-strong: rgba(255, 255, 255, 0.78);
  --glass-border: rgba(255, 255, 255, 0.92);
  --glass-edge: rgba(15, 18, 24, 0.1);
  --glass-highlight: inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -1px 0 rgba(15, 18, 24, 0.03);
  --glass-shadow:
    0 1px 2px rgba(15, 18, 24, 0.05),
    0 10px 28px rgba(15, 18, 24, 0.09),
    0 3px 8px rgba(15, 18, 24, 0.05);
  --glass-shadow-hover:
    0 2px 4px rgba(15, 18, 24, 0.06),
    0 16px 40px rgba(15, 18, 24, 0.13),
    0 5px 12px rgba(15, 18, 24, 0.07);
  --font-display: "Syne", sans-serif;
  --font-body: "Outfit", sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --space: clamp(1.25rem, 4vw, 3rem);
  --max: 68rem;
  --max-narrow: 40rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: 0.6rem 1rem;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  font-size: 0.875rem;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

/* ——— Shared glass surface ——— */

.glass,
.nav__book,
.nav__toggle,
.btn--book,
.btn--primary,
.btn--ghost {
  backdrop-filter: blur(18px) saturate(1.35);
  -webkit-backdrop-filter: blur(18px) saturate(1.35);
}

/* ——— Header ——— */

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  padding: 1rem var(--space);
}

.nav {
  display: flex;
  align-items: center;
  max-width: 90rem;
  margin: 0 auto;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  position: relative;
  width: 100%;
}

.nav__logo {
  display: block;
  flex-shrink: 0;
  width: clamp(2.5rem, 4.5vw, 3rem);
  text-decoration: none;
  opacity: 0.92;
  transition: opacity 0.25s ease;
  z-index: 2;
}

.nav__logo img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
}

.nav__logo:hover {
  opacity: 1;
}

.nav__toggle {
  display: none;
  position: relative;
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  margin-left: auto;
  padding: 0;
  border: 1px solid var(--glass-edge);
  border-radius: 0.65rem;
  background: var(--glass-bg);
  box-shadow: var(--glass-shadow), var(--glass-highlight);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
}

.nav__toggle-bar {
  display: block;
  width: 1.1rem;
  height: 1.5px;
  background: var(--ink);
  transition:
    transform 0.25s var(--ease-out),
    opacity 0.2s ease;
}

.nav.is-open .nav__toggle-bar:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.nav.is-open .nav__toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav.is-open .nav__toggle-bar:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.nav__links {
  flex: 1;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  margin: 0;
  padding: 0.35rem 0.5rem;
  min-width: 0;
  border-radius: 999px;
  border: 1px solid var(--glass-edge);
  background: var(--glass-bg);
  box-shadow: var(--glass-shadow), var(--glass-highlight);
  backdrop-filter: blur(18px) saturate(1.35);
  -webkit-backdrop-filter: blur(18px) saturate(1.35);
}

.nav__links li {
  flex: 1 1 0;
  text-align: center;
}

.nav__links a {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: rgba(15, 18, 24, 0.62);
  transition: color 0.25s ease;
}

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

.nav__book {
  padding: 0.45rem 0.95rem !important;
  color: var(--ink) !important;
  background: var(--glass-bg-strong) !important;
  border: 1px solid var(--glass-edge) !important;
  border-radius: 999px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  box-shadow: var(--glass-shadow), var(--glass-highlight);
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s var(--ease-out) !important;
}

.nav__book:hover {
  background: rgba(255, 255, 255, 0.9) !important;
  color: var(--ink) !important;
  box-shadow: var(--glass-shadow-hover), var(--glass-highlight);
  transform: translateY(-1px);
}

@media (max-width: 720px) {
  .nav__toggle {
    display: flex;
  }

  .nav__links {
    display: none;
    position: absolute;
    top: calc(100% + 0.65rem);
    left: 0;
    right: 0;
    width: auto;
    flex: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 0.5rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--glass-edge);
    box-shadow: var(--glass-shadow-hover), var(--glass-highlight);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
  }

  .nav.is-open .nav__links {
    display: flex;
  }

  .nav__links li {
    flex: none;
    text-align: left;
  }

  .nav__links a {
    display: block;
    padding: 0.85rem 1rem;
    font-size: 0.9375rem;
  }

  .nav__book {
    display: block;
    text-align: center;
    margin: 0.35rem 0.5rem 0.5rem;
  }
}

/* ——— Hero ——— */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}

.hero__visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 90% 70% at 70% 20%, rgba(180, 200, 230, 0.18), transparent 55%),
    radial-gradient(ellipse 55% 45% at 12% 85%, rgba(210, 220, 235, 0.35), transparent 50%),
    linear-gradient(165deg, #ffffff 0%, #f4f6f9 48%, #e9edf3 100%);
}

.hero__image,
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.08);
  transition: opacity 0.8s var(--ease-out);
}

.hero__visual.has-media .hero__image.is-ready,
.hero__visual.has-media .hero__video.is-ready {
  opacity: 1;
  visibility: visible;
  animation: hero-drift 28s var(--ease-out) forwards;
}

.hero__visual.has-video .hero__image {
  opacity: 0;
  visibility: hidden;
  animation: none;
}

.hero__placeholder {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 18vh;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.hero__visual.has-media .hero__placeholder {
  opacity: 0;
}

@keyframes hero-drift {
  from {
    transform: scale(1.08) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1) translate3d(0, -1.5%, 0);
  }
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.42) 0%,
      rgba(255, 255, 255, 0.18) 28%,
      rgba(255, 255, 255, 0.48) 58%,
      rgba(255, 255, 255, 0.82) 78%,
      rgba(255, 255, 255, 0.94) 100%
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.28) 0%,
      transparent 42%,
      rgba(255, 255, 255, 0.22) 100%
    ),
    radial-gradient(
      ellipse 70% 55% at 50% 72%,
      rgba(255, 255, 255, 0.55) 0%,
      transparent 70%
    );
}

.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.08;
  pointer-events: none;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
}

.hero__frame {
  position: absolute;
  inset: 1.25rem;
  z-index: 1;
  border: 1px solid rgba(15, 18, 24, 0.06);
  pointer-events: none;
}

@media (max-width: 700px) {
  .hero__frame {
    inset: 0.75rem;
  }
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 90rem;
  margin: 0 auto;
  padding: clamp(5.5rem, 12vh, 8rem) var(--space) clamp(3rem, 8vh, 5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero__brand {
  margin: 0 0 1.25rem;
  opacity: 0;
  transform: translateY(1.75rem);
  animation: rise-in 1.15s var(--ease-out) 0.15s forwards;
}

.hero__logo {
  width: min(18rem, 72vw);
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 10px 28px rgba(15, 18, 24, 0.1));
}

@media (min-width: 800px) {
  .hero__logo {
    width: min(22rem, 38vw);
  }
}

.hero__headline {
  margin: 0 0 0.75rem;
  max-width: 22ch;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  opacity: 0;
  transform: translateY(1.25rem);
  animation: rise-in 1s var(--ease-out) 0.4s forwards;
}

.hero__categories {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.55rem;
  margin: 0 0 1.75rem;
  max-width: 36rem;
  font-size: clamp(0.8125rem, 1.2vw, 0.9375rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(15, 18, 24, 0.55);
  opacity: 0;
  transform: translateY(1.25rem);
  animation: rise-in 1s var(--ease-out) 0.55s forwards;
}

.hero__categories [aria-hidden="true"] {
  color: rgba(15, 18, 24, 0.28);
  opacity: 1;
}

.hero__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  opacity: 0;
  transform: translateY(1.25rem);
  animation: rise-in 1s var(--ease-out) 0.7s forwards;
}

.hero__offer-price {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.1;
}

@keyframes rise-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ——— Buttons ——— */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 999px;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s var(--ease-out);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--glass-bg-strong);
  color: var(--ink);
  border-color: var(--glass-edge);
  box-shadow: var(--glass-shadow), var(--glass-highlight);
}

.btn--primary:hover {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--glass-shadow-hover), var(--glass-highlight);
}

/* Primary booking CTA — frosted glass, unmistakably the action */
.btn--book {
  background: var(--glass-bg-strong);
  color: var(--ink);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.95rem 1.55rem;
  border-color: var(--glass-edge);
  box-shadow: var(--glass-shadow), var(--glass-highlight);
}

.btn--book:hover {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--glass-shadow-hover), var(--glass-highlight);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.35);
  color: var(--charcoal);
  border-color: var(--glass-edge);
  box-shadow: var(--glass-shadow), var(--glass-highlight);
}

.btn--ghost:hover {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--glass-shadow-hover), var(--glass-highlight);
}

/* ——— Sections ——— */

.section {
  position: relative;
  padding: clamp(4.5rem, 12vw, 8.5rem) var(--space);
  background: var(--paper);
}

.section--craft {
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(180, 200, 230, 0.12), transparent 55%),
    linear-gradient(180deg, #f7f8fa 0%, var(--paper) 100%);
}

.section--work {
  background: var(--paper);
}

.section--reviews {
  background:
    radial-gradient(ellipse 75% 55% at 20% 0%, rgba(180, 200, 230, 0.1), transparent 55%),
    linear-gradient(180deg, var(--snow) 0%, var(--paper) 100%);
}

.section--contact {
  background:
    radial-gradient(ellipse 70% 80% at 80% 100%, rgba(180, 200, 230, 0.14), transparent 50%),
    var(--snow);
}

.section__inner {
  max-width: var(--max-narrow);
  margin: 0 auto;
}

.section__inner--wide {
  max-width: var(--max);
}

.section__eyebrow {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(15, 18, 24, 0.45);
}

.section__title {
  margin: 0 0 1.15rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.85rem, 4.2vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.section__lead {
  margin: 0 0 2.75rem;
  max-width: 36rem;
  font-weight: 300;
  font-size: 1.0625rem;
  color: var(--mist);
}

.section__cta {
  margin-top: 2.25rem;
}

/* ——— Reviews ——— */

.reviews-grid {
  display: grid;
  gap: 1.15rem;
}

@media (min-width: 800px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.review-card {
  margin: 0;
  padding: 1.5rem 1.4rem 1.45rem;
  border-radius: 1.15rem;
  border: 1px solid var(--glass-edge);
  background: var(--glass-bg);
  box-shadow: var(--glass-shadow), var(--glass-highlight);
  backdrop-filter: blur(18px) saturate(1.35);
  -webkit-backdrop-filter: blur(18px) saturate(1.35);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-height: 100%;
}

.review-card__stars {
  margin: 0;
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  color: #fbbc04;
  line-height: 1;
}

.review-card__quote {
  margin: 0;
  flex: 1;
}

.review-card__quote p {
  margin: 0;
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--charcoal);
}

.review-card__author {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(15, 18, 24, 0.5);
}

.reviews-cta {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

/* Glass at rest; Google blue on hover */
.reviews-cta .btn--book:hover,
.reviews-cta .btn--book:focus-visible {
  background: #4285f4;
  color: #fff;
  border-color: #4285f4;
  box-shadow:
    0 2px 4px rgba(66, 133, 244, 0.25),
    0 12px 28px rgba(66, 133, 244, 0.35);
}

/* ——— Work ——— */

.work-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 800px) {
  .work-grid {
    grid-template-columns: 1.15fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.35rem;
  }

  .work-piece:first-child {
    grid-row: 1 / span 2;
  }

  .work-piece:first-child .work-piece__slot {
    height: 100%;
    min-height: 32rem;
    aspect-ratio: auto;
  }

  .work-piece:first-child img {
    height: 100%;
    min-height: 32rem;
    aspect-ratio: auto;
  }
}

.work-piece {
  position: relative;
  display: block;
  overflow: hidden;
  text-decoration: none;
  background: var(--cloud);
  isolation: isolate;
  border: 1px solid var(--line);
  box-shadow: 0 8px 28px rgba(15, 18, 24, 0.05);
}

.work-piece__slot {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 70% at 50% 40%, rgba(180, 200, 230, 0.22), transparent 60%),
    linear-gradient(160deg, #f4f6f9 0%, #e8ecf2 55%, #dde3eb 100%);
}

.work-piece__slot .media-coming {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: opacity 0.4s ease;
}

.work-piece.has-media .work-piece__slot .media-coming {
  opacity: 0;
  pointer-events: none;
}

.work-piece img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  opacity: 0;
  transition:
    transform 1.1s var(--ease-out),
    filter 0.6s ease,
    opacity 0.6s ease;
  filter: saturate(0.95) contrast(1.02);
}

.work-piece.has-media img.is-ready {
  opacity: 1;
}

.work-piece:hover img.is-ready {
  transform: scale(1.04);
  filter: saturate(1.05) contrast(1.03);
}

.work-piece::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(255, 255, 255, 0.72) 100%
  );
  pointer-events: none;
}

.work-piece__meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
}

.work-piece__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.work-piece__tag {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(15, 18, 24, 0.5);
}

/* ——— Contact ——— */

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

.contact-layout {
  display: grid;
  gap: clamp(2.5rem, 6vw, 4.5rem);
  align-items: start;
  margin-top: 0.5rem;
}

@media (min-width: 860px) {
  .contact-layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: clamp(2.75rem, 7vw, 5.5rem);
  }
}

.contact-form {
  display: grid;
  gap: 0.95rem;
  margin: 0;
  min-width: 0;
}

.contact-form__field {
  display: grid;
  gap: 0;
  position: relative;
}

.contact-form__input {
  width: 100%;
  margin: 0;
  padding: 0.95rem 1.1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--glass-edge);
  border-radius: 0.65rem;
  box-shadow: var(--glass-highlight), 0 1px 2px rgba(15, 18, 24, 0.04);
  backdrop-filter: blur(14px) saturate(1.25);
  -webkit-backdrop-filter: blur(14px) saturate(1.25);
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.contact-form__input::placeholder {
  color: rgba(107, 114, 128, 0.72);
}

.contact-form__input:focus {
  border-color: rgba(15, 18, 24, 0.28);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--glass-shadow), var(--glass-highlight);
}

.contact-form__input--area {
  resize: vertical;
  min-height: 10.5rem;
  line-height: 1.5;
}

.contact-form__submit {
  justify-self: center;
  margin-top: 0.65rem;
  min-width: 8.5rem;
  padding: 0.85rem 2.4rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--charcoal);
  border: 1px solid rgba(15, 18, 24, 0.2);
  border-radius: 0.55rem;
  box-shadow:
    0 1px 2px rgba(15, 18, 24, 0.08),
    0 8px 20px rgba(15, 18, 24, 0.12);
  cursor: pointer;
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s var(--ease-out);
}

.contact-form__submit:hover {
  background: var(--ink);
  transform: translateY(-1px);
  box-shadow:
    0 2px 4px rgba(15, 18, 24, 0.1),
    0 12px 28px rgba(15, 18, 24, 0.16);
}

.contact-form__status {
  margin: 0;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--mist);
}

.contact-form__status.is-error {
  color: #8a2f2f;
}

.contact-info {
  display: grid;
  gap: 1.75rem;
  padding-top: 0.15rem;
  min-width: 0;
}

.contact-info__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.95rem;
  align-items: start;
}

.contact-info__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  color: rgba(15, 18, 24, 0.45);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--glass-edge);
  border-radius: 999px;
  box-shadow: var(--glass-highlight);
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
}

.contact-info__body {
  display: grid;
  gap: 0.2rem;
  padding-top: 0.2rem;
}

.contact-info__label {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
}

.contact-info__text {
  margin: 0;
  font-weight: 400;
  font-size: 0.98rem;
  line-height: 1.45;
  color: var(--mist);
}

.contact-info__text a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.contact-info__text a:hover {
  border-bottom-color: rgba(15, 18, 24, 0.28);
}

.inline-code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.85em;
  color: rgba(15, 18, 24, 0.65);
  background: rgba(15, 18, 24, 0.04);
  padding: 0.1em 0.35em;
  border-radius: 0.25rem;
}

.media-coming {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(15, 18, 24, 0.35);
}

/* ——— Site footer ——— */

.site-footer {
  padding: 3rem var(--space) 2.5rem;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.site-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 0.5rem;
}

.site-footer__logo {
  width: 7.5rem;
  height: auto;
  margin-bottom: 0.35rem;
  opacity: 0.9;
}

.site-footer__note {
  margin: 0;
  font-weight: 300;
  color: var(--mist);
  font-size: 0.95rem;
}

.site-footer__copy {
  margin: 1rem 0 0;
  font-size: 0.8rem;
  color: rgba(107, 114, 128, 0.75);
}

/* ——— Square booking modal ——— */

body.is-booking-open {
  overflow: hidden;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(0.75rem, 3vw, 1.5rem);
}

.booking-modal[hidden] {
  display: none;
}

.booking-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 18, 24, 0.42);
  backdrop-filter: blur(6px) saturate(1.1);
  -webkit-backdrop-filter: blur(6px) saturate(1.1);
  border: 0;
  cursor: pointer;
}

.booking-modal__panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(90vw, 860px);
  height: min(88svh, 820px);
  max-height: 92svh;
  overflow: hidden;
  border-radius: 1.15rem;
  border: 1px solid var(--glass-edge);
  background: rgba(255, 255, 255, 0.88);
  box-shadow:
    var(--glass-shadow-hover),
    var(--glass-highlight),
    0 24px 64px rgba(15, 18, 24, 0.22);
  backdrop-filter: blur(22px) saturate(1.4);
  -webkit-backdrop-filter: blur(22px) saturate(1.4);
}

.booking-modal__chrome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-shrink: 0;
  padding: 0.85rem 1rem 0.85rem 1.25rem;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.booking-modal__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.booking-modal__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  padding: 0;
  border: 1px solid var(--glass-edge);
  border-radius: 0.65rem;
  background: var(--glass-bg);
  box-shadow: var(--glass-highlight);
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s var(--ease-out);
}

.booking-modal__close:hover {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--glass-shadow), var(--glass-highlight);
  transform: translateY(-1px);
}

.booking-modal__body {
  position: relative;
  flex: 1;
  min-height: 0;
  background: rgba(247, 248, 250, 0.65);
}

.booking-modal__frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
}

.booking-modal__fallback {
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.85rem;
  z-index: 2;
  display: grid;
  gap: 0.75rem;
  justify-items: center;
  padding: 1rem 1.15rem;
  text-align: center;
  border-radius: 0.9rem;
  border: 1px solid var(--glass-edge);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--glass-shadow), var(--glass-highlight);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
}

.booking-modal__fallback[hidden] {
  display: none;
}

.booking-modal__fallback p {
  margin: 0;
  max-width: 34rem;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.45;
  color: var(--mist);
}

@media (max-width: 640px) {
  .booking-modal {
    padding: 0.5rem;
  }

  .booking-modal__panel {
    width: 100%;
    height: min(94svh, 100%);
    border-radius: 0.9rem;
  }
}

/* ——— GTS Media House credit footer ——— */

.gts-credit {
  padding: 1rem 1.5rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  font-family: "Space Grotesk", system-ui, sans-serif;
}

.gts-credit__line {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin: 0;
}

.gts-credit__label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b7280;
}

.gts-credit__brand {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #111827;
  text-decoration: none;
  transition: color 0.2s ease;
}

.gts-credit__brand:hover {
  color: #7a2030;
}

/* ——— Reveal motion ——— */

.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition:
    opacity 0.9s var(--ease-out),
    transform 0.9s var(--ease-out);
}

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

.work-piece.reveal:nth-child(2) {
  transition-delay: 0.08s;
}

.work-piece.reveal:nth-child(3) {
  transition-delay: 0.16s;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero__brand,
  .hero__headline,
  .hero__categories,
  .hero__cta,
  .reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .hero__visual.has-media .hero__image.is-ready,
  .hero__visual.has-media .hero__video.is-ready {
    animation: none !important;
    transform: none !important;
  }

  .work-piece img {
    transition: none;
  }
}
