﻿:root {
  color-scheme: light;
  --ink: #25302c;
  --muted: #68746f;
  --paper: #fff8ec;
  --paper-strong: #fffdf8;
  --sage: #c8d8c4;
  --sage-dark: #6e8d79;
  --sea: #346979;
  --clay: #c97855;
  --sand: #ead6b6;
  --shadow: 0 24px 80px rgba(37, 48, 44, 0.16);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  background:
    radial-gradient(circle at top left, rgba(200, 216, 196, 0.85), transparent 30rem),
    linear-gradient(180deg, #fff8ec 0%, #f5ead9 52%, #fffdf8 100%);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

a {
  color: inherit;
}

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

code {
  border-radius: 999px;
  background: rgba(52, 105, 121, 0.1);
  padding: 0.15rem 0.45rem;
  color: var(--sea);
  font-size: 0.9em;
}

.site-header {
  min-height: 100vh;
  padding: 1.25rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100vw - 2rem));
  margin: 0 auto;
  border: 1px solid rgba(37, 48, 44, 0.1);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.76);
  padding: 0.55rem 0.75rem;
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 36px rgba(37, 48, 44, 0.08);
}

.logo {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border-radius: 50%;
  background: var(--sea);
  color: white;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: clamp(0.6rem, 2vw, 1.6rem);
  padding-inline: 0.75rem;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--sea);
  background: rgba(52, 105, 121, 0.12);
}

.lang-switch {
  display: inline-grid;
  place-items: center;
  min-width: 2rem;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.lang-switch.active {
  background: rgba(52, 105, 121, 0.14);
  color: var(--sea);
}

a.lang-switch {
  border: 1px solid rgba(37, 48, 44, 0.12);
  color: var(--muted);
}

a.lang-switch:hover,
a.lang-switch:focus-visible {
  border-color: rgba(52, 105, 121, 0.35);
  color: var(--sea);
}

.section-shell {
  width: min(1180px, calc(100vw - 2rem));
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 6rem) 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.72fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  min-height: calc(100vh - 6rem);
}

.hero-copy {
  max-width: 760px;
}

.eyebrow,
.card-kicker {
  margin: 0 0 0.8rem;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

h1 {
  max-width: 900px;
  margin-bottom: 1.35rem;
  font-size: clamp(4rem, 11vw, 9rem);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.4rem, 6vw, 5rem);
}

h3 {
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
  line-height: 1.25;
}

.hero-text {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  border-radius: 999px;
  padding: 0.85rem 1.35rem;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: var(--sea);
  color: white;
  box-shadow: 0 18px 40px rgba(52, 105, 121, 0.28);
}

.button.secondary {
  border: 1px solid rgba(52, 105, 121, 0.28);
  background: rgba(255, 253, 248, 0.7);
  color: var(--sea);
}

.photo-frame {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  border: 1px solid rgba(37, 48, 44, 0.1);
  border-radius: var(--radius);
  background-image:
    linear-gradient(180deg, rgba(37, 48, 44, 0.04), rgba(37, 48, 44, 0.36)),
    var(--photo),
    linear-gradient(135deg, rgba(200, 216, 196, 0.95), rgba(234, 214, 182, 0.95));
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
}


.photo-hero { --photo: url("../photos/hero.jpeg"); }
.photo-la-mare-01 { --photo: url("../photos/la-mare-01.jpeg"); }
.photo-food-01 { --photo: url("../photos/food-01.jpeg"); }
.photo-coast-01 { --photo: url("../photos/coast-01.jpeg"); }
.photo-friends-01 { --photo: url("../photos/friends-01.jpeg"); }
.photo-outing-coast { --photo: url("../photos/outing-coast.jpeg"); }
.photo-outing-lessay { --photo: url("../photos/outing-lessay.jpeg"); }
.photo-outing-sail { --photo: url("../photos/outing-sail.jpeg"); }
.photo-coffee-beach {
  --photo: url("https://lh3.googleusercontent.com/gps-cs-s/APNQkAH5SE63d5wwJnNvliv0y2tEjLz2-IOFrErwr0-9yJ44UJGr3HfiggGiLydgROm5Tmwpq5kvYNmPTf00H7LNsqVBIn1y5R-QoUsQxq29jE_qaOM0Z82UxJHQ7aEVXn7iVQnFgsYD=w1200-h900-k-no");
}

