/* =========================
   VARIABLES
========================= */

:root {
  --bg: #11110f;
  --bg-soft: #171715;
  --bg-elevated: #1d1d1a;
  --surface: rgba(255, 255, 255, 0.045);

  --text: #f2ede4;
  --text-soft: #b3aea5;
  --text-faint: #7d7972;

  --accent: #e6ceb1;
  --accent-text: #161411;

  --border: rgba(255, 255, 255, 0.12);
  --border-strong: rgba(255, 255, 255, 0.22);

  --header-bg: rgba(17, 17, 15, 0.78);

  --shadow:
    0 24px 80px rgba(0, 0, 0, 0.24);

  --serif:
    "Iowan Old Style",
    "Baskerville",
    "Times New Roman",
    serif;

  --sans:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Helvetica,
    Arial,
    sans-serif;

  --container: 1240px;
  --header-height: 84px;

  --transition: 220ms ease;
}


/* =========================
   LIGHT THEME
========================= */

body.light-theme {
  --bg: #f1eee7;
  --bg-soft: #e8e4db;
  --bg-elevated: #f7f4ee;

  --surface: rgba(25, 23, 20, 0.035);

  --text: #181714;
  --text-soft: #625f59;
  --text-faint: #8f8a81;

  --accent: #a78565;
  --accent-text: #ffffff;

  --border: rgba(21, 19, 16, 0.13);
  --border-strong: rgba(21, 19, 16, 0.24);

  --header-bg: rgba(241, 238, 231, 0.82);

  --shadow:
    0 24px 70px rgba(65, 54, 42, 0.10);
}


/* =========================
   RESET
========================= */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;

  min-width: 320px;

  overflow-x: hidden;

  background: var(--bg);

  color: var(--text);

  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;

  -webkit-font-smoothing: antialiased;

  transition:
    background 0.35s ease,
    color 0.35s ease;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

::selection {
  background: var(--accent);
  color: var(--accent-text);
}


/* =========================
   DECORATION
========================= */

.site-noise {
  position: fixed;
  z-index: 10000;

  inset: 0;

  pointer-events: none;

  opacity: 0.03;

  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}


/* =========================
   GLOBAL
========================= */

.container {
  width: min(
    calc(100% - 48px),
    var(--container)
  );

  margin-inline: auto;
}

.section {
  position: relative;

  padding: 140px 0;
}

.eyebrow {
  margin: 0 0 22px;

  color: var(--text-soft);

  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.24em;
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;

  letter-spacing: -0.035em;
}

h2 {
  margin-bottom: 0;

  max-width: 720px;

  font-size: clamp(48px, 5vw, 80px);
  line-height: 0.98;
}

h2 em,
h1 em {
  color: var(--accent);

  font-weight: 400;
}

.section-heading {
  display: grid;

  grid-template-columns:
    minmax(0, 1.5fr)
    minmax(260px, 0.55fr);

  gap: 70px;

  align-items: end;

  margin-bottom: 62px;
}

.section-heading__text {
  margin: 0;

  color: var(--text-soft);

  line-height: 1.75;
}


/* =========================
   BUTTON
========================= */

.button {
  min-height: 52px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  padding: 0 28px;

  border: 1px solid var(--accent);

  background: var(--accent);

  color: var(--accent-text);

  font-size: 13px;
  font-weight: 500;

  transition:
    transform var(--transition),
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
}

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

.button:active {
  transform: translateY(0);
}

.button--small {
  min-height: 44px;

  padding-inline: 22px;
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.45);

  background: transparent;

  color: #fff;
}

body.light-theme .button--ghost {
  border-color: rgba(255, 255, 255, 0.55);

  color: white;
}

.button--ghost:hover {
  background: white;
  border-color: white;

  color: #151411;
}

.button--full {
  width: 100%;
}


/* =========================
   HEADER
========================= */

.header {
  position: fixed;
  z-index: 1000;

  top: 0;
  left: 0;

  width: 100%;

  border-bottom: 1px solid transparent;

  transition:
    background var(--transition),
    border-color var(--transition),
    backdrop-filter var(--transition);
}

