:root {
  --bg: #f5f5f4;
  --bg-soft: #eeeeed;
  --panel: #ffffff;
  --ink: #0d0d0d;
  --text: #2f2f2f;
  --muted: #777777;
  --line: rgba(13, 13, 13, 0.1);
  --black: #050505;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
  --radius: 18px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding-bottom: calc(82px + env(safe-area-inset-bottom));
  color: var(--ink);
  background: var(--bg);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 1000;
  padding: 10px 14px;
  color: #fff;
  background: var(--black);
  border-radius: 999px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  min-height: 58px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  margin: 0 auto;
  padding: 8px 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 112px;
  height: 40px;
  object-fit: contain;
}

.brand strong,
.brand small,
.site-nav,
.header-booking {
  display: none;
}

.hero,
.section,
.brands {
  width: min(100% - 28px, 1120px);
  margin-inline: auto;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 545px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--black);
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--black);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.03);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.12) 40%, rgba(0, 0, 0, 0.55)),
    radial-gradient(circle at 50% 44%, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.46) 74%);
}

.hero-panel {
  width: min(100% - 34px, 690px);
  padding: 48px 0 72px;
  text-align: center;
}

.kicker {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-panel .kicker {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.78);
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.02em;
}

h1 {
  margin: 0 auto 18px;
  font-size: clamp(3.35rem, 14.2vw, 5.6rem);
  line-height: 0.9;
}

h1 em {
  display: block;
  font-style: italic;
  font-weight: 500;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2.25rem, 9vw, 3.7rem);
  line-height: 0.98;
}

h3 {
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.08;
}

.hero-panel > p {
  width: min(100%, 520px);
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.84);
}

.section-head > p,
.studio-copy > p,
.booking-section p,
.service-card p,
.info-cards p,
.contact-list p {
  color: var(--text);
}

.hero-actions {
  display: none;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
}

.btn-dark {
  color: #fff;
  background: var(--black);
  border-color: var(--black);
}

.btn-light {
  color: var(--ink);
  background: #fff;
}

.btn-glass {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.btn-wide {
  width: 100%;
}

.hero-categories {
  display: none;
}

.trust-strip {
  width: min(100% - 28px, 1120px);
  display: grid;
  gap: 8px;
  margin: 16px auto 0;
}

.trust-strip span {
  padding: 11px 14px;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
}

.section,
.brands {
  padding: 60px 0;
}

.section-head {
  margin-bottom: 26px;
}

.service-grid {
  display: grid;
  gap: 16px;
}

.service-card {
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.045);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.075);
}

.service-card img {
  width: 100%;
  height: 218px;
  object-fit: cover;
}

.service-card div {
  padding: 18px;
}

.service-card span,
.info-cards span,
.contact-list span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.services .btn {
  margin-top: 20px;
}

.studio {
  display: grid;
  gap: 24px;
  padding-top: 28px;
}

.studio-image {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.studio-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.info-cards,
.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.info-cards article,
.contact-list article {
  padding: 18px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.info-cards strong {
  display: block;
  margin-bottom: 12px;
  line-height: 1.35;
}

.info-cards a,
.contact-list a {
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.brands {
  text-align: center;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.42), transparent);
}

.brands > div {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.brands span {
  padding: 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 600;
}

.booking-section {
  position: relative;
  width: 100%;
  min-height: 360px;
  display: grid;
  place-items: center;
  margin: 34px 0 54px;
  padding: 72px 18px;
  overflow: hidden;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.68)),
    url("assets/service-naegel.jpg") center / cover;
}

.booking-section > div {
  width: min(100%, 650px);
}

.booking-section .kicker,
.booking-section p {
  color: rgba(255, 255, 255, 0.78);
}

.booking-section .btn {
  width: auto;
  min-width: 220px;
  margin-top: 12px;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 7px;
  padding: 22px 20px 88px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--black);
}

.footer strong {
  color: #fff;
  font-family: var(--serif);
  font-size: 1.45rem;
}

.footer nav {
  grid-column: 2;
  grid-row: 1 / span 3;
  display: grid;
  gap: 5px;
  justify-items: start;
}

.footer a,
.footer span,
.footer p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
}

.footer p {
  grid-column: 1;
  margin: 0;
}

.mobile-booking-bar {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: calc(10px + env(safe-area-inset-bottom));
  z-index: 60;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 8px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.mobile-booking-bar a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  font-size: 0.86rem;
  font-weight: 800;
}

.mobile-phone {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}

.mobile-booking {
  color: #fff;
  background: var(--black);
}

@media (min-width: 720px) {
  body {
    padding-bottom: 0;
  }

  .site-header {
    width: min(100% - 36px, 1120px);
    grid-template-columns: auto 1fr auto;
    min-height: 58px;
    padding: 8px 8px 8px 18px;
    border: 1px solid var(--line);
    border-top: 0;
    border-radius: 0 0 24px 24px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
  }

  .brand img {
    width: 136px;
  }

  .site-nav {
    display: flex;
    justify-content: center;
    gap: 26px;
  }

  .site-nav a {
    color: var(--text);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .header-booking {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    color: #fff;
    background: var(--black);
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 800;
  }

  .hero {
    min-height: 590px;
    margin-top: -58px;
    padding-top: 58px;
  }

  .hero-panel {
    padding: 88px 0 108px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
  }

  .hero-categories {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    background: rgba(0, 0, 0, 0.48);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .hero-categories a {
    padding: 16px 22px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }

  .trust-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-grid,
  .info-cards,
  .contact-list,
  .brands > div {
    grid-template-columns: repeat(2, 1fr);
  }

  .mobile-booking-bar {
    display: none;
  }

  .footer {
    padding: 22px 20px;
  }
}

@media (min-width: 1020px) {
  h1 {
    font-size: 5.65rem;
  }

  .service-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .studio {
    grid-template-columns: 0.95fr 1fr;
    align-items: center;
  }

  .studio-image {
    grid-row: 1 / span 2;
  }

  .info-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .brands > div {
    grid-template-columns: repeat(4, 1fr);
  }

  .contact-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 370px) {
  .site-header {
    padding-inline: 14px;
  }

  .brand img {
    width: 98px;
  }

  h1 {
    font-size: 3rem;
  }
}

@media (max-width: 719px) {
  .services {
    padding-top: 86px;
  }
}

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

  .service-card {
    transition: none;
  }
}
