:root {
  --sand: #f3eee5;
  --sand-dark: #ded2c2;
  --cream: #fffdf8;
  --ocean: #2f6870;
  --ocean-dark: #204b51;
  --sky: #b9d8dc;
  --ink: #28302f;
  --muted: #687270;
  --white: #ffffff;
  --border: rgba(40, 48, 47, 0.12);
  --shadow: 0 18px 45px rgba(36, 53, 54, 0.12);
  --serif: "DM Serif Display", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: 78px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ocean);
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.05rem;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
}

.brand small {
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.main-nav a {
  position: relative;
  padding: 28px 0 24px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  background: var(--ocean);
  transition: transform 180ms ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--ink);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.page {
  display: none;
  animation: fadeIn 260ms ease;
}

.page.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: center;
  padding: 90px 7vw;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(rgba(25, 46, 49, 0.24), rgba(25, 46, 49, 0.48)),
    url("images/hero.jpg") center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.16), transparent 28%),
    linear-gradient(90deg, rgba(27, 48, 50, 0.72), rgba(27, 48, 50, 0.1));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

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

h1,
h2,
h3 {
  margin-top: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
}

h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: clamp(3.25rem, 8vw, 7.3rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 5vw, 4.4rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.8rem;
}

.hero-copy {
  max-width: 650px;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.12rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 180ms ease, background 180ms ease;
}

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

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

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

.button-dark {
  background: var(--ocean-dark);
  color: var(--white);
}

.section-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.intro {
  padding: 110px 0 70px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: start;
}

.intro-copy {
  padding-top: 34px;
  color: var(--muted);
  font-size: 1.05rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats article {
  padding: 34px 24px;
  border-right: 1px solid var(--border);
  text-align: center;
}

.stats article:last-child {
  border-right: 0;
}

.stats span {
  display: block;
  margin-bottom: 6px;
  color: var(--ocean);
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.stats p {
  margin: 0;
  color: var(--muted);
}

.feature-grid {
  padding: 90px 0;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 22px;
}

.feature-card {
  min-height: 320px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(36, 53, 54, 0.05);
}

.image-card {
  min-height: 520px;
  padding: 0;
  overflow: hidden;
}

.card-image {
  min-height: 320px;
  flex: 1;
  background-size: cover;
  background-position: center;
}

.feature-image-0 {
  background-image:
    linear-gradient(rgba(33, 70, 75, 0.08), rgba(33, 70, 75, 0.18)),
    url("images/ocean-view-sunset.jpg");
}
.feature-image-1 {
  background-image:
    linear-gradient(rgba(33, 70, 75, 0.08), rgba(33, 70, 75, 0.18)),
    url("images/bigBedRoom.jpg");
}
.feature-image-2 {
  background-image:
    linear-gradient(rgba(33, 70, 75, 0.08), rgba(33, 70, 75, 0.18)),
    url("images/kitchenFeature.jpg");
}

.card-content {
  padding: 28px 32px 34px;
}

.feature-number {
  margin-bottom: auto;
  color: var(--ocean);
  font-weight: 600;
}

.feature-card p {
  color: var(--muted);
}

.quick-links {
  padding: 90px 0 110px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
}

.quick-link-grid {
  border-top: 1px solid var(--border);
}

.quick-link-grid a {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  font-weight: 600;
}

.quick-link-grid a:hover {
  color: var(--ocean);
}

.page-banner {
  min-height: 470px;
  padding: 100px 7vw;
  display: flex;
  align-items: end;
  color: var(--white);
  background-position: center;
  background-size: cover;
}

.page-banner > div {
  max-width: 760px;
}

.page-banner h1 {
  margin-bottom: 16px;
  font-size: clamp(3rem, 7vw, 6.5rem);
}

.page-banner p:last-child {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.88);
}

.activities-banner {
  background-image:
    linear-gradient(rgba(28, 57, 61, 0.18), rgba(28, 57, 61, 0.68)),
    url("images/beach-banner.jpg");
}

.kitchen-banner {
  background-image:
    linear-gradient(rgba(44, 53, 50, 0.24), rgba(44, 53, 50, 0.66)),
    url("images/kitchen-banner.jpg");
}

.faq-banner {
  background-image:
    linear-gradient(rgba(40, 55, 54, 0.18), rgba(40, 55, 54, 0.7)),
    url("images/faq-banner.jpg");
}

.contact-banner {
  background-image:
    linear-gradient(rgba(37, 59, 61, 0.22), rgba(37, 59, 61, 0.7)),
    url("images/contact-banner.jpg");
}

.activity-section {
  padding: 100px 0 120px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 46px;
}

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

.activity-card {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(36, 53, 54, 0.04);
}

.activity-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sand);
  font-size: 1.5rem;
}

