@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,500;0,600;1,500;1,600&display=swap");

:root {
  --paper: #f6f2eb;
  --paper-deep: #ece5da;
  --green: #2f5147;
  --green-dark: #1c342e;
  --terracotta: #b86f5e;
  --gold: #c9a45c;
  --ink: #25322e;
  --muted: #68736d;
  --line: rgba(47, 81, 71, 0.2);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --section: clamp(4.5rem, 9vw, 8.5rem);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
}
.sidebar {
  position: fixed;
  top: 50%;
  right: 1rem;
  z-index: 30;
  width: fit-content;
  margin: 0 -3rem;
  padding: 0.7rem 1rem;
  border: 0;
  background:purple;
  color: var(--paper);
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.2;
  box-shadow: 0 8px 20px rgba(28, 52, 46, 0.16);
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center;
}

::selection {
  background: var(--gold);
  color: var(--green-dark);
}
img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -0.035em;
}
h1 {
  font-size: clamp(3.8rem, 8vw, 7.5rem);
  max-width: 20ch;
}
h2 {
  font-size: clamp(2.8rem, 5vw, 5.4rem);
}
h2 em {
  color: var(--terracotta);
  font-weight: 500;
}
h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.2;
}
.section-label {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: center;
}
.site-header {
  position: sticky;
  z-index: 10;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 1.1rem clamp(1.25rem, 4vw, 4.5rem);
  background: rgba(246, 242, 235, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--green);
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.3rem;
}
.brand strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1;
}
.brand small {
  display: block;
  margin-top: 0.28rem;
  color: var(--muted);
  font-size: 0.58rem;
  letter-spacing: 0.07em;
}
.header-actions,
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.desktop-nav {
  gap: 1.25rem;
  color: var(--muted);
  font-size: 0.8rem;
}
.desktop-nav a:hover,
.text-link:hover,
.address a:hover {
  color: var(--terracotta);
}
.location {
  display: flex;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.74rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.9rem 1.35rem;
  border: 0;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}
.button:hover {
  transform: translateY(-2px);
}
.button:focus-visible,
.text-link:focus-visible,
.room-item:focus-visible,
a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}
.button-green {
  background: var(--green);
  color: var(--paper);
}
.button-green:hover {
  background: var(--green-dark);
}
.menu-toggle { display: none; }
.mobile-menu { display: none !important; }
.button-terracotta {
  background: var(--terracotta);
  color: var(--paper);
}
.button-terracotta:hover {
  background: #9e594b;
}
.hero {
  grid-template-columns: 1.1fr 0.9fr;
  min-height: auto;
  padding: clamp(3rem, 6vw, 5.5rem) clamp(1.25rem, 7vw, 8rem);
}

