@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&family=Raleway:wght@400;700&display=swap");

:root {
      --color-charcoal: #1c1c1e;
      --color-teal: #0d9488;
      --color-white: #ffffff;
      --color-light-bg: #fafaf9;
      --font-primary: 'Outfit', sans-serif;
      --font-secondary: 'Raleway', sans-serif;
    }

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

    html, body {
      height: 100%;
    }

    body {
      font-family: var(--font-primary);
      color: var(--color-charcoal);
      line-height: 1.6;
      background-color: var(--color-white);
    }

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

    /* Header & Navigation */
    header {
      position: sticky;
      top: 0;
      z-index: 100;
      background-color: var(--color-white);
      border-bottom: 1px solid #e5e5e5;
      padding: 1.5rem 2rem;
    }

    .header-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      font-family: var(--font-secondary);
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--color-charcoal);
      text-decoration: none;
    }

    nav {
      display: flex;
      gap: 2rem;
    }

    nav a {
      text-decoration: none;
      color: var(--color-charcoal);
      font-size: 0.95rem;
      font-weight: 400;
      transition: color 0.3s ease;
      position: relative;
    }

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

    nav a.active {
      color: var(--color-teal);
      font-weight: 700;
    }

    nav a.active::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 0;
      right: 0;
      height: 3px;
      background-color: var(--color-teal);
      border-radius: 2px;
    }

    /* Hero Section */
    #hero-harbor {
      position: relative;
      width: 100%;
      height: 600px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    #hero-harbor img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero-scrim {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(28, 28, 30, 0.45);
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      color: var(--color-white);
    }

    .hero-content h1 {
      font-family: var(--font-secondary);
      font-size: 3.5rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
      letter-spacing: -1px;
    }

    .hero-content p {
      font-size: 1.3rem;
      font-weight: 400;
      letter-spacing: 0.5px;
    }

    /* Main Content */
    main {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    section {
      padding: 5rem 0;
      border-top: 1px solid #f0f0f0;
    }

    section:first-of-type {
      border-top: none;
    }

    section:nth-child(odd) {
      background-color: var(--color-white);
    }

    section:nth-child(even) {
      background-color: var(--color-light-bg);
      margin-left: -2rem;
      margin-right: -2rem;
      padding-left: 2rem;
      padding-right: 2rem;
    }

    .section-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .section-header h2 {
      font-family: var(--font-secondary);
      font-size: 2.2rem;
      font-weight: 700;
      color: var(--color-charcoal);
      margin-bottom: 0.5rem;
    }

    .section-header p {
      font-size: 1.1rem;
      color: var(--color-teal);
      font-weight: 400;
    }

    /* Rooms Showcase */
    .rooms-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }

    .room-card {
      background-color: var(--color-white);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(28, 28, 30, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .room-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 24px rgba(28, 28, 30, 0.12);
    }

    .room-card-image {
      width: 100%;
      height: 240px;
      overflow: hidden;
      background-color: #e5e5e5;
    }

    .room-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .room-card-content {
      padding: 2rem;
    }

    .room-card h3 {
      font-family: var(--font-secondary);
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--color-charcoal);
      margin-bottom: 0.75rem;
    }

    .room-card p {
      font-size: 0.95rem;
      color: #666;
      line-height: 1.7;
    }

    /* Dining Section */
    .dining-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
      margin-top: 2rem;
    }

    .dining-image {
      width: 100%;
      height: 400px;
      border-radius: 12px;
      overflow: hidden;
      background-color: #e5e5e5;
    }

    .dining-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .dining-content h3 {
      font-family: var(--font-secondary);
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--color-charcoal);
      margin-bottom: 1rem;
    }

    .dining-content p {
      font-size: 0.95rem;
      color: #666;
      margin-bottom: 1.5rem;
      line-height: 1.8;
    }

    .dining-features {
      list-style: none;
      margin-top: 1.5rem;
    }

    .dining-features li {
      font-size: 0.95rem;
      color: var(--color-charcoal);
      margin-bottom: 0.75rem;
      padding-left: 1.5rem;
      position: relative;
    }

    .dining-features li::before {
      content: '•';
      position: absolute;
      left: 0;
      color: var(--color-teal);
      font-weight: 700;
    }

    /* Waterfront Character */
    .waterfront-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
      margin-top: 2rem;
    }

    .waterfront-content {
      order: 2;
    }

    .waterfront-image {
      order: 1;
      width: 100%;
      height: 400px;
      border-radius: 12px;
      overflow: hidden;
      background-color: #e5e5e5;
    }

    .waterfront-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .waterfront-content h3 {
      font-family: var(--font-secondary);
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--color-charcoal);
      margin-bottom: 1rem;
    }

    .waterfront-content p {
      font-size: 0.95rem;
      color: #666;
      margin-bottom: 1.5rem;
      line-height: 1.8;
    }

    /* Audience Clarity */
    .audience-content {
      background-color: var(--color-white);
      padding: 2.5rem;
      border-radius: 12px;
      border-left: 4px solid var(--color-teal);
      margin-top: 2rem;
    }

    .audience-content h3 {
      font-family: var(--font-secondary);
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--color-charcoal);
      margin-bottom: 1rem;
    }

    .audience-content p {
      font-size: 0.95rem;
      color: #666;
      margin-bottom: 1rem;
      line-height: 1.8;
    }

    /* Trust Strip */
    .trust-strip {
      background: linear-gradient(135deg, rgba(13, 148, 136, 0.08) 0%, rgba(13, 148, 136, 0.04) 100%);
      padding: 3rem 2rem;
      border-radius: 12px;
      margin-top: 2rem;
    }

    .trust-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2rem;
      text-align: center;
    }

    .trust-item h4 {
      font-family: var(--font-secondary);
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--color-teal);
      margin-bottom: 0.5rem;
    }

    .trust-item p {
      font-size: 0.9rem;
      color: #666;
      font-weight: 400;
    }

    /* Footer */
    footer {
      background-color: var(--color-charcoal);
      color: var(--color-white);
      margin-top: 5rem;
      padding: 3rem 2rem 1rem;
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-bottom: 2rem;
    }

    .footer-column h3 {
      font-family: var(--font-secondary);
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 1rem;
      color: var(--color-white);
    }

    .footer-column p {
      font-size: 0.9rem;
      line-height: 1.7;
      color: #ccc;
      margin-bottom: 0.75rem;
    }

    .footer-column a {
      display: inline-block;
      font-size: 0.9rem;
      color: #ccc;
      text-decoration: none;
      margin-bottom: 0.5rem;
      transition: color 0.3s ease;
    }

    .footer-column a:hover {
      color: var(--color-teal);
    }

    .footer-column ul {
      list-style: none;
    }

    .footer-column ul li {
      margin-bottom: 0.5rem;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 1.5rem;
      text-align: center;
      font-size: 0.85rem;
      color: #999;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .header-container {
        flex-direction: column;
        gap: 1rem;
      }

      nav {
        gap: 1rem;
        font-size: 0.85rem;
      }

      .hero-content h1 {
        font-size: 2rem;
      }

      .hero-content p {
        font-size: 1rem;
      }

      .dining-layout,
      .waterfront-layout {
        grid-template-columns: 1fr;
      }

      .waterfront-content {
        order: 1;
      }

      .waterfront-image {
        order: 2;
      }

      .section-header h2 {
        font-size: 1.6rem;
      }

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

      section:nth-child(even) {
        margin-left: 0;
        margin-right: 0;
      }
    }
/* ── image safety ── */
img { max-width: 100%; height: auto; display: block; }
img[style*='width:'] { max-width: 100%; }
