﻿:root {
  color-scheme: light;
  --ink: #231b18;
  --muted: #6b5a53;
  --paper: #fffaf3;
  --soft: #f3e6d6;
  --blush: #f9e9eb;
  --pink: #dc3e67;
  --clay: #a74f37;
  --wine: #7f234d;
  --leaf: #2f6545;
  --gold: #c99547;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(35, 27, 24, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: var(--paper);
  background-image:
    linear-gradient(rgba(255, 250, 243, 0.84), rgba(255, 250, 243, 0.84)),
    url("assets/fondo-bugambilias-difuminadas.png");
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.scrolled,
.site-header.open {
  background: rgba(255, 250, 243, 0.96);
  color: var(--ink);
  box-shadow: 0 10px 40px rgba(35, 27, 24, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  min-width: 0;
}

.brand-name {
  line-height: 1.15;
}

.brand-logo {
  width: 58px;
  aspect-ratio: 1;
  border: 2px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 5px 18px rgba(35, 27, 24, 0.2);
  transition: width 180ms ease, border-color 180ms ease;
}

.site-header.scrolled .brand-logo,
.site-header.open .brand-logo {
  width: 52px;
  border-color: rgba(127, 35, 77, 0.22);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 36px);
  font-size: 0.92rem;
  font-weight: 600;
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 4px;
  border: 1px solid currentColor;
  font-weight: 700;
  cursor: pointer;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  border-radius: 4px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--paper);
}

.hero-message {
  padding: clamp(118px, 15vw, 170px) clamp(18px, 7vw, 112px) clamp(48px, 8vw, 86px);
  background: #251c19;
  color: var(--white);
}

.hero-photo {
  width: 100%;
  background: #e9ded2;
}

.hero-image {
  width: 100%;
  height: auto;
}

.hero-image {
  object-fit: contain;
}

.hero-collage {
  object-position: center;
}

.hero-message .hero-content {
  width: min(1080px, 100%);
  margin: 0;
  padding-left: clamp(18px, 3vw, 34px);
  border-left: 3px solid var(--pink);
}

.hero-content {
  color: var(--white);
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--wine);
}

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

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 22px;
  max-width: 980px;
  font-size: clamp(3.2rem, 7vw, 6.8rem);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.4rem, 6vw, 5.2rem);
}

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

.hero-copy {
  max-width: 610px;
  margin-bottom: 28px;
  font-size: clamp(1.05rem, 2.1vw, 1.35rem);
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.button.secondary {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.button.secondary.light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.75);
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(35, 27, 24, 0.12);
}

.intro-band div {
  padding: 28px clamp(18px, 4vw, 56px);
  background: rgba(255, 250, 243, 0.88);
  backdrop-filter: blur(8px);
}

.intro-band span,
.care-panel span,
.space-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.intro-band strong {
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.section {
  padding: clamp(72px, 11vw, 132px) clamp(18px, 6vw, 88px);
}

#cuidados,
.reservations {
  background: rgba(255, 250, 243, 0.74);
  backdrop-filter: blur(4px);
}

.split,
.reservations {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: start;
}

.section-copy p:not(.eyebrow),
.section-heading p:not(.eyebrow) {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.08rem;
}

.care-panel {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(35, 27, 24, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.care-panel article {
  padding: 28px;
  background: var(--white);
}

.care-panel .care-app {
  background: var(--wine);
  color: var(--white);
}

.care-panel .care-app span,
.care-panel .care-app p {
  color: rgba(255, 255, 255, 0.76);
}

.care-panel p,
.space-card p,
.site-footer p {
  margin-bottom: 0;
  color: var(--muted);
}

.spaces {
  background: rgba(247, 239, 229, 0.86);
  backdrop-filter: blur(5px);
}

.life-section {
  padding: clamp(72px, 11vw, 132px) clamp(18px, 4vw, 64px);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 250, 243, 0.82) 0%, rgba(247, 238, 229, 0.88) 48%, rgba(255, 250, 243, 0.82) 100%);
}

.life-intro {
  max-width: 1360px;
  margin: 0 auto clamp(36px, 6vw, 72px);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.7fr);
  gap: clamp(28px, 7vw, 100px);
  align-items: end;
}

.life-intro h2 {
  max-width: 840px;
  margin-bottom: 0;
}

.life-intro-copy > p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 1.08rem;
}

.privacy-note {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid rgba(127, 35, 77, 0.16);
  border-radius: 8px;
  background: var(--blush);
  color: #60434c;
}

.privacy-note p {
  margin: 0;
  font-size: 0.86rem;
}