.header.is-scrolled {
  border-color: var(--border);

  background: var(--header-bg);

  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.header__inner {
  min-height: var(--header-height);

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 30px;
}

.brand {
  flex-shrink: 0;

  display: inline-flex;

  flex-direction: column;

  width: fit-content;
}

.brand__name {
  font-family: var(--serif);

  font-size: 20px;
  line-height: 1;

  letter-spacing: 0.24em;
}

.brand__caption {
  margin-top: 7px;

  padding-left: 2px;

  color: var(--text-soft);

  font-size: 7px;
  font-weight: 600;

  letter-spacing: 0.24em;
}

.hero .brand,
.header:not(.is-scrolled) .brand {
  color: #fff;
}

.header:not(.is-scrolled) .brand__caption {
  color: rgba(255, 255, 255, 0.62);
}

.desktop-nav {
  display: flex;

  align-items: center;

  gap: clamp(20px, 2.4vw, 38px);
}

.desktop-nav a {
  position: relative;

  color: var(--text-soft);

  font-size: 13px;

  transition: color var(--transition);
}

.header:not(.is-scrolled) .desktop-nav a {
  color: rgba(255, 255, 255, 0.74);
}

.desktop-nav a::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -6px;

  width: 100%;
  height: 1px;

  background: currentColor;

  transform: scaleX(0);
  transform-origin: right;

  transition: transform var(--transition);
}

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

.header:not(.is-scrolled) .desktop-nav a:hover {
  color: #fff;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header__actions {
  display: flex;

  align-items: center;

  gap: 10px;
}


/* =========================
   THEME TOGGLE
========================= */

.theme-toggle {
  width: 44px;
  height: 44px;

  display: grid;

  place-items: center;

  padding: 0;

  border: 1px solid var(--border);

  background: transparent;

  cursor: pointer;

  transition:
    border-color var(--transition),
    background var(--transition);
}

.header:not(.is-scrolled) .theme-toggle {
  border-color: rgba(255, 255, 255, 0.25);

  color: white;
}

.theme-toggle:hover {
  border-color: var(--border-strong);

  background: var(--surface);
}

.theme-toggle span {
  width: 17px;
  height: 17px;
}

.theme-toggle svg {
  width: 100%;
  height: 100%;

  fill: none;

  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.theme-toggle__sun {
  display: none;
}

body.light-theme .theme-toggle__sun {
  display: block;
}

body.light-theme .theme-toggle__moon {
  display: none;
}


/* =========================
   MENU
========================= */

.menu-toggle {
  display: none;

  width: 44px;
  height: 44px;

  padding: 0;

  border: none;

  background: transparent;

  cursor: pointer;
}

.menu-toggle span {
  display: block;

  width: 22px;
  height: 1px;

  margin: 6px auto;

  background: currentColor;

  transition:
    transform var(--transition),
    opacity var(--transition);
}

.header:not(.is-scrolled) .menu-toggle {
  color: white;
}

.menu-toggle.is-active span:first-child {
  transform:
    translateY(3.5px)
    rotate(45deg);
}

.menu-toggle.is-active span:last-child {
  transform:
    translateY(-3.5px)
    rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: -1;

  top: 0;
  right: 0;

  width: min(100%, 460px);
  height: 100dvh;

  padding-top: var(--header-height);

  background: var(--bg);

  visibility: hidden;
  opacity: 0;

  transform: translateX(100%);

  transition:
    transform 0.4s cubic-bezier(.22, .72, .15, 1),
    opacity 0.3s ease,
    visibility 0.4s;
}

.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;

  transform: translateX(0);
}

.mobile-menu__inner {
  height: 100%;

  display: flex;

  flex-direction: column;

  padding: 32px 24px 30px;
}

.mobile-menu__nav {
  display: flex;

  flex-direction: column;
}

.mobile-menu__nav a {
  padding: 17px 0;

  border-bottom: 1px solid var(--border);

  font-family: var(--serif);
  font-size: 35px;
  line-height: 1;
}

.mobile-menu .button {
  margin-top: 34px;
}

.mobile-menu__meta {
  display: flex;

  flex-direction: column;

  gap: 5px;

  margin-top: auto;

  color: var(--text-soft);

  font-size: 12px;
}


/* =========================
   HERO
========================= */

.hero {
  position: relative;

  min-height: 100svh;

  display: flex;

  align-items: flex-end;

  overflow: hidden;

  color: #fff;

  background: #0f0f0e;
}

.hero__background {
  position: absolute;

  inset: 0;
}

.hero__background img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: 64% center;

  transform: scale(1.01);
}

