@font-face {
  font-family: "Fraunces";
  src: url("../assets/fonts/fraunces-latin-ext-var.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Fraunces";
  src: url("../assets/fonts/fraunces-latin-var.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Figtree";
  src: url("../assets/fonts/figtree-latin-ext-var.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Figtree";
  src: url("../assets/fonts/figtree-latin-var.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}

:root {
  --teal: #0b7a7a;
  --teal-dark: #065656;
  --teal-soft: #e6f3f3;
  --burgundy: #8b1e4a;
  --burgundy-dark: #6d1739;
  --sand: #f7f4f0;
  --white: #ffffff;
  --ink: #1a2b2b;
  --muted: #526464;
  --line: #c9dede;
  --whatsapp: #128c7e;
  --whatsapp-hover: #0d6b60;
  --header-height: 80px;
  --header-offset: calc(var(--header-height) + env(safe-area-inset-top, 0px) + 24px);
  --container: 1180px;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --shadow-sm: 0 10px 30px rgba(11, 122, 122, 0.08);
  --shadow-lg: 0 24px 70px rgba(26, 43, 43, 0.14);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--ink);
  background: var(--white);
  font-family: "Figtree", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgba(11, 122, 122, 0.14);
}

body.nav-open {
  overflow: hidden;
}

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

button,
a {
  touch-action: manipulation;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
  transform: translateY(-200%);
  transition: transform 180ms ease;
}

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

h1,
h2,
h3 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4.8vw, 3.35rem);
}

h2 {
  margin: 0 0 16px;
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
}

h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

p {
  margin: 0 0 16px;
}

p:last-child {
  margin-bottom: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.85);
}

.section {
  padding-block: clamp(72px, 10vw, 108px);
}

.section--tint {
  background: var(--teal-soft);
}

/* Buttons */
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease,
    color 180ms ease, border-color 180ms ease;
}

.button:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

.button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}

.button--whatsapp {
  color: var(--white);
  background: var(--whatsapp);
  box-shadow: 0 12px 28px rgba(18, 140, 126, 0.28);
}

.button--whatsapp:hover,
.button--whatsapp:focus-visible {
  background: var(--whatsapp-hover);
  transform: translateY(-2px);
}

.button--primary {
  color: var(--white);
  background: var(--burgundy);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--burgundy-dark);
  transform: translateY(-2px);
}

.button--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(6, 40, 40, 0.2);
  backdrop-filter: blur(8px);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  color: var(--teal-dark);
  border-color: var(--white);
  background: var(--white);
}

.button--large {
  min-height: 56px;
  padding-inline: 28px;
  font-size: 1rem;
}

.button--maps svg {
  fill: none;
  stroke: currentColor;
}

.button__arrow {
  margin-left: 4px;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  color: var(--burgundy-dark);
  font-weight: 800;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.feature-list {
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  color: var(--muted);
}

.feature-list li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--burgundy);
  content: "";
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding-top: env(safe-area-inset-top, 0px);
  border-bottom: 1px solid rgba(11, 122, 122, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 6px 20px rgba(11, 122, 122, 0.05);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  position: relative;
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.brand img {
  width: clamp(118px, 16vw, 148px);
  max-height: 52px;
  height: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 28px);
}

.nav-link {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--teal);
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-link:hover,
.nav-link.active,
.nav-link[aria-current="location"] {
  color: var(--teal-dark);
}

.nav-link.active::after,
.nav-link[aria-current="location"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 12px;
  border: 0;
  border-radius: 12px;
  background: var(--teal-soft);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 23px;
  height: 2px;
  margin: 4px auto;
  border-radius: 4px;
  background: var(--teal-dark);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Hero: coastal editorial — image first, brand + short copy anchored at base */
.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: min(100svh, 920px);
  color: var(--white);
  overflow: clip;
  isolation: isolate;
}

