:root {
      --navy: #1d4a72;
      --navy-dark: #143452;
      --green: #6fb539;
      --green-dark: #5a9a2a;
      --sun: #f4b223;
      --wave: #4ba3c7;
      --ink: #1a2733;
      --ink-soft: #4d5b69;
      --line: #e6ebf0;
      --bg: #ffffff;
      --bg-soft: #f7f5ef;
      --bg-sand: #fbf7ec;
      --shadow-sm: 0 2px 8px rgba(20, 52, 82, 0.06);
      --shadow-md: 0 12px 32px rgba(20, 52, 82, 0.10);
      --radius: 14px;
      --maxw: 1240px;
    }
    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
      color: var(--ink);
      background: var(--bg);
      font-size: 17px;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }
    h1, h2, h3, h4 {
      font-family: 'Fraunces', Georgia, serif;
      color: var(--navy);
      font-weight: 600;
      letter-spacing: -0.01em;
      margin: 0 0 0.5em;
      text-wrap: balance;
    }
    p { margin: 0 0 1em; text-wrap: pretty; }
    a { color: var(--navy); text-decoration: none; }
    a:hover { color: var(--green-dark); }
    img { max-width: 100%; display: block; }
    .container {
      max-width: var(--maxw);
      margin: 0 auto;
      padding: 0 28px;
    }

    /* ---------- Utility Bar ---------- */
    .utility {
      background: var(--navy);
      color: #fff;
      font-size: 14px;
    }
    .utility .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 10px;
      padding-bottom: 10px;
      gap: 16px;
      flex-wrap: wrap;
    }
    .utility .tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: #d9e7f3;
    }
    .utility .tag svg { width: 14px; height: 14px; }
    .utility-right { display: flex; gap: 22px; align-items: center; }
    .utility-right a { color: #fff; }
    .utility-right a:hover { color: var(--sun); }

    /* ---------- Header / Nav ---------- */
    .header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: saturate(140%) blur(10px);
      border-bottom: 1px solid var(--line);
    }
    .header .container {
      display: flex;
      align-items: center;
      gap: 32px;
      padding-top: 14px;
      padding-bottom: 14px;
    }
    .logo img { height: 56px; width: auto; }
    .nav {
      display: flex;
      gap: 28px;
      margin-left: auto;
      align-items: center;
    }
    .nav > a {
      font-weight: 500;
      font-size: 15px;
      color: var(--ink);
      letter-spacing: 0.02em;
      position: relative;
      padding: 6px 0;
    }
    .nav a.btn { padding: 12px 22px; }
    .nav a.btn::after { display: none; }
    .nav > a.active { color: var(--green-dark); }
    .nav > a:hover { color: var(--green-dark); }
    .nav > a::after {
      content: "";
      position: absolute;
      left: 0; right: 0; bottom: -2px;
      height: 2px;
      background: var(--green);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .25s ease;
    }
    .nav > a:hover::after, .nav > a.active::after { transform: scaleX(1); }
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: 'Inter', sans-serif;
      font-weight: 600;
      font-size: 15px;
      padding: 12px 22px;
      border-radius: 999px;
      border: none;
      cursor: pointer;
      transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
      text-decoration: none;
      white-space: nowrap;
    }
    .btn svg { width: 16px; height: 16px; flex: 0 0 auto; }
    .btn-primary {
      background: var(--green);
      color: #fff;
      box-shadow: 0 4px 14px rgba(111, 181, 57, 0.35);
    }
    .btn-primary:hover {
      background: var(--green-dark);
      color: #fff;
      transform: translateY(-1px);
      box-shadow: 0 6px 18px rgba(111, 181, 57, 0.45);
    }
    .btn-secondary {
      background: #fff;
      color: var(--navy);
      border: 1.5px solid var(--navy);
    }
    .btn-secondary:hover {
      background: var(--navy);
      color: #fff;
    }
    .btn-ghost {
      background: rgba(255, 255, 255, 0.95);
      color: var(--navy);
      border: 1.5px solid transparent;
    }
    .btn-ghost:hover {
      background: var(--navy);
      color: #fff;
      transform: translateY(-1px);
    }
    .btn-sun {
      background: var(--sun);
      color: var(--navy-dark);
      box-shadow: 0 4px 14px rgba(244, 178, 35, 0.4);
    }
    .btn-sun:hover {
      background: #ecaa1a;
      color: var(--navy-dark);
      transform: translateY(-1px);
    }

    /* Mobile hamburger */
    .nav-toggle {
      display: none;
      background: none;
      border: 0;
      margin-left: auto;
      padding: 8px;
      cursor: pointer;
    }
    .nav-toggle span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--navy);
      margin: 5px 0;
      border-radius: 2px;
    }

    /* ---------- Hero ---------- */
    .hero {
      position: relative;
      height: min(82vh, 760px);
      min-height: 540px;
      overflow: hidden;
      isolation: isolate;
      background: #143452;
    }
    .hero img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center bottom;
      z-index: -2;
    }
    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.45) 45%, rgba(0, 0, 0, 0.8) 100%);
      z-index: -1;
    }
    .hero-content {
      max-width: var(--maxw);
      margin: 0 auto;
      padding: 0 28px;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding-bottom: 80px;
      color: #fff;
    }
    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #fff;
      background: rgba(255,255,255,0.12);
      backdrop-filter: blur(6px);
      border: 1px solid rgba(255,255,255,0.25);
      padding: 8px 16px;
      border-radius: 999px;
      width: fit-content;
      margin-bottom: 22px;
      font-weight: 500;
    }
    .hero-eyebrow .dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: var(--sun);
      box-shadow: 0 0 0 4px rgba(244,178,35,0.25);
    }
    .hero h1 {
      color: #fff;
      font-size: clamp(40px, 6.4vw, 78px);
      line-height: 1.04;
      margin: 0 0 18px;
      font-weight: 500;
      letter-spacing: -0.02em;
      max-width: 900px;
    }
    .hero h1 em {
      font-style: italic;
      font-weight: 400;
      color: var(--sun);
    }
    .hero p {
      font-size: clamp(17px, 1.4vw, 20px);
      max-width: 580px;
      color: rgba(255,255,255,0.92);
      margin-bottom: 32px;
    }
    .hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
    .hero-stats {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: #fff;
      border-top: 4px solid var(--green);
    }
    .hero-stats-inner {
      max-width: var(--maxw);
      margin: 0 auto;
      padding: 22px 28px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }
    .hero-stat {
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .hero-stat .stat-icon {
      flex: 0 0 44px;
      height: 44px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      background: var(--bg-sand);
      color: var(--navy);
    }
    .hero-stat .stat-icon.green { background: #eef7e3; color: var(--green-dark); }
    .hero-stat .stat-icon.sun { background: #fdf2d4; color: #b78a16; }
    .hero-stat .stat-icon.wave { background: #e0f0f6; color: #2c7a98; }
    .hero-stat svg { width: 22px; height: 22px; }
    .hero-stat .stat-num {
      font-family: 'Fraunces', serif;
      font-size: 22px;
      font-weight: 600;
      color: var(--navy);
      line-height: 1;
    }
    .hero-stat .stat-label {
      font-size: 13px;
      color: var(--ink-soft);
      margin-top: 4px;
    }

    /* ---------- Section base ---------- */
    section { padding: 110px 0; }
    .section-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--green-dark);
      font-size: 13px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      font-weight: 600;
      margin-bottom: 14px;
    }
    .section-eyebrow::before {
      content: "";
      width: 28px;
      height: 2px;
      background: var(--green);
    }
    .section-title {
      font-size: clamp(32px, 4vw, 52px);
      line-height: 1.1;
      margin: 0 0 16px;
      font-weight: 500;
    }
    .section-lead {
      font-size: 18px;
      color: var(--ink-soft);
      max-width: 640px;
    }

    /* ---------- Welcome ---------- */
    .welcome {
      padding-top: 110px;
      padding-bottom: 110px;
    }
    .welcome-grid {
      display: grid;
      grid-template-columns: 1.05fr 1fr;
      gap: 90px;
      align-items: center;
    }
    .welcome-copy h2 em {
      color: var(--green-dark);
      font-style: italic;
      font-weight: 400;
    }
    .welcome-meta {
      display: flex;
      gap: 28px;
      margin-top: 32px;
      flex-wrap: wrap;
    }
    .welcome-meta div {
      border-left: 2px solid var(--green);
      padding-left: 14px;
    }
    .welcome-meta .k {
      font-family: 'Fraunces', serif;
      font-size: 28px;
      color: var(--navy);
      font-weight: 600;
      line-height: 1;
    }
    .welcome-meta .v {
      font-size: 13px;
      color: var(--ink-soft);
      margin-top: 6px;
      letter-spacing: 0.04em;
    }
    .welcome-visual {
      position: relative;
      aspect-ratio: 4/5;
    }
    .welcome-visual .photo {
      position: absolute;
      inset: 0;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-md);
    }
    .welcome-visual .photo img { width: 100%; height: 100%; object-fit: cover; }
    .welcome-visual .badge {
      position: absolute;
      bottom: -32px;
      left: -32px;
      width: 170px;
      height: 170px;
      background: var(--sun);
      color: var(--navy-dark);
      border-radius: 50%;
      display: grid;
      place-items: center;
      text-align: center;
      box-shadow: var(--shadow-md);
      font-family: 'Fraunces', serif;
      padding: 18px;
      line-height: 1.2;
      transform: rotate(-8deg);
    }
    .welcome-visual .badge strong {
      display: block;
      font-size: 38px;
      font-weight: 600;
    }
    .welcome-visual .badge span {
      font-size: 13px;
      font-family: 'Inter', sans-serif;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      font-weight: 500;
    }

    /* ---------- Explore cards ---------- */
    .explore {
      background: var(--bg-soft);
    }
    .explore-head {
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 40px;
      margin-bottom: 56px;
      flex-wrap: wrap;
    }
    .explore-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 22px;
    }
    .ex-card {
      background: #fff;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      display: flex;
      flex-direction: column;
      transition: transform .25s ease, box-shadow .25s ease;
    }
    .ex-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }
    .ex-card .img-wrap {
      aspect-ratio: 4/3;
      overflow: hidden;
      position: relative;
    }
    .ex-card .img-wrap img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform .5s ease;
    }
    .ex-card:hover .img-wrap img { transform: scale(1.05); }
    .ex-card .tag {
      position: absolute;
      top: 14px; left: 14px;
      background: #fff;
      color: var(--navy);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 6px 12px;
      border-radius: 999px;
    }
    .ex-card .body {
      padding: 24px 24px 26px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .ex-card h3 {
      font-size: 22px;
      margin: 0 0 10px;
      font-weight: 600;
    }
    .ex-card p {
      color: var(--ink-soft);
      font-size: 15px;
      margin: 0 0 18px;
      flex: 1;
    }
    .ex-card .link {
      font-weight: 600;
      color: var(--green-dark);
      font-size: 14px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
    .ex-card .link svg { width: 14px; height: 14px; transition: transform .2s ease; }
    .ex-card:hover .link svg { transform: translateX(3px); }

    /* ---------- About strip ---------- */
    .about {
      background: #fff;
    }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .about-visual {
      position: relative;
      aspect-ratio: 5/4;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-md);
    }
    .about-visual img { width: 100%; height: 100%; object-fit: cover; }
    .about-visual .float {
      position: absolute;
      bottom: 20px; left: 20px;
      background: #fff;
      padding: 14px 18px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      gap: 12px;
      box-shadow: var(--shadow-sm);
    }
    .about-visual .float .pin {
      width: 36px; height: 36px;
      border-radius: 50%;
      background: var(--wave);
      color: #fff;
      display: grid; place-items: center;
    }
    .about-visual .float .pin svg { width: 18px; height: 18px; }
    .about-visual .float .l1 { font-size: 12px; color: var(--ink-soft); letter-spacing: 0.06em; text-transform: uppercase; }
    .about-visual .float .l2 { font-family: 'Fraunces', serif; font-weight: 600; color: var(--navy); font-size: 16px; }

    /* Amenities pill list */
    .amenities {
      list-style: none;
      padding: 0;
      margin: 28px 0 32px;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px 24px;
    }
    .amenities li {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 15px;
      color: var(--ink);
    }
    .amenities .check {
      flex: 0 0 26px;
      width: 26px; height: 26px;
      border-radius: 50%;
      background: #eef7e3;
      color: var(--green-dark);
      display: grid; place-items: center;
    }
    .amenities .check svg { width: 14px; height: 14px; }

    /* ---------- Showcase split ---------- */
    .showcase {
      padding: 0;
      background: var(--bg-soft);
    }
    .showcase-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 520px;
    }
    .showcase-row.reverse { direction: rtl; }
    .showcase-row.reverse > * { direction: ltr; }
    .showcase-img {
      position: relative;
      overflow: hidden;
    }
    .showcase-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
    .showcase-text {
      padding: 80px 80px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      background: #fff;
    }
    .showcase-text.dark {
      background: var(--navy);
      color: #fff;
    }
    .showcase-text.dark h2,
    .showcase-text.dark .section-eyebrow { color: #fff; }
    .showcase-text.dark .section-eyebrow { color: var(--sun); }
    .showcase-text.dark .section-eyebrow::before { background: var(--sun); }
    .showcase-text.dark p { color: rgba(255,255,255,0.85); }
    .showcase-text h2 {
      font-size: clamp(28px, 3vw, 42px);
      line-height: 1.1;
      margin: 0 0 16px;
      font-weight: 500;
    }
    .showcase-text .features {
      list-style: none;
      padding: 0;
      margin: 0 0 28px;
      display: grid;
      gap: 10px;
    }
    .showcase-text .features li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 15.5px;
    }
    .showcase-text .features .dot-i {
      flex: 0 0 22px;
      width: 22px; height: 22px;
      border-radius: 50%;
      background: var(--green);
      color: #fff;
      display: grid; place-items: center;
      margin-top: 3px;
    }
    .showcase-text.dark .features .dot-i { background: var(--sun); color: var(--navy-dark); }
    .showcase-text .features svg { width: 12px; height: 12px; }

    /* ---------- Testimonials ---------- */
    .testimonials {
      background: var(--bg-sand);
      position: relative;
      overflow: hidden;
    }
    .testimonials::before {
      content: '"';
      position: absolute;
      top: -60px;
      left: 5%;
      font-family: 'Fraunces', serif;
      font-size: 480px;
      color: rgba(244, 178, 35, 0.12);
      line-height: 1;
      font-weight: 600;
    }
    .testimonials .container { position: relative; }
    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 32px;
      margin-top: 50px;
    }
    .testimonial {
      background: #fff;
      padding: 38px 36px 32px;
      border-radius: var(--radius);
      box-shadow: var(--shadow-sm);
      position: relative;
    }
    .testimonial .stars {
      color: var(--sun);
      font-size: 16px;
      letter-spacing: 2px;
      margin-bottom: 16px;
    }
    .testimonial blockquote {
      margin: 0 0 22px;
      font-family: 'Fraunces', serif;
      font-size: 22px;
      line-height: 1.4;
      color: var(--navy);
      font-weight: 500;
    }
    .testimonial cite {
      font-style: normal;
      font-size: 14px;
      color: var(--ink-soft);
    }
    .testimonial cite strong {
      display: block;
      color: var(--ink);
      font-weight: 600;
      font-size: 15px;
      margin-bottom: 2px;
    }

    /* ---------- Contact / Book ---------- */
    .contact {
      background: #fff;
      padding-bottom: 130px;
    }
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 70px;
      align-items: start;
    }
    .contact-info h2 {
      font-size: clamp(34px, 4.4vw, 56px);
      line-height: 1.05;
      margin-bottom: 18px;
      font-weight: 500;
    }
    .contact-info h2 em { color: var(--green-dark); font-style: italic; font-weight: 400; }
    .contact-info > p {
      font-size: 18px;
      color: var(--ink-soft);
      max-width: 480px;
      margin-bottom: 36px;
    }
    .contact-methods {
      display: grid;
      gap: 14px;
    }
    .cm {
      display: flex;
      align-items: center;
      gap: 18px;
      padding: 18px 22px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      transition: border-color .2s ease, transform .15s ease;
      color: var(--ink);
    }
    .cm:hover { border-color: var(--green); transform: translateX(4px); color: var(--ink); }
    .cm .icon {
      width: 46px; height: 46px;
      border-radius: 12px;
      display: grid; place-items: center;
      background: var(--bg-sand);
      color: var(--navy);
      flex: 0 0 46px;
    }
    .cm.green .icon { background: #eef7e3; color: var(--green-dark); }
    .cm.wave .icon { background: #e0f0f6; color: #2c7a98; }
    .cm .icon svg { width: 22px; height: 22px; }
    .cm .label {
      font-size: 12px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--ink-soft);
      margin-bottom: 2px;
    }
    .cm .val {
      font-family: 'Fraunces', serif;
      font-size: 20px;
      color: var(--navy);
      font-weight: 600;
    }

    .contact-form {
      background: var(--bg-soft);
      padding: 44px 42px;
      border-radius: 18px;
      box-shadow: var(--shadow-sm);
      border-top: 4px solid var(--green);
    }
    .contact-form h3 {
      font-size: 26px;
      margin-bottom: 6px;
      font-weight: 600;
    }
    .contact-form > p {
      color: var(--ink-soft);
      font-size: 15px;
      margin-bottom: 24px;
    }
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .field { margin-bottom: 16px; }
    .field label {
      display: block;
      font-size: 13px;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 6px;
      letter-spacing: 0.02em;
    }
    .field input, .field select, .field textarea {
      width: 100%;
      padding: 13px 14px;
      border: 1px solid var(--line);
      border-radius: 10px;
      font-family: inherit;
      font-size: 15px;
      background: #fff;
      color: var(--ink);
      transition: border-color .15s ease, box-shadow .15s ease;
    }
    .field input:focus, .field select:focus, .field textarea:focus {
      outline: none;
      border-color: var(--green);
      box-shadow: 0 0 0 3px rgba(111, 181, 57, 0.15);
    }
    .field textarea { resize: vertical; min-height: 110px; }
    .field-error { display: none; color: #c84a3a; font-size: 13px; margin-top: 5px; }
    .field.error input, .field.error select, .field.error textarea { border-color: #c84a3a; }
    .field.error .field-error { display: block; }
    .form-success {
      display: none;
      padding: 24px;
      background: #eef7e3;
      border-radius: 12px;
      border-left: 4px solid var(--green);
      color: var(--navy-dark);
      font-size: 15px;
    }
    .form-success.show { display: block; }
    .form-success strong { display: block; font-family: 'Fraunces', serif; font-size: 20px; color: var(--navy); margin-bottom: 6px; }

    /* ---------- Footer ---------- */
    .footer {
      background: var(--navy-dark);
      color: rgba(255,255,255,0.78);
      padding: 70px 0 0;
      font-size: 15px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1fr;
      gap: 50px;
      padding-bottom: 50px;
    }
    .footer h4 {
      color: #fff;
      font-family: 'Inter', sans-serif;
      font-size: 13px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      font-weight: 600;
      margin: 0 0 18px;
    }
    .footer .brand-block img {
      height: 64px;
      width: auto;
      background: #fff;
      padding: 10px 14px;
      border-radius: 10px;
      margin-bottom: 18px;
    }
    .footer .brand-block p {
      color: rgba(255,255,255,0.7);
      font-size: 14.5px;
      max-width: 320px;
    }
    .footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
    .footer ul a { color: rgba(255,255,255,0.78); font-size: 14.5px; }
    .footer ul a:hover { color: var(--sun); }
    .footer .contact-line {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 12px;
      color: rgba(255,255,255,0.78);
      font-size: 14.5px;
    }
    .footer .contact-line svg { width: 16px; height: 16px; margin-top: 4px; flex: 0 0 16px; color: var(--sun); }
    .footer .contact-line a { color: #fff; }
    .footer .contact-line a:hover { color: var(--sun); }
    .footer .contact-line span { color: #fff; }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.12);
      padding: 22px 0;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 14px;
      font-size: 13.5px;
      color: rgba(255,255,255,0.55);
    }
    .footer-bottom .legal { display: flex; gap: 22px; }
    .footer-bottom .legal a { color: rgba(255,255,255,0.7); }
    .footer-bottom .legal a:hover { color: var(--sun); }
    .footer .socials { display: flex; gap: 10px; margin-top: 14px; }
    .footer .socials a {
      width: 36px; height: 36px;
      border-radius: 50%;
      display: grid; place-items: center;
      background: rgba(255,255,255,0.08);
      color: #fff;
      transition: background .2s ease;
    }
    .footer .socials a:hover { background: var(--sun); color: var(--navy-dark); }
    .footer .socials svg { width: 16px; height: 16px; }

    /* ---------- Responsive ---------- */
    @media (max-width: 1100px) {
      .nav { gap: 18px; }
      .nav a { font-size: 14px; }
      .welcome-grid, .about-grid, .contact-grid { gap: 50px; }
      .showcase-text { padding: 56px 48px; }
    }
    @media (max-width: 900px) {
      .explore-grid { grid-template-columns: repeat(2, 1fr); }
      .welcome-grid, .about-grid, .contact-grid, .showcase-row { grid-template-columns: 1fr; }
      .showcase-row.reverse { direction: ltr; }
      .showcase-img { aspect-ratio: 16/9; min-height: 320px; }
      .hero-stats-inner { grid-template-columns: repeat(2, 1fr); }
      .testimonial-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      section { padding: 80px 0; }
      .welcome-visual .badge { width: 130px; height: 130px; bottom: -20px; left: -10px; }
      .welcome-visual .badge strong { font-size: 28px; }
    }
    @media (max-width: 720px) {
      .utility .container { justify-content: center; text-align: center; }
      .nav-toggle { display: block; }
      .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px 28px 24px;
        gap: 16px;
        border-bottom: 1px solid var(--line);
        align-items: stretch;
      }
      .nav.open { display: flex; }
      .nav .btn { align-self: flex-start; }
      .hero-content { padding-bottom: 130px; }
      .showcase-text { padding: 44px 28px; }
      .contact-form { padding: 28px 22px; }
      .footer-grid { grid-template-columns: 1fr; gap: 36px; }
      .form-row { grid-template-columns: 1fr; }
      .amenities { grid-template-columns: 1fr; }
    }


    /* ============================================================
       SUBPAGE COMPONENTS (shared across inner pages)
       ============================================================ */

    /* ---------- Page banner (inner-page hero) ---------- */
    .page-hero {
      position: relative;
      min-height: 380px;
      display: flex;
      align-items: flex-end;
      overflow: hidden;
      isolation: isolate;
      background: #143452;
    }
    .page-hero img {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center;
      z-index: -2;
    }
    .page-hero::after {
      content: "";
      position: absolute; inset: 0;
      background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.55) 55%, rgba(0,0,0,0.85) 100%);
      z-index: -1;
    }
    .page-hero .container {
      padding-top: 70px;
      padding-bottom: 54px;
      color: #fff;
    }
    .breadcrumb {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      letter-spacing: 0.04em;
      color: rgba(255,255,255,0.82);
      margin-bottom: 18px;
    }
    .breadcrumb a { color: rgba(255,255,255,0.82); }
    .breadcrumb a:hover { color: var(--sun); }
    .breadcrumb svg { width: 14px; height: 14px; opacity: 0.7; }
    .page-hero h1 {
      color: #fff;
      font-size: clamp(36px, 5vw, 60px);
      line-height: 1.05;
      font-weight: 500;
      letter-spacing: -0.02em;
      margin: 0 0 14px;
      max-width: 880px;
    }
    .page-hero h1 em { font-style: italic; font-weight: 400; color: var(--sun); }
    .page-hero .lead {
      font-size: clamp(17px, 1.4vw, 20px);
      color: rgba(255,255,255,0.92);
      max-width: 620px;
      margin: 0;
    }

    /* ---------- Striped image placeholder ---------- */
    .img-ph {
      background-color: var(--bg-soft);
      background-image: repeating-linear-gradient(45deg, rgba(29,74,114,0.07) 0 10px, transparent 10px 20px);
      display: grid; place-items: center;
      width: 100%; height: 100%;
    }
    .img-ph span {
      font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
      font-size: 11.5px; letter-spacing: 0.04em;
      color: var(--ink-soft); text-transform: lowercase;
      background: rgba(255,255,255,0.72);
      padding: 5px 11px; border-radius: 6px;
    }

    /* ---------- Prose / generic content ---------- */
    .prose { max-width: 760px; }
    .prose p { font-size: 17.5px; color: var(--ink-soft); }
    .prose p strong { color: var(--ink); }
    .lead-para { font-size: 20px; color: var(--ink); line-height: 1.6; }

    .split { display: grid; grid-template-columns: 1.1fr 1fr; gap: 70px; align-items: center; }
    .split.text-right { grid-template-columns: 1fr 1.1fr; }
    .media-frame {
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-md);
      aspect-ratio: 4/3;
    }
    .media-frame img { width: 100%; height: 100%; object-fit: cover; }

    .seals-banner { padding: 0; }
    .seals-banner img {
      width: 100%;
      height: min(60vh, 560px);
      object-fit: cover;
      display: block;
    }

    .section-alt { background: var(--bg-soft); }
    .section-sand { background: var(--bg-sand); }

    /* ---------- Rate / info table ---------- */
    .rate-table {
      width: 100%;
      border-collapse: collapse;
      background: #fff;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      font-size: 16px;
    }
    .rate-table th, .rate-table td {
      text-align: left;
      padding: 16px 22px;
      border-bottom: 1px solid var(--line);
    }
    .rate-table thead th {
      background: var(--navy);
      color: #fff;
      font-family: 'Inter', sans-serif;
      font-weight: 600;
      font-size: 13px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }
    .rate-table td.num, .rate-table th.num { text-align: right; font-variant-numeric: tabular-nums; }
    .rate-table tbody tr:last-child td { border-bottom: none; }
    .rate-table tbody tr:hover { background: var(--bg-sand); }
    .rate-table .site-name { font-weight: 600; color: var(--navy); }
    .rate-table .site-name small { display: block; font-weight: 400; color: var(--ink-soft); font-size: 13px; margin-top: 2px; }
    .rate-table .price { font-family: 'Fraunces', serif; font-weight: 600; color: var(--navy); }
    .rate-note { font-size: 14px; color: var(--ink-soft); margin-top: 16px; }
    .rate-note + .rate-note { margin-top: 6px; }

    /* ---------- Info callout cards (deposit, discount) ---------- */
    .info-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }
    .info-card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 30px 28px;
      border-top: 4px solid var(--green);
    }
    .info-card .ic-icon {
      width: 46px; height: 46px;
      border-radius: 12px;
      background: #eef7e3;
      color: var(--green-dark);
      display: grid; place-items: center;
      margin-bottom: 16px;
    }
    .info-card .ic-icon svg { width: 24px; height: 24px; }
    .info-card h3 { font-size: 20px; margin: 0 0 8px; font-weight: 600; }
    .info-card p { font-size: 15px; color: var(--ink-soft); margin: 0; }
    .info-card strong { color: var(--navy); }

    /* ---------- Feature grid (amenity tiles) ---------- */
    .feature-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }
    .feature-tile {
      display: flex;
      align-items: center;
      gap: 16px;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 22px 24px;
      transition: border-color .2s ease, transform .15s ease, box-shadow .2s ease;
    }
    .feature-tile:hover { border-color: var(--green); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
    .feature-tile .ft-icon {
      flex: 0 0 44px; width: 44px; height: 44px;
      border-radius: 12px;
      display: grid; place-items: center;
      background: var(--bg-sand); color: var(--navy);
    }
    .feature-tile .ft-icon.green { background: #eef7e3; color: var(--green-dark); }
    .feature-tile .ft-icon.sun { background: #fdf2d4; color: #b78a16; }
    .feature-tile .ft-icon.wave { background: #e0f0f6; color: #2c7a98; }
    .feature-tile .ft-icon svg { width: 22px; height: 22px; }
    .feature-tile .ft-name { font-family: 'Fraunces', serif; font-weight: 600; color: var(--navy); font-size: 17px; line-height: 1.2; }
    .feature-tile .ft-sub { font-size: 13.5px; color: var(--ink-soft); margin-top: 3px; }

    /* ---------- Category block (Things To Do) ---------- */
    .cat-head { display: flex; align-items: center; gap: 18px; margin-bottom: 30px; }
    .cat-head .cat-num {
      flex: 0 0 56px; width: 56px; height: 56px;
      border-radius: 50%;
      background: var(--navy); color: #fff;
      display: grid; place-items: center;
      font-family: 'Fraunces', serif; font-size: 24px; font-weight: 600;
    }
    .cat-head.green .cat-num { background: var(--green-dark); }
    .cat-head.wave .cat-num { background: #2c7a98; }
    .cat-head h2 { margin: 0; font-size: clamp(26px, 3vw, 38px); font-weight: 500; }
    .cat-head .cat-sub { font-size: 15px; color: var(--ink-soft); margin-top: 4px; }

    .todo-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }
    .todo-card {
      background: #fff;
      border-radius: var(--radius);
      box-shadow: var(--shadow-sm);
      overflow: hidden;
      display: flex; flex-direction: column;
    }
    .todo-card .tc-img { aspect-ratio: 3/2; overflow: hidden; position: relative; background: var(--bg-soft); }
    .todo-card .tc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
    .todo-card:hover .tc-img img { transform: scale(1.05); }
    .todo-card .tc-tag {
      position: absolute; top: 14px; left: 14px;
      background: #fff; color: var(--navy);
      font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
      padding: 5px 11px; border-radius: 999px;
    }
    .todo-card .tc-body { padding: 22px 24px 24px; flex: 1; }
    .todo-card h3 { font-size: 20px; margin: 0 0 8px; font-weight: 600; }
    .todo-card p { font-size: 15px; color: var(--ink-soft); margin: 0; }
    .todo-card .tc-meta { font-size: 13px; color: var(--green-dark); font-weight: 600; margin-top: 12px; display: inline-flex; align-items: center; gap: 6px; }
    .todo-card .tc-meta svg { width: 13px; height: 13px; }

    /* simple list card (no image) */
    .list-card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 26px 28px;
    }
    .list-card h3 { font-size: 19px; margin: 0 0 14px; font-weight: 600; display: flex; align-items: center; gap: 10px; }
    .list-card h3 .lc-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--green); flex: 0 0 10px; }
    .list-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
    .list-card li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--ink-soft); }
    .list-card li svg { width: 16px; height: 16px; color: var(--green-dark); margin-top: 3px; flex: 0 0 16px; }
    .list-card li strong { color: var(--ink); font-weight: 600; }

    /* ---------- Course list (Golf) ---------- */
    .course-list { display: grid; gap: 16px; }
    .course-row {
      display: flex; align-items: center; gap: 22px;
      background: #fff; border: 1px solid var(--line);
      border-radius: var(--radius); padding: 22px 26px;
      transition: border-color .2s ease, transform .15s ease, box-shadow .2s ease;
    }
    .course-row:hover { border-color: var(--green); transform: translateX(4px); box-shadow: var(--shadow-sm); }
    .course-row .cr-flag {
      flex: 0 0 50px; width: 50px; height: 50px; border-radius: 12px;
      background: #eef7e3; color: var(--green-dark);
      display: grid; place-items: center;
    }
    .course-row .cr-flag svg { width: 24px; height: 24px; }
    .course-row .cr-main { flex: 1; display: flex; flex-direction: column; }
    .course-row .cr-name { font-family: 'Fraunces', serif; font-size: 20px; font-weight: 600; color: var(--navy); }
    .course-row .cr-loc { font-size: 14px; color: var(--ink-soft); margin-top: 4px; }
    .course-row .cr-dist {
      font-size: 13px; font-weight: 600; color: var(--navy);
      background: var(--bg-sand); padding: 6px 14px; border-radius: 999px; white-space: nowrap;
    }
    .course-row .cr-arrow { color: var(--green-dark); flex: 0 0 20px; }
    .course-row .cr-arrow svg { width: 20px; height: 20px; }

    /* ---------- FAQ accordion ---------- */
    .faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
    .faq-item {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      overflow: hidden;
      transition: border-color .2s ease, box-shadow .2s ease;
    }
    .faq-item[open] { border-color: var(--green); box-shadow: var(--shadow-sm); }
    .faq-item summary {
      list-style: none;
      cursor: pointer;
      padding: 22px 26px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      font-family: 'Fraunces', serif;
      font-size: 19px;
      font-weight: 600;
      color: var(--navy);
    }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item summary .faq-ic {
      flex: 0 0 30px; width: 30px; height: 30px;
      border-radius: 50%;
      background: var(--bg-sand); color: var(--navy);
      display: grid; place-items: center;
      transition: transform .25s ease, background .2s ease, color .2s ease;
    }
    .faq-item[open] summary .faq-ic { transform: rotate(45deg); background: var(--green); color: #fff; }
    .faq-item summary .faq-ic svg { width: 16px; height: 16px; }
    .faq-answer { padding: 0 26px 24px; }
    .faq-answer p { margin: 0; color: var(--ink-soft); font-size: 16px; }

    /* ---------- CTA band ---------- */
    .cta-band { background: var(--navy); color: #fff; padding: 64px 0; }
    .cta-band .container { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
    .cta-band h2 { color: #fff; font-size: clamp(28px, 3.2vw, 42px); font-weight: 500; margin: 0 0 8px; }
    .cta-band p { color: rgba(255,255,255,0.82); margin: 0; max-width: 520px; font-size: 17px; }
    .cta-band .cta-actions { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

    /* extra responsive for subpage components */
    @media (max-width: 900px) {
      .split, .split.text-right { grid-template-columns: 1fr; gap: 44px; }
      .info-cards, .feature-grid, .todo-grid { grid-template-columns: repeat(2, 1fr); }
      .course-row { flex-wrap: wrap; gap: 14px; }
    }
    @media (max-width: 640px) {
      .info-cards, .feature-grid, .todo-grid { grid-template-columns: 1fr; }
      .rate-table { font-size: 14px; }
      .rate-table th, .rate-table td { padding: 12px 14px; }
      .cat-head .cat-num { flex-basis: 46px; width: 46px; height: 46px; font-size: 20px; }
    }

    /* ============================================================
       CENTER-ALIGNMENT OVERRIDE, text & buttons centered
       ============================================================ */
    /* hero / page intro */
    .hero-content { align-items: center; text-align: center; }
    .hero-eyebrow { margin-left: auto; margin-right: auto; }
    .hero h1, .hero p { margin-left: auto; margin-right: auto; }
    .hero-cta { justify-content: center; }
    .page-hero .container { text-align: center; }
    .breadcrumb { justify-content: center; }
    .page-hero h1, .page-hero .lead { margin-left: auto; margin-right: auto; }

    /* generic headings & copy */
    .section-title { margin-left: auto; margin-right: auto; }
    .section-lead, .lead-para { margin-left: auto; margin-right: auto; }
    .prose { margin-left: auto; margin-right: auto; text-align: center; }

    /* split text columns */
    .split > div { text-align: center; }
    .welcome-copy { text-align: center; }
    .welcome-meta { justify-content: center; }

    /* showcase blocks */
    .showcase-text { align-items: center; text-align: center; }
    .showcase-text .features li { justify-content: center; }

    /* category headers (Things to Do) */
    .cat-head { justify-content: center; text-align: center; }

    /* info / feature / todo cards */
    .info-card { text-align: center; }
    .info-card .ic-icon { margin-left: auto; margin-right: auto; }
    .feature-tile { justify-content: center; text-align: center; }
    .todo-card .tc-body { text-align: center; }
    .todo-card .tc-meta { justify-content: center; }

    /* explore cards */
    .ex-card .body { text-align: center; align-items: center; }
    .ex-card .link { justify-content: center; }

    /* testimonials */
    .testimonials .container { text-align: center; }
    .testimonial { text-align: center; }
    .testimonial cite { display: block; }

    /* CTA bands, stack & center */
    .cta-band .container { flex-direction: column; align-items: center; text-align: center; }
    .cta-band .cta-actions { justify-content: center; }

    /* contact column */
    .contact-info { text-align: center; }
    .contact-methods .cm { justify-content: center; }

    /* photos as section backgrounds (showcase bands) */
    .showcase-row { position: relative; display: block; }
    .showcase-row .showcase-img { position: absolute; inset: 0; width: 100%; height: 100%; }
    .showcase-row .showcase-img::after {
      content: ""; position: absolute; inset: 0;
      background: linear-gradient(180deg, rgba(20,52,82,0.62) 0%, rgba(20,52,82,0.72) 100%);
    }
    .showcase-row .showcase-text {
      position: relative; z-index: 2;
      background: transparent;
      color: #fff;
      max-width: 820px;
      margin: 0 auto;
      text-align: center;
      align-items: center;
      padding: clamp(72px, 8vw, 112px) 28px;
    }
    .showcase-row .showcase-text h2 { color: #fff; }
    .showcase-row .showcase-text p { color: rgba(255,255,255,0.9); }
    .showcase-row .showcase-text .section-eyebrow { color: var(--sun); }
    .showcase-row .showcase-text .section-eyebrow::before { background: var(--sun); }
    .showcase-row .showcase-text .features .dot-i { background: var(--sun); color: var(--navy-dark); }