.hero__overlay {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(6, 6, 6, 0.91) 0%,
      rgba(9, 9, 8, 0.72) 39%,
      rgba(9, 9, 8, 0.15) 70%,
      rgba(9, 9, 8, 0.2) 100%
    ),
    linear-gradient(
      0deg,
      rgba(6, 6, 5, 0.65),
      transparent 42%
    );
}

.hero__inner {
  position: relative;
  z-index: 2;

  min-height: 100svh;

  display: grid;

  grid-template-columns:
    minmax(0, 1.2fr)
    minmax(320px, 0.8fr);

  align-items: end;

  gap: 50px;

  padding-top: calc(var(--header-height) + 80px);
  padding-bottom: 88px;
}

.hero__content {
  max-width: 740px;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.55);
}

.hero h1 {
  margin-bottom: 30px;

  font-size: clamp(68px, 7vw, 112px);
  line-height: 0.88;
}

.hero h1 span {
  display: block;

  color: #ead2b6;

  font-style: italic;
}

.hero__description {
  max-width: 500px;

  margin-bottom: 38px;

  color: rgba(255, 255, 255, 0.72);

  font-size: 16px;
  line-height: 1.7;
}

.hero__buttons {
  display: flex;

  flex-wrap: wrap;

  gap: 12px;
}

.hero__details {
  align-self: end;

  padding-bottom: 3px;
}

.hero-detail {
  display: grid;

  grid-template-columns: 48px 1fr;

  gap: 20px;

  padding: 18px 0;

  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-detail:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-detail span {
  color: rgba(255, 255, 255, 0.38);

  font-size: 10px;
  letter-spacing: 0.18em;
}

.hero-detail p {
  margin: 0;

  color: rgba(255, 255, 255, 0.78);

  font-size: 13px;
}

.scroll-hint {
  position: absolute;
  z-index: 3;

  right: 26px;
  bottom: 40px;

  display: flex;

  align-items: center;

  gap: 12px;

  transform: rotate(90deg);
  transform-origin: right center;

  color: rgba(255, 255, 255, 0.42);

  font-size: 9px;
  letter-spacing: 0.2em;
}

.scroll-hint i {
  width: 36px;
  height: 1px;

  background: currentColor;
}


/* =========================
   SERVICES
========================= */

.services {
  background: var(--bg);
}

.services-grid {
  display: grid;

  grid-template-columns: repeat(12, 1fr);

  gap: 12px;
}

.service-card {
  grid-column: span 4;

  overflow: hidden;

  border: 1px solid var(--border);

  background: var(--bg-soft);

  transition:
    transform 0.4s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);

  border-color: var(--border-strong);

  box-shadow: var(--shadow);
}

.service-card--large {
  grid-column: span 4;
}

.service-card__image {
  position: relative;

  height: 310px;

  overflow: hidden;

  background: var(--bg-elevated);
}

.service-card__image::after {
  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      180deg,
      transparent 60%,
      rgba(0, 0, 0, 0.16)
    );
}

.service-card__image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  filter: saturate(0.8);

  transition:
    transform 0.65s cubic-bezier(.2, .7, .2, 1),
    filter 0.4s ease;
}

.service-card:hover .service-card__image img {
  transform: scale(1.035);

  filter: saturate(1);
}

.service-card__content {
  position: relative;

  padding: 24px;
}

.service-card__number {
  position: absolute;

  top: 26px;
  right: 24px;

  color: var(--text-faint);

  font-size: 9px;
  letter-spacing: 0.16em;
}

.service-card h3 {
  margin-bottom: 10px;

  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
}

.service-card p {
  min-height: 48px;

  margin-bottom: 28px;

  color: var(--text-soft);

  font-size: 12px;
  line-height: 1.65;
}

.service-card__footer {
  display: flex;

  align-items: center;
  justify-content: space-between;

  padding-top: 17px;

  border-top: 1px solid var(--border);
}

.service-card__footer strong {
  font-size: 12px;
  font-weight: 500;
}

.service-card__footer a {
  width: 32px;
  height: 32px;

  display: grid;

  place-items: center;

  border: 1px solid var(--border);

  font-size: 15px;

  transition:
    background var(--transition),
    color var(--transition),
    border var(--transition);
}

.service-card__footer a:hover {
  border-color: var(--accent);

  background: var(--accent);

  color: var(--accent-text);
}