.privacy-icon {
  display: grid;
  place-items: center;
  width: 36px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--white);
  color: var(--pink);
  font-size: 1.1rem;
}

.story-feature {
  position: relative;
  max-width: 1500px;
  margin: 0 auto clamp(18px, 3vw, 34px);
  background: var(--ink);
  border-radius: 8px;
  overflow: hidden;
}

.story-feature .photo-feature {
  width: 100%;
}

.story-feature .photo-feature img {
  width: 100%;
  max-height: 900px;
  object-fit: contain;
}

.story-feature-copy {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(280px, 1fr);
  gap: 18px 40px;
  align-items: center;
  width: 100%;
  padding: clamp(22px, 4vw, 42px);
  border-top: 3px solid var(--pink);
  background: var(--ink);
  color: var(--white);
  pointer-events: none;
}

.story-feature-copy span {
  grid-column: 1 / -1;
  display: block;
  margin-bottom: 8px;
  color: #ffb7c8;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.story-feature-copy h3 {
  margin-bottom: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  line-height: 1.03;
}

.story-feature-copy p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
}

.photo-stories {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(10px, 2vw, 24px);
}

.photo-card {
  position: relative;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: #e9ded2;
  box-shadow: 0 12px 36px rgba(35, 27, 24, 0.12);
  cursor: zoom-in;
}

.photo-card::after {
  content: "Ampliar";
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border-radius: 4px;
  background: rgba(35, 27, 24, 0.78);
  color: var(--white);
  font: 700 0.72rem/1 Inter, sans-serif;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 450ms ease, filter 300ms ease;
}

.photo-card:hover::after,
.photo-card:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.photo-card:hover img,
.photo-card:focus-visible img {
  transform: scale(1.015);
  filter: saturate(1.04);
}

.story-wide {
  grid-column: span 8;
  aspect-ratio: 16 / 9;
}

.story-tall {
  grid-column: span 4;
  aspect-ratio: 4 / 5;
}

.story-standard {
  grid-column: span 4;
  aspect-ratio: 4 / 3;
}

.photo-modal {
  width: min(1380px, calc(100vw - 32px));
  max-height: calc(100svh - 32px);
  padding: 0;
  overflow: hidden auto;
  border: 0;
  border-radius: 8px;
  background: #171211;
  color: var(--white);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.45);
}

.photo-modal::backdrop {
  background: rgba(20, 14, 13, 0.82);
  backdrop-filter: blur(8px);
}

.photo-modal img {
  width: 100%;
  max-height: calc(100svh - 100px);
  object-fit: contain;
}

.photo-modal p {
  margin: 0;
  padding: 14px 54px 16px 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.modal-close {
  position: fixed;
  z-index: 3;
  width: 42px;
  height: 42px;
  margin: 12px;
  right: max(16px, calc((100vw - min(1380px, calc(100vw - 32px))) / 2 + 12px));
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  background: rgba(20, 14, 13, 0.84);
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.important-story,
.life-chapter {
  max-width: 1500px;
  margin-inline: auto;
}

.important-story {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(420px, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  margin-bottom: clamp(72px, 11vw, 140px);
  padding: clamp(22px, 4vw, 46px);
  border: 1px solid rgba(127, 35, 77, 0.15);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.important-copy span,
.chapter-heading span {
  display: block;
  margin-bottom: 12px;
  color: var(--pink);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.important-copy h3,
.chapter-heading h3 {
  margin-bottom: 18px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.04;
}

.important-copy p,
.chapter-heading p {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
}

.important-photo {
  aspect-ratio: 4 / 5;
  box-shadow: none;
}

.life-chapter {
  margin-bottom: clamp(72px, 11vw, 140px);
}

.life-chapter:last-child {
  margin-bottom: 0;
}

.chapter-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.45fr) minmax(300px, 1fr);
  gap: 4px clamp(24px, 5vw, 80px);
  align-items: start;
  margin-bottom: clamp(24px, 4vw, 48px);
}

.chapter-heading span {
  grid-row: span 2;
  padding-top: 10px;
  border-top: 1px solid rgba(127, 35, 77, 0.28);
}

.chapter-heading h3,
.chapter-heading p {
  grid-column: 2;
}

.chapter-main-photo {
  width: 100%;
  max-height: 920px;
  background: #16110f;
}

.chapter-main-photo img {
  max-height: 920px;
}

.chapter-grid {
  display: grid;
  gap: clamp(12px, 2vw, 24px);
}

.sharing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sharing-grid .photo-card {
  aspect-ratio: 16 / 9;
}

.cognition-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.cognition-grid .photo-card {
  grid-column: span 4;
}

.cognition-grid .photo-card:first-child,
.cognition-grid .photo-card:nth-child(2) {
  grid-column: span 6;
}

.cognition-chapter {
  padding: clamp(28px, 5vw, 70px);
  border-radius: 8px;
  background: #eee2d8;
}

.app-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(380px, 0.78fr);
  gap: clamp(44px, 9vw, 140px);
  align-items: center;
  padding: clamp(80px, 12vw, 150px) clamp(18px, 8vw, 130px);
  overflow: hidden;
  background: #28211f;
  color: var(--white);
}

.daystay-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
  max-width: 1180px;
  margin-inline: auto;
  padding: clamp(64px, 9vw, 108px) clamp(18px, 9vw, 150px);
  background: rgba(255, 250, 243, 0.82);
  backdrop-filter: blur(5px);
}

.daystay-photo .photo-card {
  width: min(270px, 100%);
  max-width: 270px;
  margin-inline: auto;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow);
}

