@import url("https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@400;600;700&family=Roboto:wght@400;500;700&display=swap");

:root {
      --accent-terracotta: #c2410c;
      --accent-linen: #fdf6ec;
      --dark-grey: #1f2937;
      --light-grey: #f3f4f6;
      --border-grey: #e5e7eb;
    }

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

    html, body {
      font-family: 'Roboto', system-ui, -apple-system, sans-serif;
      color: var(--dark-grey);
      background: #ffffff;
      line-height: 1.6;
    }

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

    /* Typography */
    h1, h2, h3, h4, h5, h6 {
      font-family: 'Roboto Slab', serif;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 0.5rem;
    }

    h1 {
      font-size: 3.5rem;
      letter-spacing: -0.02em;
    }

    h2 {
      font-size: 2.25rem;
      letter-spacing: -0.01em;
      margin-bottom: 0.75rem;
    }

    h3 {
      font-size: 1.5rem;
      margin-bottom: 0.5rem;
    }

    p {
      margin-bottom: 1rem;
      font-size: 1rem;
    }

    a {
      color: var(--accent-terracotta);
      text-decoration: none;
      transition: opacity 0.2s ease;
    }

    a:hover {
      opacity: 0.8;
    }

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

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

    .brand {
      font-family: 'Roboto Slab', serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--dark-grey);
      letter-spacing: 0.05em;
    }

    nav {
      display: flex;
      gap: 2.5rem;
      align-items: center;
    }

    nav a {
      font-size: 0.95rem;
      letter-spacing: 0.05em;
      color: var(--dark-grey);
      font-weight: 500;
      position: relative;
    }

    nav a.active {
      color: var(--accent-terracotta);
    }

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

    /* Hero Section */
    .hero {
      background: linear-gradient(135deg, var(--accent-linen) 0%, #faf5f0 100%);
      padding: 6rem 2rem;
      text-align: center;
      min-height: 70vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-image: url('img/asset-11195bb8e7b5.jpg');
      background-size: cover;
      background-position: center;
      opacity: 0.15;
      z-index: 0;
    }

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

    .hero-eyebrow {
      font-size: 0.85rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--accent-terracotta);
      margin-bottom: 1rem;
      font-weight: 600;
    }

    .hero h1 {
      margin-bottom: 1.5rem;
      color: var(--dark-grey);
    }

    .hero-subhead {
      font-size: 1.25rem;
      color: var(--dark-grey);
      font-weight: 400;
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.5;
    }

    /* Main Container */
    main {
      max-width: 1200px;
      margin: 0 auto;
    }

    /* Section Styles */
    section {
      padding: 4rem 2rem;
    }

    section.narrow {
      max-width: 700px;
      margin: 0 auto;
    }

    section.wide {
      padding: 4rem 2rem;
    }

    section h2 {
      margin-bottom: 0.5rem;
    }

    .section-subhead {
      font-size: 1.1rem;
      color: var(--accent-terracotta);
      font-weight: 500;
      margin-bottom: 2rem;
    }

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

    .arrival-text h3 {
      margin-top: 1.5rem;
    }

    .arrival-text p {
      margin-bottom: 1rem;
    }

    .arrival-image {
      border-radius: 12px;
      overflow: hidden;
      height: 400px;
    }

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

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

    .architecture-image {
      border-radius: 12px;
      overflow: hidden;
      height: 450px;
      order: -1;
    }

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

    .architecture-text h3 {
      margin-top: 1.5rem;
    }

    .architecture-text ul {
      list-style: none;
      margin-top: 1.5rem;
    }

    .architecture-text li {
      padding-left: 1.5rem;
      margin-bottom: 0.75rem;
      position: relative;
    }

    .architecture-text li::before {
      content: '▪';
      position: absolute;
      left: 0;
      color: var(--accent-terracotta);
      font-weight: bold;
    }

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

    .wellness-image {
      border-radius: 12px;
      overflow: hidden;
      height: 400px;
    }

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

    .wellness-text h3 {
      margin-top: 1.5rem;
    }

    .wellness-highlight {
      background: var(--accent-linen);
      padding: 1.5rem;
      border-radius: 8px;
      margin: 1.5rem 0;
      border-left: 4px solid var(--accent-terracotta);
    }

    .wellness-highlight p {
      margin-bottom: 0;
      font-style: italic;
      color: var(--dark-grey);
    }

    /* What to Bring Section */
    .packing-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      margin-top: 2rem;
    }

    .packing-card {
      background: var(--light-grey);
      padding: 2rem;
      border-radius: 8px;
    }

    .packing-card h3 {
      margin-top: 0;
      margin-bottom: 1rem;
    }

    .packing-card ul {
      list-style: none;
    }

    .packing-card li {
      padding-left: 1.5rem;
      margin-bottom: 0.5rem;
      position: relative;
      font-size: 0.95rem;
    }

    .packing-card li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: var(--accent-terracotta);
      font-weight: bold;
    }

    /* Trust Credentials Section */
    .trust-strip {
      background: var(--dark-grey);
      color: #ffffff;
      padding: 3rem 2rem;
      margin: 4rem 0;
      border-radius: 8px;
    }

    .trust-content {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      text-align: center;
    }

    .trust-item h4 {
      font-size: 2rem;
      color: var(--accent-terracotta);
      margin-bottom: 0.5rem;
    }

    .trust-item p {
      margin-bottom: 0;
      font-size: 0.95rem;
      opacity: 0.9;
    }

    /* CTA Button */
    .cta-button {
      display: inline-block;
      background: var(--accent-terracotta);
      color: #ffffff;
      padding: 0.875rem 2rem;
      border-radius: 6px;
      font-weight: 600;
      letter-spacing: 0.05em;
      transition: background 0.2s ease;
      margin-top: 1.5rem;
    }

    .cta-button:hover {
      background: #a03508;
      color: #ffffff;
    }

    /* Footer */
    footer {
      background: var(--dark-grey);
      color: #ffffff;
      padding: 3rem 2rem 1rem;
      margin-top: 4rem;
    }

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

    .footer-col h4 {
      font-family: 'Roboto Slab', serif;
      font-size: 1rem;
      margin-bottom: 1rem;
      color: #ffffff;
    }

    .footer-col p {
      font-size: 0.9rem;
      margin-bottom: 0.5rem;
      opacity: 0.9;
    }

    .footer-col a {
      color: var(--accent-terracotta);
      display: block;
      margin-bottom: 0.5rem;
      font-size: 0.9rem;
    }

    .footer-col a:hover {
      opacity: 0.8;
    }

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

    /* Responsive */
    @media (max-width: 768px) {
      h1 {
        font-size: 2.5rem;
      }

      h2 {
        font-size: 1.75rem;
      }

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

      .hero {
        padding: 4rem 1.5rem;
        min-height: 50vh;
      }

      .arrival-grid,
      .architecture-layout,
      .wellness-grid {
        grid-template-columns: 1fr;
      }

      .architecture-image {
        order: 0;
      }

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

      .trust-content {
        grid-template-columns: 1fr;
      }

      .footer-container {
        grid-template-columns: 1fr;
      }

      section {
        padding: 3rem 1.5rem;
      }
    }
/* ── image safety ── */
img { max-width: 100%; height: auto; display: block; }
img[style*='width:'] { max-width: 100%; }
