:root {
  color-scheme: light;
  --blue: #1a73e8;
  --blue-dark: #1558b0;
  --red: #ea4335;
  --yellow: #fbbc04;
  --green: #34a853;
  --ink: #202124;
  --muted: #5f6368;
  --line: #dadce0;
  --surface: #ffffff;
  --soft: #f8fafd;
  --soft-green: #eef7f1;
  --shadow: 0 24px 70px rgba(60, 64, 67, 0.18);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Poppins, sans-serif;
  line-height: 1.5;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 0 clamp(18px, 4vw, 56px);
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 1px 0 rgba(60, 64, 67, 0.16);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 184px;
  min-width: 168px;
}

.brand-logo {
  width: 100%;
  height: auto;
}

.brand-logo-normal {
  display: none;
}

.site-header.is-scrolled .brand-logo-white,
.site-header.is-open .brand-logo-white {
  display: none;
}

.site-header.is-scrolled .brand-logo-normal,
.site-header.is-open .brand-logo-normal {
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  border-radius: 999px;
  padding: 10px 14px;
  color: currentColor;
  font-weight: 500;
  transition: background 160ms ease;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.16);
}

.site-header.is-scrolled .nav-links a:hover,
.site-header.is-open .nav-links a:hover {
  background: #f1f3f4;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  color: currentColor;
  background: transparent;
  cursor: pointer;
}

.menu-button svg,
.button svg,
.icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  align-content: center;
  justify-items: start;
  padding: 148px clamp(20px, 6vw, 84px) 42px;
  overflow: hidden;
  color: #fff;
  text-align: left;
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02) contrast(0.98) brightness(0.94);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(10, 22, 38, 0.94) 0%, rgba(10, 22, 38, 0.86) 34%, rgba(10, 22, 38, 0.48) 62%, rgba(10, 22, 38, 0.12) 100%),
    linear-gradient(180deg, rgba(10, 22, 38, 0.34) 0%, rgba(10, 22, 38, 0.08) 48%, rgba(10, 22, 38, 0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 16px 0 96px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1.31px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #d2e3fc;
}

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

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.08;
}

h3 {
  font-family: Poppins, sans-serif;
}

h1 {
  max-width: 700px;
  margin-bottom: 30px;
  font-size: clamp(54px, 8vw, 104px);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4.2vw, 58px);
}

h3 {
  margin-bottom: 16px;
  font-size: 22px;
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions,
.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  justify-content: flex-start;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 8px 18px rgba(26, 115, 232, 0.24);
  margin-top: 16px;
}

.button-primary:hover {
  background: var(--blue-dark);
}

.button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  margin-top: 16px;
}

.button-outline {
  color: var(--blue);
  border-color: var(--line);
  background: #fff;
}

.button-outline:hover {
  border-color: #c2d7fb;
  background: #f8fbff;
}

.hero-panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(680px, 100%);
  max-width: 680px;
  margin: 6px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(16px);
}

.hero-panel div {
  padding: 22px;
}

.hero-panel div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-panel strong,
.hero-panel span {
  display: block;
}

.hero-panel strong {
  font-family: Poppins, sans-serif;
  font-size: 30px;
}

.hero-panel span {
  color: rgba(255, 255, 255, 0.78);
}

.section {
  padding: clamp(64px, 9vw, 118px) clamp(20px, 6vw, 84px);
}

.trusted {
  padding-top: 34px;
  padding-bottom: 34px;
  background: var(--soft);
}