/* =========================
   ABOUT
========================= */

.about {
  background: var(--bg-soft);
}

.about__grid {
  display: grid;

  grid-template-columns:
    minmax(0, 0.95fr)
    minmax(0, 1fr);

  gap: clamp(60px, 8vw, 120px);

  align-items: center;
}

.about__visual {
  position: relative;
}

.about__image {
  overflow: hidden;

  background: var(--bg-elevated);
}

.about__image--main {
  aspect-ratio: 4 / 5;
}

.about__image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  filter: saturate(0.72);
}

.about__badge {
  position: absolute;

  right: -30px;
  bottom: 40px;

  width: 160px;
  height: 160px;

  display: flex;

  flex-direction: column;

  justify-content: center;

  padding: 22px;

  background: var(--accent);

  color: var(--accent-text);
}

.about__badge strong {
  font-family: var(--serif);
  font-size: 50px;
  font-weight: 400;
  line-height: 1;
}

.about__badge span {
  margin-top: 9px;

  font-size: 10px;
  line-height: 1.4;
}

.about__content h2 {
  margin-bottom: 34px;
}

.about__lead {
  max-width: 570px;

  margin-bottom: 48px;

  color: var(--text-soft);

  font-size: 15px;
  line-height: 1.8;
}

.benefits {
  border-top: 1px solid var(--border);
}

.benefit {
  display: grid;

  grid-template-columns: 45px 1fr;

  gap: 25px;

  padding: 22px 0;

  border-bottom: 1px solid var(--border);
}

.benefit > span {
  padding-top: 4px;

  color: var(--text-faint);

  font-size: 9px;
  letter-spacing: 0.18em;
}

.benefit h3 {
  margin-bottom: 6px;

  font-size: 15px;
  font-weight: 500;
}

.benefit p {
  max-width: 440px;

  margin: 0;

  color: var(--text-soft);

  font-size: 12px;
  line-height: 1.6;
}


/* =========================
   GALLERY
========================= */

.gallery {
  display: grid;

  grid-template-columns:
    repeat(12, 1fr);

  grid-auto-rows: 280px;

  gap: 12px;
}

.gallery__item {
  grid-column: span 4;

  margin: 0;

  overflow: hidden;

  background: var(--bg-soft);
}

.gallery__item--tall {
  grid-row: span 2;
}

.gallery__item--wide {
  grid-column: span 8;
}

.gallery__item img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  filter: saturate(0.8);

  transition:
    transform 0.7s cubic-bezier(.2, .7, .2, 1),
    filter 0.4s ease;
}

.gallery__item:hover img {
  transform: scale(1.035);

  filter: saturate(1);
}


/* =========================
   MASTERS
========================= */

.masters {
  background: var(--bg-soft);
}

.masters-grid {
  display: grid;

  grid-template-columns: repeat(4, minmax(0, 1fr));

  gap: 12px;
}

.master-card__image {
  aspect-ratio: 3 / 4;

  overflow: hidden;

  background: var(--bg-elevated);
}

.master-card__image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  filter: saturate(0.65);

  transition:
    transform 0.65s ease,
    filter 0.4s ease;
}

.master-card:hover .master-card__image img {
  transform: scale(1.03);

  filter: saturate(0.92);
}

.master-card__info {
  display: flex;

  align-items: flex-start;
  justify-content: space-between;

  gap: 20px;

  padding: 20px 0;
}

.master-card h3 {
  margin-bottom: 5px;

  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
}

.master-card p,
.master-card__info > span {
  margin: 0;

  color: var(--text-soft);

  font-size: 10px;
  letter-spacing: 0.04em;
}

.master-card__info > span {
  padding-top: 5px;

  white-space: nowrap;
}


/* =========================
   REVIEWS
========================= */

.reviews__top {
  display: flex;

  align-items: flex-end;
  justify-content: space-between;

  gap: 70px;

  margin-bottom: 62px;
}

.reviews__rating {
  display: flex;

  align-items: center;

  gap: 20px;
}

.reviews__rating > strong {
  font-family: var(--serif);
  font-size: 58px;
  font-weight: 400;
  line-height: 1;
}

.reviews__rating div span {
  color: var(--accent);

  font-size: 13px;
  letter-spacing: 0.18em;
}