.hero__media,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__media {
  z-index: -2;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
  transform: scaleX(-1) scale(1.06);
  animation: hero-media-settle 1.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero__overlay {
  z-index: -1;
  background:
    linear-gradient(
      180deg,
      rgba(6, 40, 40, 0.18) 0%,
      rgba(6, 40, 40, 0.12) 38%,
      rgba(6, 40, 40, 0.55) 68%,
      rgba(10, 36, 42, 0.92) 100%
    ),
    radial-gradient(
      120% 70% at 50% 100%,
      rgba(139, 30, 74, 0.22) 0%,
      transparent 55%
    );
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 6.5rem 0 3.25rem;
}

.hero h1 {
  max-width: 11ch;
  margin-bottom: 0.9rem;
  color: var(--white);
  font-size: clamp(2.35rem, 6.2vw, 3.75rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-wrap: balance;
  opacity: 0;
  transform: translateY(18px);
  animation: hero-rise 720ms cubic-bezier(0.22, 1, 0.36, 1) 120ms forwards;
}

.hero__lead {
  max-width: 32ch;
  margin-bottom: 1.75rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  line-height: 1.55;
  opacity: 0;
  transform: translateY(18px);
  animation: hero-rise 720ms cubic-bezier(0.22, 1, 0.36, 1) 220ms forwards;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  opacity: 0;
  transform: translateY(18px);
  animation: hero-rise 720ms cubic-bezier(0.22, 1, 0.36, 1) 320ms forwards;
}

@keyframes hero-media-settle {
  to {
    transform: scaleX(-1) scale(1);
  }
}

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

/* Section heading */
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  align-items: end;
  gap: 40px;
  margin-bottom: 48px;
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

.section-heading > p {
  max-width: 48ch;
  justify-self: end;
}

.section-heading--center {
  display: block;
  max-width: 770px;
  margin-inline: auto;
  text-align: center;
}

.section-heading--center > p {
  margin: 18px auto 0;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.service-card h3 {
  color: var(--teal-dark);
  font-family: "Figtree", sans-serif;
  font-size: 1rem;
  font-weight: 800;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.services-note {
  margin: 32px 0 0;
  text-align: center;
}

/* About */
.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(48px, 7vw, 90px);
}

.about__copy > p:not(.eyebrow) {
  max-width: 62ch;
}

.about__gallery {
  position: relative;
  min-height: 540px;
}

.about__photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__photo--large {
  top: 0;
  right: 0;
  width: 82%;
  aspect-ratio: 4 / 3;
}

.about__photo--large img {
  object-position: left center;
}

.about__photo--small {
  bottom: 0;
  left: 0;
  width: 52%;
  aspect-ratio: 1;
  border: 8px solid var(--white);
}

/* Profile block */
.profile-block {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.profile-block__media {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 5 / 4;
}

.profile-block__media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: 42% 36%;
}

.profile-block__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(24px, 3.2vw, 38px);
}

.profile-block__meta {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.profile-block__credential {
  display: inline-block;
  margin: 12px 0 20px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-size: 0.88rem;
  font-weight: 800;
}

/* Ambiance */
.ambiance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.ambiance-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.ambiance-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 280ms ease;
}

.ambiance-grid figure:hover img {
  transform: scale(1.03);
}

/* Location */
.location__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 28px;
  align-items: stretch;
}

.map-frame {
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.location__card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.location__card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.location__card > div {
  padding: 24px 28px 28px;
}

.location__card .button {
  margin-top: 18px;
}

.hours-list {
  margin: 18px 0 0;
}

.hours-list dt {
  margin-bottom: 4px;
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hours-list dd {
  margin: 0;
  color: var(--muted);
}

/* FAQ */
.faq__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 42px 18px 0;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 4px;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: var(--teal);
  content: "";
  transition: transform 180ms ease, background-color 180ms ease;
}

.faq-list summary::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq-list summary::before {
  transform: translateY(-50%);
}

.faq-list details[open] summary {
  color: var(--teal-dark);
}

.faq-list details[open] summary::before,
.faq-list details[open] summary::after {
  background: var(--teal-dark);
}

.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(0);
}

.faq-list details p {
  padding: 0 42px 18px 0;
  color: var(--muted);
}

/* Contact */
.contact {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
  overflow: hidden;
  isolation: isolate;
}

.contact__media,
.contact__media img,
.contact__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.contact__media {
  z-index: -2;
}

.contact__media img {
  object-fit: cover;
  object-position: center;
}

.contact__overlay {
  z-index: -1;
  background: linear-gradient(
    135deg,
    rgba(6, 40, 40, 0.88) 0%,
    rgba(139, 30, 74, 0.72) 100%
  );
}

.contact__content {
  padding-block: 72px;
  text-align: center;
}

.contact h2 {
  color: var(--white);
}

.contact__content > p:not(.eyebrow, .contact__phone) {
  max-width: 560px;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.9);
}

