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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 300;
  color: #1A1A18;
  background-color: #FBFAF8;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.8;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
}

.nav.scrolled {
  background: rgba(251, 250, 248, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(10, 22, 40, 0.06);
}

.nav.scrolled .nav-logo {
  color: #0A1628;
}

.nav.scrolled .nav-link {
  color: #1A1A18;
}

.nav.scrolled .nav-toggle span {
  background: #0A1628;
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.01em;
}

.nav-logo-icon {
  color: #7ECFC0;
}

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

.nav-link {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.nav-link:hover {
  opacity: 1;
  color: #7ECFC0;
}

.nav-cta {
  background: #7ECFC0;
  color: #0A1628 !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.nav-cta:hover {
  background: #B5E5D8;
  opacity: 1;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav-toggle span {
  width: 22px;
  height: 1.5px;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s ease;
}

.mobile-menu-link:hover {
  color: #7ECFC0;
  opacity: 1;
}

.mobile-menu-cta {
  margin-top: 12px;
  background: #7ECFC0;
  color: #0A1628 !important;
  padding: 14px 36px;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0A1628 0%, #132238 60%, #1a2d47 100%);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 140%;
  background: radial-gradient(ellipse, rgba(126, 207, 192, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  flex: 1;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7ECFC0;
  margin-bottom: 28px;
}

.hero-eyebrow-line {
  width: 32px;
  height: 1px;
  background: #7ECFC0;
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  font-weight: 300;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero-accent {
  color: #7ECFC0;
  font-style: italic;
}

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  max-width: 440px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 500;
  color: #fff;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.12);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 600px;
}

.hero-img-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 75%;
  height: 85%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.3);
}

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

.hero-img-secondary {
  position: absolute;
  bottom: 8%;
  left: 0;
  width: 55%;
  height: 45%;
  border-radius: 8px;
  overflow: hidden;
  border: 4px solid #0A1628;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

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

.hero-img-accent {
  position: absolute;
  top: 5%;
  left: 20%;
  width: 40%;
  height: 28%;
  border-radius: 6px;
  overflow: hidden;
  border: 3px solid rgba(126, 207, 192, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

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

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

.hero-scroll svg {
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: #7ECFC0;
  color: #0A1628;
}

.btn-primary:hover {
  background: #B5E5D8;
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(126, 207, 192, 0.3);
}

.btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-ghost:hover {
  border-color: #7ECFC0;
  color: #7ECFC0;
  opacity: 1;
}

.btn-ghost-light {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.14);
  opacity: 1;
}

.btn-outline {
  background: transparent;
  color: #0A1628;
  border: 1px solid rgba(10, 22, 40, 0.2);
}

.btn-outline:hover {
  border-color: #7ECFC0;
  color: #0A1628;
  opacity: 1;
}

.btn-full {
  width: 100%;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 0.95rem;
}

/* ── Section Shared ── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7ECFC0;
  margin-bottom: 16px;
}

.section-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: #7ECFC0;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 400;
  line-height: 1.1;
  color: #0A1628;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.title-accent {
  color: #7ECFC0;
  font-style: italic;
}

.section-sub {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #8A8580;
  max-width: 520px;
}

/* ── Rooms ── */
.rooms {
  padding: 120px 0;
  background: #FBFAF8;
}

.rooms .container {
  max-width: 1280px;
}

.section-header {
  margin-bottom: 64px;
}

.section-header .section-sub {
  margin-top: 16px;
}

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

.room-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(10, 22, 40, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(10, 22, 40, 0.12);
}

.room-card-img {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.room-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.room-card:hover .room-card-img img {
  transform: scale(1.05);
}

.room-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #0A1628;
  color: #7ECFC0;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
}

.room-card-body {
  padding: 28px;
}

.room-card-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 12px;
  gap: 8px;
}

.room-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #0A1628;
}

.room-card-detail {
  font-size: 0.8rem;
  color: #8A8580;
  white-space: nowrap;
}

.room-card-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #8A8580;
  margin-bottom: 20px;
}

.room-card-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.room-card-amenities li {
  list-style: none;
  font-size: 0.78rem;
  color: #1A1A18;
  background: #F4FAF8;
  padding: 5px 12px;
  border-radius: 100px;
  font-weight: 400;
}

/* ── Experience ── */
.experience {
  padding: 120px 0;
  background: linear-gradient(180deg, #F4FAF8 0%, #FBFAF8 100%);
}

.experience-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.experience-text {
  max-width: 520px;
}

.experience-text .section-sub {
  margin-bottom: 40px;
}

.experience-features {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.exp-feature {
  display: flex;
  gap: 20px;
}

.exp-feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7ECFC0;
  box-shadow: 0 2px 12px rgba(10, 22, 40, 0.06);
}

.exp-feature-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #0A1628;
  margin-bottom: 4px;
}

.exp-feature-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: #8A8580;
}

.experience-visual {
  position: relative;
  height: 600px;
}

.exp-img-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

.exp-img-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 78%;
  height: 82%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(10, 22, 40, 0.12);
}

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