.reviews__rating p {
  margin: 4px 0 0;

  color: var(--text-soft);

  font-size: 10px;
}

.reviews-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.review-card {
  min-height: 360px;

  display: flex;

  flex-direction: column;

  padding: 34px;

  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.review-card__stars {
  margin-bottom: 50px;

  color: var(--accent);

  font-size: 10px;
  letter-spacing: 0.18em;
}

.review-card blockquote {
  margin: 0;

  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.45;
}

.review-card__author {
  display: flex;

  flex-direction: column;

  gap: 3px;

  margin-top: auto;
  padding-top: 35px;
}

.review-card__author strong {
  font-size: 11px;
  font-weight: 500;
}

.review-card__author span {
  color: var(--text-soft);

  font-size: 10px;
}


/* =========================
   BOOKING
========================= */

.booking {
  position: relative;

  min-height: 700px;

  display: flex;

  align-items: center;

  overflow: hidden;

  color: white;
}

.booking__background {
  position: absolute;

  inset: 0;
}

.booking__background img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center 55%;
}

.booking__overlay {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(7, 7, 6, 0.9),
      rgba(7, 7, 6, 0.55) 60%,
      rgba(7, 7, 6, 0.24)
    );
}

.booking__content {
  position: relative;
  z-index: 2;
}

.booking .eyebrow {
  color: rgba(255, 255, 255, 0.6);
}

.booking h2 {
  max-width: 800px;

  margin-bottom: 30px;

  font-size: clamp(56px, 6vw, 90px);
}

.booking h2 em {
  color: #ead2b6;
}

.booking__content > p:not(.eyebrow) {
  max-width: 510px;

  margin-bottom: 35px;

  color: rgba(255, 255, 255, 0.72);

  line-height: 1.75;
}

.button--whatsapp {
  gap: 14px;
}

.button--whatsapp svg {
  width: 18px;
  height: 18px;

  fill: none;

  stroke: currentColor;
  stroke-width: 1.5;
}


/* =========================
   CONTACTS
========================= */

.contacts {
  background: var(--bg-soft);
}

.contacts__header {
  margin-bottom: 64px;
}

.contacts-grid {
  display: grid;

  grid-template-columns:
    minmax(260px, 0.55fr)
    minmax(0, 1fr);

  gap: 70px;
}

.contacts-info {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  align-content: start;
}

.contact-item {
  min-height: 160px;

  padding:
    22px
    25px
    30px
    0;

  border-top: 1px solid var(--border);
}