.hero h1 {
  max-width: 14ch;
}
.hero-copy > p:not(.section-label) {
  max-width: 48ch;
  margin-top: 2rem;
  color: var(--ink);
  font-weight: 500;
  font-size: 1.05rem;
}
.hero-rule {
  width: 5rem;
  margin: 2.5rem 0 1.5rem;
  border-top: 2px solid var(--gold);
}
.hero-buttons {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.text-link {
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 700;
}

.text-link.whatsapp {
  padding: 0.9rem 1.35rem;
  background: var(--green);
  color: var(--paper);
}

.text-link.whatsapp:hover {
  background: var(--green-dark);
  color: var(--paper);
}
.whatsapp-icon { display: inline-flex; align-items: center; vertical-align: middle; }
.whatsapp-icon img { width: 1rem; height: 1rem; object-fit: contain; }
.hero-gallery {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: 1.1fr 0.9fr;
  gap: 0.8rem;
  min-height: 28rem;
}
.hero-tile {
  overflow: hidden;
  background: var(--paper-deep);
}
.hero-tile-main {
  grid-row: span 2;
}
.hero-tile img {
  transition: transform 0.8s ease;
}
.hero-tile:hover img {
  transform: scale(1.04);
}
.intro,
.rooms,
.care {
  padding: var(--section) clamp(1.25rem, 8vw, 9rem);
}

.intro-image {
  height: clamp(24rem, 42vw, 42rem);
  background: transparent;
}

.intro-image img {
  object-position: center;
}

.about-golden-living {
  width: 130%;
  margin-left: -10%;
}

.about-golden-living .chess-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.media-frame {
  overflow: hidden;
  background: var(--paper-deep);
}
.intro-copy p:not(.section-label) {
  max-width: 51ch;
  margin-top: 1.7rem;
  color: var(--muted);
}
.difference,
.rhythm {
  padding: var(--section) clamp(1.25rem, 8vw, 9rem);
  background: var(--green);
  color: var(--paper);
}
.difference .section-label,
.rhythm .section-label,
.philosophy .section-label {
  color: #dfc17f;
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 5rem;
  border-top: 1px solid rgba(246, 242, 235, 0.25);
}
.benefit-grid > div {
  min-height: 10rem;
  padding: 2rem 1.2rem 1rem 0;
  border-bottom: 1px solid rgba(246, 242, 235, 0.25);
}
.benefit-grid span,
.rhythm-icon {
  display: block;
  margin-bottom: 1.2rem;
  color: var(--gold);
  font-size: 1.8rem;
}
.benefit-grid h3 {
  max-width: 12ch;
  font-size: 1.35rem;
}
.rooms {
  grid-template-columns: 0.7fr 1fr;
  align-items: start;
}
.section-intro p:not(.section-label) {
  max-width: 34ch;
  margin-top: 1.5rem;
  color: var(--ink);
}
.room-list {
  display: grid;
  gap: 0;
}
.room-item {
  display: grid;
  grid-template-columns: 4.5rem 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  background: none;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--green);
  text-align: left;
}
.room-item img {
  width: 4.5rem;
  height: 4.5rem;
}
.room-item b {
  display: block;
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}
.room-item strong {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
}
.room-item i {
  font-style: normal;
  font-size: 1.4rem;
  transition: transform 0.25s ease;
}
.room-item:hover i,
.room-item.active i {
  transform: translate(3px, -3px);
}
.room-feature {
  grid-column: 2;
  height: clamp(22rem, 42vw, 39rem);
  margin-top: 2rem;
}
.rhythm {
  background: var(--paper-deep);
  color: var(--green);
}
.rhythm-line {
  width: 100%;
  margin: 4rem 0 2.5rem;
  border-top: 1px solid var(--line);
}
.rhythm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.rhythm-grid article {
  display: grid;
  grid-template-rows: 3rem 3rem 14rem auto;
}
.rhythm-grid h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.rhythm-icon{height:3rem;display:flex;align-items:flex-start}
.rhythm-grid img,
.food-image,
.activity-image {
  height: 14rem;
  margin-bottom: 1.1rem;
  background-position: center;
  background-size: cover;
}
.food-image {
  background-image: url("images/room double bed 2.png");
}
.activity-image {
  background-image: url("images/Room bed 3-2.png");
}
.rhythm-grid p {
  max-width: 24ch;
  color: var(--muted);
  font-size: 0.9rem;
}
.philosophy {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(3rem, 8vw, 10rem);
  align-items: end;
  padding: var(--section) clamp(1.25rem, 8vw, 9rem);
  background: var(--green-dark);
  color: var(--paper);
}
.philosophy > p {
  max-width: 44ch;
  color: #c4d0c9;
  font-size: 1.05rem;
}
.care {
  background: var(--paper-deep);
  align-items: start;
}
.care-copy > p {
  max-width: 42ch;
  color: var(--muted);
}
.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 3rem;
  border-top: 1px solid var(--line);
}
.service-list span {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--green);
  font-family: var(--serif);
}
.service-list .service-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.65rem 1rem;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: rgba(201, 164, 92, 0.12);
  font-family: var(--sans);
  font-size: 0.78rem;
  line-height: 1.2;
}
.meals-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}
.meals-list .service-badge {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0.65rem 1rem;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: rgba(201, 164, 92, 0.12);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.2;
}