.daystay-photo img {
  object-fit: cover;
}

.daystay-copy h2 {
  max-width: 760px;
}

.daystay-copy > p {
  max-width: 680px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.daystay-benefits {
  display: grid;
  gap: 1px;
  max-width: 760px;
  margin-bottom: 28px;
  overflow: hidden;
  border: 1px solid rgba(35, 27, 24, 0.1);
  border-radius: 8px;
  box-shadow: 0 16px 50px rgba(35, 27, 24, 0.1);
}

.daystay-benefits article {
  padding: 22px;
  background: rgba(255, 255, 255, 0.92);
}

.daystay-benefits span {
  display: block;
  margin-bottom: 7px;
  color: var(--pink);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.daystay-benefits strong {
  display: block;
  margin-bottom: 6px;
}

.daystay-benefits p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.app-copy {
  max-width: 760px;
}

.app-copy .eyebrow {
  color: #ff9db7;
}

.app-copy h2 {
  margin-bottom: 26px;
}

.app-lead {
  max-width: 670px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.app-benefits {
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.app-benefits li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.app-benefits li > span {
  color: #ff9db7;
  font-size: 0.76rem;
  font-weight: 800;
}

.app-benefits strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
}

.app-benefits p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
}

.app-action {
  border-color: var(--pink);
  background: var(--pink);
  color: var(--white);
}

.app-visual {
  position: relative;
  display: grid;
  justify-items: center;
}

.app-visual::before {
  content: "";
  position: absolute;
  width: min(500px, 90%);
  aspect-ratio: 1;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(255, 157, 183, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.phone-shell {
  position: relative;
  z-index: 1;
  width: min(390px, 100%);
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 32px;
  background: #0f0c0b;
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.38);
}

.phone-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 8px;
  padding: 9px 13px 12px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.65rem;
  font-weight: 700;
}

.phone-top span:last-child {
  text-align: right;
}

.app-screen {
  position: relative;
  min-height: 620px;
  padding: 22px 18px 76px;
  border-radius: 24px;
  background: #fff9f3;
  color: var(--ink);
}

.app-welcome span,
.timeline-card > span {
  color: var(--wine);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.app-welcome h3 {
  margin: 8px 0 4px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.65rem;
}

.app-welcome p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.82rem;
}

.status-card,
.timeline-card,
.app-metrics article {
  border: 1px solid rgba(35, 27, 24, 0.08);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(35, 27, 24, 0.07);
}

.status-card {
  padding: 16px;
}

.status-heading {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 8px;
  align-items: center;
}

.status-heading small,
.app-metrics small,
.timeline-card small {
  color: var(--muted);
  font-size: 0.64rem;
}

.status-dot {
  width: 9px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #4b9f70;
  box-shadow: 0 0 0 4px rgba(75, 159, 112, 0.13);
}

.status-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.app-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 10px 0;
}

.app-metrics article {
  display: grid;
  gap: 7px;
  padding: 14px;
}

.app-metrics span {
  color: var(--wine);
  font-size: 0.67rem;
  font-weight: 800;
  text-transform: uppercase;
}

.app-metrics strong {
  font-size: 0.82rem;
}

.timeline-card {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.timeline-card div {
  display: grid;
  gap: 4px;
}

.app-nav {
  position: absolute;
  inset: auto 12px 12px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
  background: #f1e6dc;
  color: var(--muted);
  font-size: 0.6rem;
  font-weight: 700;
  text-align: center;
}

.app-nav span {
  padding: 7px 4px;
}

.app-nav .active {
  border-radius: 4px;
  background: var(--white);
  color: var(--wine);
}

.app-caption {
  position: relative;
  z-index: 1;
  max-width: 380px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.7rem;
  text-align: center;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.space-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.space-card {
  min-height: 280px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 8px;
  color: var(--white);
  background: var(--leaf);
  overflow: hidden;
}

.space-card span,
.space-card p {
  color: rgba(255, 255, 255, 0.78);
}

.space-card.patio {
  background: linear-gradient(150deg, rgba(127, 35, 77, 0.96), rgba(47, 101, 69, 0.94));
}

.space-card.barra {
  background: linear-gradient(150deg, rgba(167, 79, 55, 0.98), rgba(80, 43, 34, 0.96));
}

.space-card.privado {
  background: linear-gradient(150deg, rgba(47, 101, 69, 0.98), rgba(36, 50, 39, 0.96));
}

.quote-band {
  display: grid;
  gap: 28px;
  justify-items: start;
  padding: clamp(72px, 12vw, 150px) clamp(18px, 7vw, 112px);
  background: var(--wine);
  color: var(--white);
}

.quote-band p {
  max-width: 980px;
  margin-bottom: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 5vw, 5rem);
  line-height: 1.04;
}

.reservation-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--white);
  border: 1px solid rgba(35, 27, 24, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(35, 27, 24, 0.16);
  border-radius: 4px;
  padding: 12px 14px;
  background: #fffdf9;
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--leaf);
  font-weight: 700;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 28px;
  align-items: center;
  padding: 34px clamp(18px, 6vw, 88px);
  background: var(--ink);
  color: var(--white);
}