.exp-img-float {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 55%;
  height: 50%;
  border-radius: 12px;
  overflow: hidden;
  border: 5px solid #F4FAF8;
  box-shadow: 0 16px 40px rgba(10, 22, 40, 0.1);
}

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

/* ── Setting ── */
.setting {
  padding: 120px 0;
  background: #FBFAF8;
}

.setting-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.setting-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.setting-img-large {
  grid-column: 1 / -1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(10, 22, 40, 0.1);
}

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

.setting-img-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.setting-img-small {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(10, 22, 40, 0.08);
}

.setting-img-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.setting-img-small:hover img {
  transform: scale(1.04);
}

.setting-text {
  max-width: 520px;
}

.setting-text .section-sub {
  margin-bottom: 16px;
}

.setting-highlights {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.setting-highlight {
  display: flex;
  align-items: center;
  gap: 16px;
}

.setting-highlight-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #7ECFC0;
  line-height: 1;
  min-width: 32px;
}

.setting-highlight-text {
  font-size: 0.95rem;
  color: #1A1A18;
  font-weight: 400;
}

/* ── Testimonial ── */
.testimonial {
  padding: 100px 0;
  background: #0A1628;
  position: relative;
  overflow: hidden;
}

.testimonial::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 50%;
  height: 160%;
  background: radial-gradient(ellipse, rgba(126, 207, 192, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.testimonial-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.testimonial-quote {
  color: #7ECFC0;
  margin-bottom: 28px;
  opacity: 0.5;
}

.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
}

.testimonial-meta {
  display: flex;
  justify-content: center;
}

.testimonial-source {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7ECFC0;
}

/* ── CTA ── */
.cta {
  padding: 120px 0;
  background: linear-gradient(135deg, #F4FAF8 0%, #E8F5F0 50%, #FBFAF8 100%);
}

.cta-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.cta-eyebrow::before {
  display: none;
}

.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 400;
  line-height: 1.1;
  color: #0A1628;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.cta-sub {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #8A8580;
  margin-bottom: 40px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Contact ── */
.contact {
  padding: 120px 0;
  background: #FBFAF8;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-info {
  max-width: 420px;
}

.contact-info .section-sub {
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-detail-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: #F4FAF8;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7ECFC0;
}

.contact-detail-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8A8580;
  margin-bottom: 4px;
}

.contact-detail-value {
  font-size: 0.95rem;
  color: #1A1A18;
  font-weight: 400;
}

.contact-link:hover {
  opacity: 1;
  color: #7ECFC0;
}

/* Form */
.contact-form-wrap {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(10, 22, 40, 0.06);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8A8580;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(10, 22, 40, 0.12);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: #1A1A18;
  background: #FBFAF8;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.form-input:focus {
  border-color: #7ECFC0;
  box-shadow: 0 0 0 3px rgba(126, 207, 192, 0.15);
  background: #fff;
}

.form-input::placeholder {
  color: #bbb;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%238A8580' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: #F4FAF8;
  border-radius: 8px;
  border: 1px solid rgba(126, 207, 192, 0.3);
  font-size: 0.9rem;
  color: #0A1628;
  font-weight: 400;
}

.form-success.show {
  display: flex;
}

.form-success svg {
  flex-shrink: 0;
  color: #7ECFC0;
}

/* ── Footer ── */
.footer {
  background: #0A1628;
  padding: 72px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  max-width: 340px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 16px;
}

.footer-logo-icon {
  color: #7ECFC0;
}

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.4);
}

.footer-links {
  display: flex;
  gap: 48px;
}

.footer-link-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7ECFC0;
  margin-bottom: 4px;
}

.footer-link-col a,
.footer-link-col span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s ease;
  line-height: 1.6;
}

.footer-link-col a:hover {
  color: #7ECFC0;
  opacity: 1;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.25);
}

/* ── Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual {
    height: 450px;
    order: -1;
  }

  .hero-content {
    text-align: center;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

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

  .experience-layout,
  .setting-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .experience-text,
  .setting-text,
  .contact-info {
    max-width: 100%;
  }

  .experience-visual,
  .setting-images {
    height: 400px;
  }

  .setting-images {
    height: auto;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding: 100px 24px 60px;
  }

  .hero-visual {
    height: 360px;
  }

  .hero-img-main {
    width: 65%;
    height: 80%;
  }

  .hero-img-secondary {
    width: 55%;
    height: 45%;
  }

  .hero-img-accent {
    width: 45%;
    height: 30%;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .rooms-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .rooms,
  .experience,
  .setting,
  .cta,
  .contact {
    padding: 80px 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: 28px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-links {
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-actions .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .hero-visual {
    height: 280px;
  }

  .hero-img-accent {
    display: none;
  }

  .hero-headline {
    font-size: 2.1rem;
  }

  .section-title {
    font-size: 1.85rem;
  }
}