.photo-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.photo-link:hover,
.photo-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 28px 90px rgba(37, 48, 44, 0.22);
}
.photo-gallery-01 { --photo: url("../photos/gallery-01.jpeg"); }
.photo-gallery-02 { --photo: url("../photos/gallery-02.jpeg"); }
.photo-gallery-03 { --photo: url("../photos/gallery-03.jpeg"); }
.photo-gallery-04 { --photo: url("../photos/gallery-04.jpeg"); }
.photo-gallery-05 { --photo: url("../photos/gallery-05.jpeg"); }
.photo-gallery-06 { --photo: url("../photos/gallery-06.jpeg"); }
.photo-gallery-07 { --photo: url("../photos/gallery-07.jpeg"); }
.photo-gallery-08 { --photo: url("../photos/gallery-08.jpeg"); }
.photo-gallery-09 { --photo: url("../photos/gallery-09.jpeg"); }

.photo-frame::after {
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(255, 253, 248, 0.52);
  border-radius: calc(var(--radius) - 10px);
  content: "";
  pointer-events: none;
}

.photo-frame span,
.photo-frame figcaption,
.photo-label {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 1;
  width: fit-content;
  max-width: calc(100% - 2rem);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.82);
  padding: 0.45rem 0.75rem;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.hero-photo {
  min-height: clamp(460px, 58vw, 680px);
  border-radius: 42px;
  transform: rotate(1.5deg);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding-top: 0;
}

.atmosphere-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: clamp(1.25rem, 4vw, 2rem);
  padding-top: clamp(2rem, 5vw, 4rem);
}

.story-card {
  border-radius: calc(var(--radius) + 10px);
  background:
    linear-gradient(135deg, rgba(52, 105, 121, 0.9), rgba(37, 48, 44, 0.9)),
    linear-gradient(135deg, var(--sage), var(--sand));
  padding: clamp(1.5rem, 4vw, 3rem);
  color: white;
  box-shadow: var(--shadow);
}

.story-card .eyebrow,
.story-card p {
  color: rgba(255, 255, 255, 0.84);
}

.story-card h2 {
  max-width: 760px;
}

.mood-list {
  display: grid;
  gap: 1rem;
}

.info-card,
.outing-card,
.details-list article,
.link-card,
.mood-list article,
.timeline article {
  border: 1px solid rgba(37, 48, 44, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.78);
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: 0 18px 54px rgba(37, 48, 44, 0.08);
}