.trusted p {
  max-width: 1180px;
  margin: 0 auto 20px;
  color: var(--muted);
  text-align: center;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.logo-row span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 18px;
  color: #3c4043;
  background: #fff;
  font-family: Poppins, sans-serif;
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(360px, 1.22fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.section-copy {
  position: sticky;
  top: 108px;
}

.section-copy p:not(.eyebrow),
.section-heading p:not(.eyebrow),
.contact-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.space-grid {
  display: grid;
  gap: 18px;
}

.space-card {
  display: grid;
  grid-template-columns: minmax(180px, 42%) 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 2px 8px rgba(60, 64, 67, 0.08);
}

.space-card img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.space-card div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(22px, 3vw, 36px);
}

.space-card p,
.amenity-grid p,
.price-card p,
.quote-section figcaption {
  color: var(--muted);
}

.amenities {
  background: linear-gradient(180deg, #fff 0%, var(--soft) 100%);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.amenity-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.amenity-grid article,
.price-card,
.tour-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 1px 3px rgba(60, 64, 67, 0.09);
}

.amenity-grid article {
  padding: 28px;
}

.gallery {
  background: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5px;
}

.gallery-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--soft);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.gallery-grid figure:hover img {
  filter: brightness(0.72) saturate(1.05);
  transform: scale(1.025);
}

.gallery-zoom {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  color: #fff;
  background: rgba(32, 33, 36, 0.42);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.92);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.gallery-zoom svg,
.gallery-modal button svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gallery-grid figure:hover .gallery-zoom,
.gallery-zoom:focus-visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.gallery-zoom:hover {
  background: rgba(26, 115, 232, 0.86);
}

.gallery-modal {
  position: fixed;
  z-index: 60;
  inset: 0;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  align-items: center;
  gap: clamp(10px, 2vw, 22px);
  padding: clamp(18px, 4vw, 44px);
  background: rgba(10, 22, 38, 0.9);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
  backdrop-filter: blur(14px);
}

.gallery-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.gallery-modal-frame {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin: 0;
}

.gallery-modal-frame img {
  width: min(78vh, 100%);
  height: min(78vh, calc(100vw - 220px));
  max-width: 100%;
  max-height: 78vh;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #111827;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

.gallery-modal-frame figcaption {
  min-height: 24px;
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
}

.gallery-modal button {
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.gallery-modal button:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.gallery-modal-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 48px;
  height: 48px;
}

.gallery-modal-nav {
  width: 56px;
  height: 56px;
  justify-self: center;
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  border-radius: 50%;
}

.google-blue {
  color: var(--blue);
  background: #e8f0fe;
}

.google-red {
  color: var(--red);
  background: #fce8e6;
}

.google-yellow {
  color: #b06000;
  background: #fef7e0;
}

.google-green {
  color: var(--green);
  background: #e6f4ea;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.price-card {
  position: relative;
  padding: 30px;
}

.price-card.featured {
  border-color: #c2d7fb;
  box-shadow: var(--shadow);
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 18px;
  border-radius: 999px;
  padding: 0 12px;
  color: var(--blue);
  background: #e8f0fe;
  font-size: 13px;
  font-weight: 700;
}

.price {
  margin-bottom: 12px;
  color: var(--ink);
  font-family: Poppins, sans-serif;
  font-size: 44px;
  font-weight: 700;
}

.price span {
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
}

.plan-list {
  display: grid;
  gap: 12px;
  min-height: 148px;
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
  color: #3c4043;
}

.plan-list li {
  position: relative;
  padding-left: 30px;
}

.plan-list li::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #e8f0fe;
}

.plan-list li::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 5px;
  width: 7px;
  height: 4px;
  border-bottom: 2px solid var(--blue);
  border-left: 2px solid var(--blue);
  transform: rotate(-45deg);
}

.price-card .button {
  width: 100%;
  margin-top: 18px;
}

.quote-section {
  background: var(--soft-green);
}

.quote-section figure {
  max-width: 980px;
  margin: 0 auto;
}

.quote-section blockquote {
  margin: 0 0 28px;
  font-family: Poppins, sans-serif;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.16;
}

.quote-section figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-weight: 700;
}

.contact {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: stretch;
}

.contact-copy {
  display: flex;
  flex-direction: column;
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: auto;
  padding-top: 28px;
  color: #3c4043;
  font-weight: 500;
}

.contact-details a:hover,
.site-footer a:hover {
  color: var(--blue);
}

.tour-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 36px);
}

.tour-form label {
  display: grid;
  gap: 8px;
  color: #3c4043;
  font-size: 14px;
  font-weight: 700;
}

.tour-form input,
.tour-form select,
.tour-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.tour-form textarea {
  resize: vertical;
}

