:root {
  --cream: #fff9ed;
  --paper: #fff3df;
  --gold: #a87928;
  --deep-gold: #7f551c;
  --ink: #2d2214;
  --muted: #75664f;
  --plum: #6f2b84;
  --green: #174f3b;
  --line: rgba(168, 121, 40, 0.26);
  --shadow: 0 22px 60px rgba(65, 42, 15, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(111, 43, 132, 0.08), transparent 26%),
    linear-gradient(180deg, #fffaf0 0%, #fff2dd 50%, #fffaf0 100%);
  color: var(--ink);
  font-family: "Trebuchet MS", Arial, sans-serif;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 249, 237, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: grid;
  color: var(--deep-gold);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1;
  text-transform: uppercase;
}

.brand span {
  font-size: 24px;
  font-weight: 700;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
  color: var(--muted);
  font-size: 14px;
  text-transform: uppercase;
}

.nav a:hover {
  color: var(--plum);
}

.nav-call,
.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 4px;
  padding: 12px 20px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-call {
  color: var(--deep-gold);
  font-size: 13px;
}

.btn.primary {
  background: var(--gold);
  color: #fffaf0;
  box-shadow: 0 12px 28px rgba(127, 85, 28, 0.22);
}

.btn.ghost {
  background: rgba(255, 249, 237, 0.72);
  color: var(--deep-gold);
}

.section-frame {
  position: relative;
  overflow: hidden;
}

.hero {
  min-height: calc(100vh - 73px);
  display: grid;
  place-items: center;
  isolation: isolate;
}

.hero img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(180deg, rgba(255, 249, 237, 0.08), rgba(255, 249, 237, 0.82));
}

.hero-content {
  width: min(820px, calc(100% - 36px));
  margin-top: 6vh;
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--deep-gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.08;
}

h1 {
  color: rgba(127, 85, 28, 0.92);
  font-size: clamp(56px, 10vw, 128px);
  max-width: 100%;
  text-transform: uppercase;
}

h2 {
  color: var(--deep-gold);
  font-size: clamp(32px, 5vw, 64px);
}

h3 {
  color: var(--ink);
  font-size: 25px;
}