.info-card h2 {
  margin-bottom: 0.65rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.info-card p,
.timeline p,
.details-list p,
.mood-list p,
.outing-card p,
.outing-card li,
.organisation p,
.section-heading p {
  color: var(--muted);
}

.accent-card {
  background: var(--sea);
  color: white;
}

.accent-card .card-kicker,
.accent-card p {
  color: rgba(255, 255, 255, 0.82);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}

.split-section > div:first-child {
  position: sticky;
  top: 2rem;
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline article {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 1rem;
}

.timeline span {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border-radius: 50%;
  background: rgba(52, 105, 121, 0.12);
  color: var(--sea);
  font-weight: 900;
}

.timeline h3,
.timeline p {
  grid-column: 2;
}

.photo-strip {
  display: grid;
  grid-template-columns: 1fr 0.7fr 1fr 1.25fr;
  gap: 1rem;
  width: min(1380px, calc(100vw - 2rem));
  margin: 0 auto;
  padding: 0 0 clamp(3rem, 7vw, 6rem);
}

.photo-strip .tall {
  min-height: 360px;
}

.photo-strip .wide {
  min-height: 300px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading.compact {
  max-width: 880px;
}

.outing-grid {
  display: grid;
  gap: 1.25rem;
}

.outing-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
}

.outing-card:not(:has(.outing-photo)) {
  grid-template-columns: 1fr;
}

.outing-photo {
  min-height: 330px;
}

.outing-card ul {
  display: grid;
  gap: 0.35rem;
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

.outing-link {
  margin-top: 1.25rem;
  min-height: 2.75rem;
  padding: 0.65rem 1.1rem;
  font-size: 0.92rem;
}

.detail-header {
  min-height: auto;
}

.detail-hero {
  min-height: auto;
  padding-top: clamp(2rem, 5vw, 4rem);
  padding-bottom: clamp(2rem, 5vw, 4rem);
}

.detail-hero h1 {
  font-size: clamp(3.2rem, 9vw, 7rem);
}

.detail-plan .timeline span {
  width: auto;
  min-width: 3.5rem;
  padding-inline: 0.5rem;
  border-radius: 999px;
  font-size: 0.78rem;
}

.organisation {
  align-items: stretch;
}

.link-card {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.link-card a {
  color: var(--sea);
  font-weight: 800;
}

.details-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-grid .large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 520px;
}

.gallery-grid .wide {
  grid-column: span 2;
}

.gallery-grid .tall {
  grid-row: span 2;
  min-height: 500px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  width: min(1180px, calc(100vw - 2rem));
  margin: 0 auto;
  border-top: 1px solid rgba(37, 48, 44, 0.14);
  padding: 2rem 0 3rem;
  color: var(--muted);
  font-weight: 700;
}

.site-footer a {
  color: var(--sea);
  text-decoration: none;
}

@media (max-width: 920px) {
  .site-header {
    min-height: auto;
  }

  .nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
    border-radius: 28px;
    padding: 1rem;
  }

  .nav .logo {
    align-self: center;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    max-width: none;
    gap: 0.5rem;
    padding-inline: 0;
    font-size: 0.9rem;
  }

  .nav-links a {
    background: rgba(52, 105, 121, 0.07);
  }

  .hero,
  .atmosphere-section,
  .split-section,
  .outing-card {
    grid-template-columns: 1fr;
  }

  .split-section > div:first-child {
    position: static;
  }

  .intro-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .details-list {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: clamp(2rem, 5vw, 3rem);
  }

  .photo-strip,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .photo-strip .tall,
  .photo-strip .wide {
    min-height: 260px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 0.75rem;
  }

  .section-shell,
  .nav,
  .site-footer,
  .photo-strip {
    width: min(100% - 1rem, 1180px);
  }

  .section-shell {
    padding: clamp(2.25rem, 6vw, 3rem) 0;
  }

  .nav {
    gap: 0.75rem;
    padding: 0.85rem;
  }

  .nav-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem;
    width: 100%;
  }

  .nav-links a {
    width: 100%;
    min-height: 2.85rem;
    padding-inline: 0.65rem;
    font-size: 0.82rem;
    text-align: center;
  }

  .nav-links a:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 14rem;
    justify-self: center;
  }

  h1,
  h2 {
    line-height: 1.05;
  }

  h1 {
    font-size: clamp(2.35rem, 9.5vw, 3.6rem);
    margin-bottom: 1rem;
  }

  h2 {
    font-size: clamp(1.85rem, 6.5vw, 2.6rem);
  }

  .detail-hero h1 {
    font-size: clamp(2.2rem, 8.5vw, 3.2rem);
  }

  .hero {
    gap: 1.75rem;
    padding-top: 1.75rem;
  }

  .hero-text {
    font-size: 1.02rem;
  }

  .hero-actions {
    flex-direction: column;
    margin-top: 1.5rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .info-card h2 {
    font-size: clamp(1.7rem, 6vw, 2.2rem);
  }

  .hero-photo,
  .photo-frame,
  .outing-photo {
    min-height: 240px;
    border-radius: 24px;
  }

  .hero-photo {
    transform: none;
  }

  .photo-strip {
    gap: 0.75rem;
    padding-bottom: clamp(2.25rem, 6vw, 3rem);
  }

  .photo-strip .tall,
  .photo-strip .wide {
    min-height: 220px;
  }

  .photo-strip,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid .large,
  .gallery-grid .wide,
  .gallery-grid .tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 260px;
  }

  .outing-card {
    gap: 1rem;
  }

  .outing-photo {
    min-height: 220px;
  }

  .outing-link {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 0 2.5rem;
    text-align: center;
  }

  .section-heading {
    margin-bottom: 1.5rem;
  }
}