.tour-form input:focus,
.tour-form select:focus,
.tour-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.15);
}

.tour-form input::placeholder,
.tour-form textarea::placeholder {
  color: #a8adb4;
  font-weight: 400;
}

.tour-form .button {
  width: max-content;
}

.form-target {
  position: absolute;
  width: 0;
  height: 0;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.form-success {
  display: none;
  min-height: 420px;
  place-items: center;
  align-content: center;
  gap: 18px;
  color: var(--ink);
  text-align: center;
}

.form-success-icon {
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  color: var(--green);
  background: #e6f4ea;
}

.form-success-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.form-success p {
  max-width: 360px;
  margin: 0;
  color: #3c4043;
  font-size: 18px;
  font-weight: 500;
}

.tour-form.is-submitted {
  place-items: center;
}

.tour-form.is-submitted > :not(.form-success) {
  display: none;
}

.tour-form.is-submitted .form-success {
  display: grid;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 6vw, 84px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
}

.site-footer a {
  font-weight: 500;
}

.page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
  padding: 0 clamp(20px, 6vw, 84px);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.page-header .brand {
  color: var(--ink);
}

.legal-page {
  background: linear-gradient(180deg, var(--soft) 0%, #fff 280px);
}

.legal-hero,
.legal-content {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
}

.legal-hero {
  padding: clamp(56px, 8vw, 92px) 0 28px;
}

.legal-hero h1 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: clamp(42px, 7vw, 76px);
}

.legal-hero p:not(.eyebrow) {
  color: var(--muted);
}

.legal-content {
  padding: 0 0 clamp(64px, 8vw, 104px);
}

.legal-content h2 {
  margin: 34px 0 10px;
  font-size: 24px;
}

.legal-content p {
  color: #3c4043;
  font-size: 17px;
}

.legal-content a {
  color: var(--blue);
  font-weight: 700;
}

@media (max-width: 980px) {
  .split,
  .contact {
    grid-template-columns: 1fr;
  }

  .section-copy {
    position: static;
  }

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

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

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

@media (max-width: 760px) {
  .site-header {
    min-height: 66px;
  }

  .menu-button {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    top: 66px;
    left: 14px;
    right: 14px;
    display: none;
    grid-template-columns: 1fr;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .site-header.is-open .nav-links {
    display: grid;
  }

  .nav-links a {
    color: var(--ink);
  }

  .hero {
    min-height: 88vh;
    padding: 112px 20px 24px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(10, 22, 38, 0.94) 0%, rgba(10, 22, 38, 0.8) 58%, rgba(10, 22, 38, 0.34) 100%),
      linear-gradient(180deg, rgba(10, 22, 38, 0.44) 0%, rgba(10, 22, 38, 0.14) 48%, rgba(10, 22, 38, 0.46) 100%);
  }

  .hero-content {
    padding: 0 0 56px;
  }

  .hero-panel {
    grid-template-columns: 1fr;
  }

  .hero-panel div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    border-left: 0;
  }

  .space-card {
    grid-template-columns: 1fr;
  }

  .space-card img {
    min-height: 210px;
    aspect-ratio: 16 / 10;
  }

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

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

  .gallery-modal {
    grid-template-columns: 52px minmax(0, 1fr) 52px;
    gap: 6px;
    padding: 18px 10px;
  }

  .gallery-modal-frame img {
    width: min(72vh, 100%);
    height: min(72vh, calc(100vw - 124px));
  }

  .gallery-modal-nav {
    width: 44px;
    height: 44px;
  }

  .gallery-modal-close {
    top: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
  }

  .tour-form .button,
  .button {
    width: 100%;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-header {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .button-secondary {
    margin-top: 0px;
  }

  .space-card div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(22px, 3vw, 36px);
  }

  
}

@media (max-width: 420px) {
  .brand {
    width: 154px;
    min-width: 154px;
  }

  .button-secondary {
    margin-top: 0px;
  }

  .space-card div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(22px, 3vw, 36px);
    background: white;
  }

  .space-card img {
    min-height: 210px;
    aspect-ratio: 11 / 10;
  }
}