p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.hero-content p:not(.eyebrow) {
  width: min(660px, 100%);
  margin: 18px auto 0;
  color: #4f432f;
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.intro,
.showcase,
.amenities,
.trust,
.contact {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 90px 0;
}

.intro {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 48px;
  align-items: start;
}

.feature-grid {
  width: min(1180px, calc(100% - 36px));
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 0 auto 54px;
}

.feature-card,
.lead-form,
.trust-grid article,
.amenity-list article {
  background: rgba(255, 249, 237, 0.76);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-card {
  overflow: hidden;
}

.feature-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.feature-card div {
  padding: 26px;
}

.feature-card span {
  color: var(--plum);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.showcase {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 44px;
  align-items: center;
}

.showcase.reverse {
  grid-template-columns: 1fr 0.82fr;
}

.showcase > img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.ticks {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.ticks li {
  position: relative;
  padding-left: 28px;
  color: #4f432f;
}

.ticks li::before {
  position: absolute;
  left: 0;
  color: var(--gold);
  content: "✦";
}

.section-title {
  width: min(820px, 100%);
  margin-bottom: 34px;
}

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

.amenity-list article,
.trust-grid article {
  padding: 26px;
}

.amenity-list article {
  display: grid;
  align-content: start;
  gap: 14px;
}

.amenity-list img {
  width: 100%;
  aspect-ratio: 1 / 1.22;
  object-fit: cover;
  border: 1px solid rgba(168, 121, 40, 0.35);
  box-shadow: 0 10px 22px rgba(65, 42, 15, 0.12);
}

.amenity-list p,
.trust-grid p {
  margin-bottom: 0;
}

.image-band {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.image-band img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.stat-row span {
  min-height: 96px;
  padding: 18px;
  background: rgba(255, 249, 237, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
}

.stat-row strong {
  display: block;
  color: var(--plum);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

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

.faqs {
  width: min(960px, calc(100% - 36px));
  margin: 0 auto;
  padding: 90px 0 0;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  background: rgba(255, 249, 237, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(65, 42, 15, 0.1);
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--deep-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
}

.gallery {
  width: min(1180px, calc(100% - 36px));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0 auto;
}

.gallery img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 48px;
  align-items: start;
}

.phone-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--plum);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 700;
}

.lead-form {
  display: grid;
  gap: 18px;
  padding: 28px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--deep-gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(168, 121, 40, 0.45);
  border-radius: 4px;
  padding: 14px 15px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--plum);
  outline: 2px solid rgba(111, 43, 132, 0.12);
}

.form-note {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
}

.float-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  padding: 0 18px;
  background: var(--green);
  color: white;
  box-shadow: 0 16px 34px rgba(23, 79, 59, 0.28);
  font-weight: 800;
  text-transform: uppercase;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 28px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  background: rgba(255, 249, 237, 0.82);
}

footer p {
  margin: 0;
  font-size: 13px;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .intro,
  .feature-grid,
  .showcase,
  .showcase.reverse,
  .amenity-list,
  .trust-grid,
  .gallery,
  .contact {
    grid-template-columns: 1fr;
  }

  .showcase.reverse img {
    order: 2;
  }

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

@media (max-width: 560px) {
  .site-header {
    min-height: 72px;
    padding: 12px 16px;
    gap: 8px;
    overflow: hidden;
  }

  .brand span {
    font-size: 18px;
  }

  .brand small {
    font-size: 9px;
    letter-spacing: 1.2px;
  }

  .nav-call {
    position: fixed;
    top: 13px;
    right: 14px;
    width: 68px;
    min-height: 36px;
    flex: 0 0 auto;
    padding: 8px 0;
    font-size: 10px;
    white-space: nowrap;
  }

  .hero {
    display: flex;
    min-height: auto;
    padding: 0 0 38px;
    flex-direction: column;
    justify-content: flex-start;
  }

  .hero img {
    position: relative;
    inset: auto;
    z-index: 0;
    width: 100%;
    height: 390px;
    object-fit: cover;
    object-position: 50% 12%;
    opacity: 0.48;
    transform: none;
  }

  .hero::after {
    display: none;
  }

  .hero-content {
    width: min(100% - 36px, 350px);
    margin-top: -245px;
    padding: 0;
    z-index: 1;
  }

  h1 {
    font-size: clamp(34px, 11vw, 42px);
    line-height: 1.02;
    overflow-wrap: normal;
    word-break: normal;
  }

  .eyebrow {
    font-size: 11px;
    line-height: 1.5;
    letter-spacing: 1px;
    overflow-wrap: anywhere;
  }

  .hero-content p:not(.eyebrow) {
    width: min(100%, 320px);
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.55;
  }

  h2 {
    font-size: 31px;
    line-height: 1.12;
  }

  h3 {
    font-size: 23px;
  }

  .intro,
  .showcase,
  .amenities,
  .trust,
  .faqs,
  .contact {
    padding: 64px 0;
  }

  .hero-actions {
    display: grid;
    width: min(100%, 240px);
    margin-inline: auto;
  }

  .btn {
    width: 100%;
  }

  .phone-link {
    font-size: 25px;
    overflow-wrap: anywhere;
  }

  .feature-card div,
  .amenity-list article,
  .trust-grid article,
  .lead-form {
    padding: 20px;
  }

  .amenity-list {
    gap: 14px;
  }

  .faq-list summary {
    padding: 17px 18px;
    font-size: 19px;
  }

  .faq-list p {
    padding: 0 18px 18px;
  }

  .float-whatsapp {
    right: 16px;
    bottom: 14px;
    width: 84px;
    max-width: calc(100vw - 44px);
    min-height: 44px;
    padding: 0;
    font-size: 11px;
  }
}