.visit {
  padding: var(--section) clamp(1.25rem, 8vw, 9rem);
  background: var(--terracotta);
  color: var(--paper);
}
.visit .section-label {
  color: #f2d5a2;
}
.visit h2 {
  margin: 1rem 0 2rem;
}
.address {
  padding: 1.5rem;
  border-left: 1px solid rgba(246, 242, 235, 0.5);
  font-size: 0.95rem;
}
.address strong {
  font-family: var(--serif);
  font-size: 1.4rem;
}
.address p {
  margin: 1rem 0 1.5rem;
  color: #f6e0d9;
}
.address a {
  font-weight: 700;
}
.visit .button-green {
  background: var(--green);
}
.visit-phone {
  display: inline-block;
  margin-top: 1rem;
  color: var(--paper);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(246, 242, 235, 0.6);
  text-underline-offset: 0.25em;
}
.visit-phone:hover,
.visit-phone:focus-visible {
  color: #f2d5a2;
  text-decoration-color: currentColor;
}
footer {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem clamp(1.25rem, 4vw, 4.5rem);
  background: var(--green-dark);
  color: #b5c4bc;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
}
.mobile-whatsapp {
  position: fixed;
  z-index: 20;
  right: 1.5rem;
  bottom: 1.5rem;
  display: grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--green);
  color: var(--paper);
  box-shadow: 0 8px 25px rgba(28, 52, 46, 0.25);
}
.mobile-whatsapp img {
  width: 2.25rem;
  height: 2.25rem;
  object-fit: contain;
}
@media (max-width: 1050px) {
  .desktop-nav {
    display: none;
  }
  .location span {
    display: none;
  }
  .header-actions {
    gap: 1rem;
  }
  .hero {
    min-height: 60vh;
  }
  .section-grid {
    gap: 3rem;
  }
}
@media (max-width: 700px) {
  h1 {
    font-size: clamp(3.5rem, 17vw, 5.4rem);
  }
  h2 {
    font-size: clamp(2.8rem, 13vw, 4.4rem);
  }
  .site-header {
    padding: 0.85rem 1.1rem;
  }
  .brand small {
    display: none;
  }
  .header-actions > .location {
    display: none;
  }
  .menu-toggle {
    display: grid;
    place-content: center;
    gap: 0.25rem;
    width: 2.8rem;
    height: 2.8rem;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--green);
    cursor: pointer;
  }
  .menu-toggle span {
    display: block;
    width: 1.1rem;
    height: 2px;
    background: var(--paper);
  }
  .mobile-menu {
    position: absolute;
    top: 100%;
    right: 1.1rem;
    display: none;
    flex-direction: column;
    min-width: 11rem;
    padding: 0.75rem;
    background: var(--paper);
    box-shadow: 0 10px 25px rgba(28, 52, 46, 0.16);
  }
  .mobile-menu.is-open {
    display: flex !important;
  }
  .mobile-menu a {
    padding: 0.65rem 0.75rem;
    color: var(--green);
    font-size: 0.85rem;
  }
  .hero,
  .intro,
  .rooms,
  .care,
  .difference,
  .rhythm,
  .philosophy,
  .visit {
    padding: 5rem 1.25rem;
  }
  .hero,
  .intro,
  .rooms,
  .philosophy,
  .care,
  .visit {
    display: block;
  }
  .hero-copy {
    margin-bottom: 3.5rem;
  }

  .hero h1 {
    max-width: 14ch;
  }
  .hero-copy > p:not(.section-label) {
    font-size: 0.98rem;
  }
  .hero-gallery {
    min-height: 27rem;
    grid-template-columns: 1.2fr 0.8fr;
  }
  .intro-image {
    height: 25rem;
    margin-bottom: 3rem;
  }

  .about-golden-living {
    width: 100%;
    margin-left: 0;
  }
  .benefit-grid,
  .rhythm-grid {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 3rem;
  }
  .benefit-grid > div {
    min-height: auto;
    padding: 1.4rem 0;
  }
  .room-list {
    margin-top: 2.5rem;
  }
  .room-feature {
    height: 24rem;
    margin-top: 1.5rem;
  }
  .rhythm-line {
    margin: 3rem 0 1rem;
  }
  .rhythm-grid article {
    margin-top: 2rem;
  }
  .philosophy > p {
    margin-top: 2.5rem;
  }
  .service-list {
    margin-top: 2.5rem;
  }
  .visit h2 {
    margin-bottom: 2rem;
  }
  .address {
    margin-top: 3rem;
    padding: 1.5rem 0;
    border-left: 0;
    border-top: 1px solid rgba(246, 242, 235, 0.5);
  }
  footer {
    display: block;
  }
  .footer span {
    display: block;
  }
  .mobile-whatsapp {
    position: fixed;
    z-index: 20;
    right: 1rem;
    bottom: 1rem;
    display: grid;
    place-items: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: var(--green);
    color: var(--paper);
    box-shadow: 0 8px 25px rgba(28, 52, 46, 0.25);
    font-size: 1.2rem;
  }
  .mobile-whatsapp img {
    width: 2.25rem;
    height: 2.25rem;
    object-fit: contain;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition-duration: 0.01ms !important;
  }
}

.seniorsimg {
 
  width: 70%;
  position: absolute;
  height: auto;
  right: -10%;
  top :35%;
  
}

@media (max-width: 1000px) {
  .seniorsimg {
    display: none;
  }
}


.chess-image{
  
  width: 100%;
  position: relative;
  height:auto;

}