.activity-card p,
.activity-card li {
  color: var(--muted);
}

.activity-card ul {
  padding-left: 20px;
}

.kitchen-intro {
  padding: 90px 0 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.notice {
  padding: 28px;
  align-self: center;
  border-left: 4px solid var(--ocean);
  background: var(--sand);
}

.appliance-list {
  padding: 40px 0 120px;
}

.appliance-card {
  margin: 0 0 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.appliance-card.reverse .appliance-image {
  order: 2;
}

.appliance-image {
  min-height: 470px;
  background-position: center;
  background-size: cover;
}

.fridge-image {
  background-image: url("images/bar-ice-maker.jpg");
}

.oven-image {
  background-image: url("images/ocen.png");
}

.coffee-image {
  background-image: url("images/coffee.png");
}

.dishwasher-image {
  background-image: url("images/dishwasher.jpg");
}

.microwave-image {
  background-image: url("images/microwave.jpg");
}

.appliance-content {
  padding: 54px;
  align-self: center;
}

.appliance-content ol {
  padding-left: 22px;
}

.appliance-content li {
  margin-bottom: 12px;
  color: var(--muted);
}

.tip {
  margin-top: 26px;
  padding: 18px;
  border-radius: 12px;
  background: #edf5f5;
}

.tip.warning {
  background: #f7efe3;
}

.faq-layout {
  padding: 100px 0 120px;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 70px;
}

.faq-sidebar {
  align-self: start;
  position: sticky;
  top: 120px;
}

.faq-sidebar p {
  color: var(--muted);
}

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

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font-family: var(--serif);
  font-size: 1.55rem;
  cursor: pointer;
}

.faq-symbol {
  color: var(--ocean);
  transition: transform 180ms ease;
}

.faq-question[aria-expanded="true"] .faq-symbol {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 250ms ease;
}

.faq-answer p {
  margin-top: 0;
  padding: 0 45px 24px 0;
  color: var(--muted);
}

.contact-grid {
  padding: 100px 0 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-card {
  min-height: 340px;
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 22px;
  background: var(--sand);
}

.contact-card.emergency {
  background: var(--ocean-dark);
  color: var(--white);
}

.contact-card.emergency .eyebrow {
  color: var(--sky);
}

.contact-card a {
  margin-top: 8px;
  color: var(--ocean-dark);
  font-weight: 600;
}

footer {
  padding: 44px 5vw;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  color: rgba(255, 255, 255, 0.8);
  background: var(--ink);
}

footer p {
  margin: 5px 0 0;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 78px 0 0;
    padding: 40px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: var(--cream);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    width: 100%;
    padding: 15px 0;
    font-family: var(--serif);
    font-size: 1.8rem;
  }

  .main-nav a::after {
    display: none;
  }

  .intro,
  .quick-links,
  .kitchen-intro,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .stats article:nth-child(2) {
    border-right: 0;
  }

  .stats article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }

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

  .image-card {
    grid-column: 1 / -1;
  }

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

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

  .appliance-card.reverse .appliance-image {
    order: 0;
  }

  .faq-sidebar {
    position: static;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 0 18px;
  }

  .hero {
    min-height: 720px;
    padding: 80px 22px;
  }

  h1 {
    font-size: 3.4rem;
  }

  h2 {
    font-size: 2.7rem;
  }

  .section-shell {
    width: min(100% - 28px, 1180px);
  }

  .intro {
    padding-top: 75px;
  }

  .stats,
  .feature-grid,
  .activity-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .stats article {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .stats article:last-child {
    border-bottom: 0;
  }

  .feature-grid,
  .activity-section,
  .faq-layout,
  .contact-grid {
    padding-top: 70px;
    padding-bottom: 80px;
  }

  .page-banner {
    min-height: 390px;
    padding: 70px 22px;
  }

  .appliance-image {
    min-height: 300px;
  }

  .appliance-content {
    padding: 30px 24px;
  }

  .faq-question {
    font-size: 1.3rem;
  }

  footer {
    flex-direction: column;
  }
}