.contact-item > span {
  display: block;

  margin-bottom: 24px;

  color: var(--text-faint);

  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.contact-item p,
.contact-item > a {
  margin: 0;

  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.45;
}

.contact-links {
  display: flex;

  flex-direction: column;

  gap: 8px;
}

.contact-links a {
  width: fit-content;

  font-family: var(--serif);
  font-size: 18px;
}

.contact-links a:hover,
.contact-item > a:hover {
  color: var(--accent);
}

.location-card {
  border: 1px solid var(--border);

  background: var(--bg);
}

.location-card__visual {
  position: relative;

  min-height: 410px;

  overflow: hidden;

  background:
    linear-gradient(
      135deg,
      var(--bg-elevated),
      var(--bg)
    );
}

.map-grid {
  position: absolute;

  inset: 0;

  opacity: 0.25;

  background-image:
    linear-gradient(
      var(--border) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      var(--border) 1px,
      transparent 1px
    );

  background-size:
    42px
    42px;
}

.map-road {
  position: absolute;

  height: 2px;

  background: var(--border-strong);

  transform-origin: center;
}

.map-road--one {
  top: 28%;
  left: -8%;

  width: 120%;

  transform: rotate(17deg);
}

.map-road--two {
  top: 64%;
  left: -6%;

  width: 115%;

  transform: rotate(-20deg);
}

.map-road--three {
  top: 45%;
  left: 10%;

  width: 88%;

  transform: rotate(69deg);
}

.map-pin {
  position: absolute;

  top: 50%;
  left: 55%;

  width: 58px;
  height: 58px;

  display: grid;

  place-items: center;

  transform: translate(-50%, -50%);

  border-radius: 50%;

  background: var(--accent);

  box-shadow:
    0 0 0 14px rgba(202, 174, 143, 0.11);
}

.map-pin span {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: var(--accent-text);
}

.map-label {
  position: absolute;

  top: calc(50% + 42px);
  left: 55%;

  display: flex;

  flex-direction: column;

  align-items: center;

  transform: translateX(-50%);
}

.map-label strong {
  font-family: var(--serif);

  font-size: 16px;
  letter-spacing: 0.15em;
}

.map-label span {
  margin-top: 3px;

  color: var(--text-soft);

  font-size: 8px;
  letter-spacing: 0.12em;
}

.location-card__footer {
  min-height: 72px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 25px;

  padding: 18px 22px;

  border-top: 1px solid var(--border);
}

.location-card__footer div {
  display: flex;

  gap: 18px;

  color: var(--text-faint);

  font-size: 9px;
}

.location-card__footer a {
  font-size: 11px;
}

.location-card__footer a:hover {
  color: var(--accent);
}


/* =========================
   FOOTER
========================= */

.footer {
  padding-top: 70px;

  border-top: 1px solid var(--border);

  background: var(--bg);
}

.footer__inner {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 70px;

  padding-bottom: 70px;
}

.footer__brand p {
  margin: 28px 0 0;

  color: var(--text-soft);

  font-family: var(--serif);
  font-size: 23px;
}

.footer__links {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 40px;
}

.footer__links > div {
  display: flex;

  flex-direction: column;

  align-items: flex-start;

  gap: 9px;
}

.footer__links span {
  margin-bottom: 8px;

  color: var(--text-faint);

  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.footer__links a {
  color: var(--text-soft);

  font-size: 12px;

  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--text);
}

.footer__bottom {
  display: flex;

  justify-content: space-between;

  gap: 30px;

  padding-top: 20px;
  padding-bottom: 26px;

  border-top: 1px solid var(--border);

  color: var(--text-faint);

  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}


/* =========================
   REVEAL
========================= */

.reveal {
  opacity: 0;

  transform: translateY(28px);

  transition:
    opacity 0.85s cubic-bezier(.2, .65, .25, 1),
    transform 0.85s cubic-bezier(.2, .65, .25, 1);
}

.reveal--delay {
  transition-delay: 0.12s;
}

.reveal.is-visible {
  opacity: 1;

  transform: translateY(0);
}


/* =========================
   TABLET
========================= */

@media (max-width: 1080px) {

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .desktop-book {
    display: none;
  }

  .hero__inner {
    grid-template-columns: 1fr;
  }

  .hero__details {
    display: none;
  }

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

  .service-card,
  .service-card--large {
    grid-column: auto;
  }

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

  .contacts-grid {
    gap: 40px;
  }

}


/* =========================
   MOBILE / TABLET
========================= */

@media (max-width: 768px) {

  :root {
    --header-height: 72px;
  }

  .container {
    width: min(
      calc(100% - 32px),
      var(--container)
    );
  }

  .section {
    padding: 94px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;

    gap: 25px;

    margin-bottom: 42px;
  }

  h2 {
    font-size: clamp(43px, 12vw, 64px);
  }

  .eyebrow {
    margin-bottom: 16px;
  }


  /* header */

  .brand__name {
    font-size: 17px;
  }

  .header__actions {
    gap: 4px;
  }


  /* hero */

  .hero {
    min-height: 820px;
  }

  .hero__background img {
    object-position: 65% center;
  }

  .hero__overlay {
    background:
      linear-gradient(
        0deg,
        rgba(6, 6, 5, 0.96) 0%,
        rgba(6, 6, 5, 0.68) 47%,
        rgba(6, 6, 5, 0.17) 79%,
        rgba(6, 6, 5, 0.3) 100%
      );
  }

  .hero__inner {
    min-height: 820px;

    padding-top: 130px;
    padding-bottom: 58px;
  }

  .hero__content {
    align-self: end;
  }

  .hero h1 {
    margin-bottom: 24px;

    font-size: clamp(57px, 16vw, 82px);
    line-height: 0.91;
  }

  .hero__description {
    max-width: 420px;

    font-size: 14px;
  }

  .scroll-hint {
    display: none;
  }


  /* services */

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    display: grid;

    grid-template-columns: 42% 58%;
  }

  .service-card__image {
    height: auto;
    min-height: 240px;
  }

  .service-card__content {
    display: flex;

    flex-direction: column;

    padding: 20px;
  }

  .service-card h3 {
    padding-right: 20px;

    font-size: 24px;
  }

  .service-card p {
    min-height: 0;

    margin-bottom: 24px;
  }

  .service-card__footer {
    margin-top: auto;
  }


  /* about */

  .about__grid {
    grid-template-columns: 1fr;

    gap: 72px;
  }

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

  .about__badge {
    right: -28px;
    bottom: -28px;

    width: 130px;
    height: 130px;
  }

  .about__badge strong {
    font-size: 40px;
  }


  /* gallery */

  .gallery {
    grid-template-columns: repeat(2, 1fr);

    grid-auto-rows: 240px;
  }

  .gallery__item {
    grid-column: span 1;
  }

  .gallery__item--tall {
    grid-row: span 2;
  }

  .gallery__item--wide {
    grid-column: span 2;
  }


  /* reviews */

  .reviews__top {
    flex-direction: column;

    align-items: flex-start;

    gap: 35px;

    margin-bottom: 42px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    min-height: 300px;
  }


  /* booking */

  .booking {
    min-height: 650px;
  }

  .booking__overlay {
    background:
      linear-gradient(
        0deg,
        rgba(7, 7, 6, 0.91),
        rgba(7, 7, 6, 0.45)
      );
  }


  /* contacts */

  .contacts-grid {
    grid-template-columns: 1fr;

    gap: 48px;
  }

  .location-card__visual {
    min-height: 360px;
  }


  /* footer */

  .footer__inner {
    grid-template-columns: 1fr;

    gap: 50px;
  }

}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 520px) {

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

  .header__inner {
    gap: 10px;
  }

  .hero {
    min-height: 760px;
  }

  .hero__inner {
    min-height: 760px;

    padding-bottom: 42px;
  }

  .hero__background img {
    object-position: 61% center;
  }

  .hero h1 {
    font-size: clamp(52px, 16vw, 69px);
  }

  .hero__description {
    margin-bottom: 28px;

    font-size: 13px;
  }

  .hero__buttons {
    display: grid;

    grid-template-columns: 1fr;
  }

  .hero__buttons .button {
    width: 100%;
  }

  .section {
    padding: 80px 0;
  }

  h2 {
    font-size: clamp(40px, 12.5vw, 55px);
  }


  /* services */

  .service-card {
    grid-template-columns: 39% 61%;
  }

  .service-card__image {
    min-height: 220px;
  }

  .service-card__content {
    padding: 17px;
  }

  .service-card h3 {
    margin-top: 4px;

    font-size: 21px;
  }

  .service-card p {
    font-size: 10px;
    line-height: 1.55;
  }

  .service-card__footer strong {
    font-size: 10px;
  }


  /* gallery */

  .gallery {
    grid-auto-rows: 190px;

    gap: 7px;
  }


  /* masters */

  .masters-grid {
    gap: 8px;
  }

  .master-card h3 {
    font-size: 18px;
  }

  .master-card__info {
    flex-direction: column;

    gap: 8px;
  }


  /* reviews */

  .review-card {
    min-height: 320px;

    padding: 26px;
  }

  .review-card blockquote {
    font-size: 20px;
  }


  /* contacts */

  .contacts-info {
    grid-template-columns: 1fr 1fr;
  }

  .contact-item {
    min-height: 140px;

    padding-right: 12px;
  }

  .contact-item p,
  .contact-item > a,
  .contact-links a {
    font-size: 16px;
  }

  .location-card__visual {
    min-height: 300px;
  }

  .location-card__footer {
    align-items: flex-start;

    flex-direction: column;

    gap: 12px;
  }


  /* footer */

  .footer__bottom {
    align-items: flex-start;

    flex-direction: column;

    gap: 8px;
  }

}


/* =========================
   320PX
========================= */

@media (max-width: 350px) {

  .container {
    width: calc(100% - 22px);
  }

  .theme-toggle,
  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .brand__name {
    font-size: 15px;
  }

  .brand__caption {
    font-size: 6px;
  }

  .hero h1 {
    font-size: 49px;
  }

  .service-card {
    grid-template-columns: 37% 63%;
  }

  .service-card__content {
    padding: 14px;
  }

  .service-card h3 {
    font-size: 19px;
  }

  .contacts-info {
    grid-template-columns: 1fr;
  }

}


/* =========================
   REDUCED MOTION
========================= */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;

    scroll-behavior: auto !important;

    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;

    transform: none;
  }

}