.contact__phone {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
}

.contact__phone a {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.contact__phone a:hover {
  color: var(--white);
}

/* Footer */
.site-footer {
  position: relative;
  padding-top: 56px;
  color: rgba(255, 255, 255, 0.82);
  background: var(--ink);
}

.site-footer__wave {
  position: absolute;
  top: -41px;
  right: 0;
  left: 0;
  height: 42px;
  overflow: hidden;
}

.site-footer__wave svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: var(--ink);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.55);
  font-family: "Figtree", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer a {
  display: inline-block;
  min-height: 44px;
  padding-block: 6px;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--white);
  text-decoration: underline;
}

.site-footer__about img {
  width: clamp(140px, 24vw, 180px);
  height: auto;
  margin-bottom: 12px;
}

.site-footer__about p {
  max-width: 34ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
}

.site-footer nav,
.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.site-footer__bottom {
  padding-block: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
}

/* Floating actions */
.floating-actions {
  position: fixed;
  right: max(24px, env(safe-area-inset-right, 0px));
  bottom: max(24px, calc(env(safe-area-inset-bottom, 0px) + 16px));
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-button {
  display: grid;
  width: 54px;
  height: 54px;
  padding: 0;
  border: 1px solid rgba(11, 122, 122, 0.14);
  border-radius: 50%;
  place-items: center;
  color: var(--teal-dark);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(26, 43, 43, 0.2);
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease,
    opacity 180ms ease;
}

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

.floating-button svg {
  width: 24px;
  height: 24px;
}

.back-to-top svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-button--whatsapp {
  color: var(--white);
  border-color: transparent;
  background: var(--whatsapp);
}

.floating-button--whatsapp svg {
  fill: currentColor;
}

.floating-button--whatsapp:hover,
.floating-button--whatsapp:focus-visible {
  background: var(--whatsapp-hover);
}

@media (max-width: 1023px) {
  :root {
    --header-height: 74px;
  }

  .menu-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: flex;
    max-height: calc(100dvh - var(--header-height) - env(safe-area-inset-top, 0px));
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 24px calc(18px + env(safe-area-inset-bottom, 0px));
    border-bottom: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 20px 35px rgba(26, 43, 43, 0.14);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .site-nav:not(.is-open) {
    display: none;
  }

  .nav-link {
    min-height: 54px;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    font-size: 0.94rem;
  }

  .nav-link:last-child {
    border-bottom: 0;
  }

  .nav-link::after {
    top: 50%;
    right: 4px;
    bottom: auto;
    left: auto;
    width: 8px;
    height: 8px;
    transform: translateY(-50%) scale(0);
  }

  .nav-link.active::after,
  .nav-link[aria-current="location"]::after {
    transform: translateY(-50%) scale(1);
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .section-heading > p {
    justify-self: start;
  }

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

  .about__gallery {
    min-height: 420px;
  }

  .profile-block {
    grid-template-columns: 1fr;
  }

  .profile-block__media {
    aspect-ratio: 16 / 10;
    max-height: 420px;
  }

  .profile-block__media img {
    object-position: 44% 32%;
  }

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

  .ambiance-grid img {
    aspect-ratio: 16 / 10;
  }

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

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

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__about {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1024px) {
  .profile-block__media {
    aspect-ratio: auto;
    align-self: stretch;
  }
}

@media (max-width: 640px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: min(100svh, 820px);
  }

  .hero__content {
    padding: 5.5rem 0 2.75rem;
  }

  .hero h1 {
    max-width: 10ch;
  }

  .hero__actions .button {
    width: 100%;
  }

  .contact .button {
    width: 100%;
  }
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}

@media (min-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
  }

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

  .service-card h3 {
    font-size: 0.95rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .button:hover,
  .floating-button:hover,
  .ambiance-grid figure:hover img {
    transform: none;
  }

  .hero__media img {
    animation: none;
    transform: scaleX(-1);
  }

  .hero h1,
  .hero__lead,
  .hero__actions {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