.footer-brand {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.footer-brand img {
  width: 86px;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.22);
}

.footer-brand strong {
  display: block;
  margin-bottom: 5px;
}

.site-footer address {
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
}

.footer-button {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

@media (max-width: 860px) {
  body {
    background-attachment: scroll;
    background-size: auto 100vh;
  }

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

  .nav-links,
  .header-action {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-header.open .nav-links {
    display: grid;
    grid-column: 1 / -1;
    justify-content: start;
    gap: 16px;
    padding-top: 16px;
  }

  .site-header.open .header-action {
    display: inline-flex;
    grid-column: 1 / -1;
    width: max-content;
  }

  .intro-band,
  .split,
  .reservations,
  .life-intro,
  .app-section,
  .daystay-section,
  .important-story,
  .chapter-heading,
  .space-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .daystay-photo .photo-card {
    width: min(245px, 74vw);
    max-width: 245px;
  }

  .chapter-heading span,
  .chapter-heading h3,
  .chapter-heading p {
    grid-column: 1;
    grid-row: auto;
  }

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

  .cognition-grid .photo-card,
  .cognition-grid .photo-card:first-child,
  .cognition-grid .photo-card:nth-child(2) {
    grid-column: span 6;
  }

  .app-copy {
    max-width: none;
  }

  .app-visual {
    margin-top: 12px;
  }

  .story-feature-copy {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .story-wide,
  .story-tall,
  .story-standard {
    grid-column: span 6;
    aspect-ratio: auto;
  }

  .photo-card img {
    height: auto;
    object-fit: contain;
  }

  .site-footer {
    align-items: start;
  }

  .brand-logo {
    width: 48px;
  }

  .site-header.scrolled .brand-logo,
  .site-header.open .brand-logo {
    width: 46px;
  }
}

@media (max-width: 520px) {
  .hero-message {
    padding: 105px 14px 40px;
  }

  .hero-message .hero-content {
    width: 100%;
    padding-left: 14px;
  }

  h1 {
    font-size: clamp(2.8rem, 15vw, 4.5rem);
  }

  .button,
  .header-action {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .brand-name {
    max-width: 150px;
    font-size: 0.82rem;
  }

  .footer-brand {
    grid-template-columns: 70px minmax(0, 1fr);
  }

  .footer-brand img {
    width: 70px;
  }

  .life-section {
    padding-inline: 12px;
  }

  .story-wide,
  .story-tall,
  .story-standard {
    grid-column: 1 / -1;
  }

  .privacy-note {
    grid-template-columns: 1fr;
  }

  .photo-modal {
    width: calc(100vw - 16px);
    max-height: calc(100svh - 16px);
  }

  .cognition-chapter {
    padding: 20px 10px;
  }

  .cognition-grid .photo-card,
  .cognition-grid .photo-card:first-child,
  .cognition-grid .photo-card:nth-child(2) {
    grid-column: 1 / -1;
  }

  .app-section {
    padding-inline: 16px;
  }

  .phone-shell {
    border-radius: 24px;
  }

  .app-screen {
    min-height: 570px;
  }
}

