/* =====================================================
   GOLFOS LAB — Refined Coastal Luxury Design System
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Jost:wght@300;400;500;600&display=swap');

:root {
  /* Color — ocean / sand / brass */
  --ink:      #14201F;
  --deep:     #0E3B3E;
  --deep-2:   #0A2D30;
  --teal:     #1F5A5C;
  --sand:     #E6DCC8;
  --cream:    #F5EFE2;
  --linen:    #FBF7EE;
  --brass:    #A88847;
  --brass-2:  #C9A35F;
  --mute:     #6E7775;
  --line:     rgba(20, 32, 31, 0.12);
  --line-light:rgba(20, 32, 31, 0.06);

  /* Type */
  --display: 'Cormorant Garamond', 'Times New Roman', serif;
  --body:    'Jost', 'Helvetica Neue', sans-serif;

  /* Spacing */
  --container: 1240px;
  --container-narrow: 880px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--linen);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--brass); color: var(--linen); }

/* ----- Typography ----- */
h1, h2, h3, h4, h5 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--ink);
}

h1 { font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 300; }
h2 { font-size: clamp(2rem, 4.2vw, 3.4rem); }
h3 { font-size: clamp(1.5rem, 2.6vw, 2rem); }
h4 { font-size: 1.25rem; }

.eyebrow {
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--brass);
  display: inline-block;
}

.lede {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.5;
  color: var(--teal);
  max-width: 60ch;
}

p { max-width: 65ch; }

em { font-family: var(--display); font-style: italic; font-weight: 400; }

/* ----- Layout ----- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container--narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: clamp(4rem, 9vw, 8rem) 0; }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}
.section-head .eyebrow { margin-bottom: 1.25rem; }
.section-head h2 { margin-bottom: 1.25rem; }
.section-head p { margin: 0 auto; color: var(--mute); }

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.25rem 0;
}
.divider::before, .divider::after {
  content: "";
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: var(--line);
}
.divider svg { width: 22px; height: 22px; color: var(--brass); }

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.8rem;
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--linen);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(.2,.7,.2,1);
}
.btn:hover { background: var(--brass); border-color: var(--brass); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--linen); border-color: var(--ink); }

.btn--light {
  background: transparent;
  color: var(--linen);
  border-color: rgba(245, 239, 226, 0.55);
}
.btn--light:hover { background: var(--brass); border-color: var(--brass); }

.btn--brass {
  background: var(--brass);
  border-color: var(--brass);
  color: var(--linen);
}
.btn--brass:hover { background: var(--ink); border-color: var(--ink); }

.btn .arrow { display: inline-block; transition: transform 0.4s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ----- Header / Nav ----- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.1rem 0;
  background: rgba(251, 247, 238, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-light);
  transition: padding 0.3s ease, background 0.3s ease;
}
.site-header.scrolled { padding: 0.7rem 0; background: rgba(251, 247, 238, 0.94); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.brand-mark {
  width: 30px; height: 30px;
  color: var(--brass);
  flex-shrink: 0;
}
.brand-name { line-height: 1; }
.brand-name small {
  display: block;
  font-family: var(--body);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1);
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); transform-origin: left; }

.nav-cta { font-size: 0.72rem; padding: 0.7rem 1.3rem; }

.menu-toggle {
  display: none;
  width: 38px; height: 38px;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 101;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 1px;
  background: var(--ink);
  margin: 6px auto;
  transition: all 0.35s ease;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ----- Hero ----- */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 8rem 0 4rem;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--deep);
  color: var(--linen);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  filter: saturate(0.85);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 45, 48, 0.55) 0%, rgba(10, 45, 48, 0.85) 100%),
    radial-gradient(60% 80% at 30% 60%, rgba(168, 136, 71, 0.15), transparent);
}
.hero .container { position: relative; z-index: 2; }

.hero-content { max-width: 760px; }
.hero h1 {
  color: var(--linen);
  font-style: italic;
  font-weight: 300;
  margin: 1.5rem 0 1.5rem;
}
.hero h1 .accent {
  font-style: normal;
  font-weight: 400;
  display: block;
  color: var(--brass-2);
}
.hero p {
  font-size: 1.1rem;
  color: rgba(245, 239, 226, 0.85);
  margin-bottom: 2.5rem;
  max-width: 50ch;
}
.hero .eyebrow { color: var(--brass-2); }
.hero .eyebrow::before { background: var(--brass-2); }

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }

/* Decorative palms in hero */
.hero-palm {
  position: absolute;
  bottom: -20px;
  width: 300px;
  opacity: 0.35;
  z-index: 1;
  pointer-events: none;
}
.hero-palm--left { left: -60px; transform: scaleX(-1); }
.hero-palm--right { right: -60px; }

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245, 239, 226, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.hero-scroll::after {
  content: "";
  width: 1px;
  height: 40px;
  background: rgba(245, 239, 226, 0.4);
  animation: scroll-line 2.4s ease-in-out infinite;
}
@keyframes scroll-line {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Page hero (smaller, used on inner pages) */
.page-hero {
  position: relative;
  padding: 11rem 0 5rem;
  background: var(--deep);
  color: var(--linen);
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.page-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 45, 48, 0.6), rgba(10, 45, 48, 0.9));
}
.page-hero .container { position: relative; z-index: 2; text-align: center; }
.page-hero .eyebrow { color: var(--brass-2); }
.page-hero .eyebrow::before { background: var(--brass-2); }
.page-hero h1 {
  color: var(--linen);
  font-style: italic;
  font-weight: 300;
  margin: 1.25rem 0 1rem;
}
.page-hero p {
  margin: 0 auto;
  color: rgba(245, 239, 226, 0.82);
  font-size: 1.05rem;
}

.breadcrumbs {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 239, 226, 0.65);
  margin-top: 1.5rem;
}
.breadcrumbs a:hover { color: var(--brass-2); }
.breadcrumbs .sep { margin: 0 0.6rem; opacity: 0.6; }

/* ----- Intro / two column ----- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.two-col p { color: var(--mute); margin-bottom: 1.2rem; }
.two-col p:last-of-type { margin-bottom: 0; }
.two-col-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.two-col-image img {
  width: 100%; height: 100%; object-fit: cover;
}
.two-col-image .frame-deco {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(245, 239, 226, 0.5);
  pointer-events: none;
}

.two-col--reversed > :first-child { order: 2; }

/* ----- Features grid ----- */
.features {
  background: var(--cream);
  position: relative;
}
.features::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: var(--line);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.feature {
  padding: 3rem 2.2rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream);
  transition: background 0.4s ease;
}
.feature:hover { background: var(--linen); }
.feature-icon {
  width: 44px; height: 44px;
  color: var(--brass);
  margin-bottom: 1.5rem;
}
.feature h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}
.feature p { color: var(--mute); font-size: 0.95rem; }

/* ----- Membership cards ----- */
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.tier {
  background: var(--linen);
  border: 1px solid var(--line);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.tier:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -30px rgba(20, 32, 31, 0.25);
}
.tier--featured {
  background: var(--ink);
  color: var(--linen);
  border-color: var(--ink);
}
.tier--featured h3, .tier--featured .tier-price { color: var(--linen); }
.tier--featured .tier-flag {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--brass);
  color: var(--linen);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 6px 16px;
}
.tier h3 {
  font-style: italic;
  font-weight: 300;
  margin-bottom: 0.5rem;
}
.tier-meta {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1.5rem;
}
.tier--featured .tier-meta { color: var(--brass-2); }
.tier-price {
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 0.25rem;
  line-height: 1;
}
.tier-price small {
  font-family: var(--body);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--mute);
  letter-spacing: 0.05em;
}
.tier--featured .tier-price small { color: rgba(245, 239, 226, 0.6); }
.tier-divider {
  width: 40px; height: 1px;
  background: var(--brass);
  margin: 1.5rem 0;
}
.tier ul {
  list-style: none;
  margin-bottom: 2rem;
}
.tier ul li {
  font-size: 0.95rem;
  padding: 0.6rem 0 0.6rem 1.5rem;
  position: relative;
  border-bottom: 1px solid var(--line-light);
}
.tier--featured ul li { border-color: rgba(245, 239, 226, 0.1); }
.tier ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 1.05rem;
  width: 8px; height: 8px;
  border-top: 1px solid var(--brass);
  border-right: 1px solid var(--brass);
  transform: rotate(45deg);
}
.tier .btn { margin-top: auto; justify-content: center; }
.tier--featured .btn { background: var(--brass); border-color: var(--brass); }
.tier--featured .btn:hover { background: var(--linen); color: var(--ink); border-color: var(--linen); }

/* ----- CTA banner ----- */
.cta-banner {
  position: relative;
  background: var(--deep);
  color: var(--linen);
  text-align: center;
  padding: clamp(4rem, 8vw, 7rem) 0;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50% 80% at 50% 100%, rgba(168, 136, 71, 0.2), transparent),
    radial-gradient(circle at 0% 0%, rgba(168, 136, 71, 0.08), transparent 50%);
}
.cta-banner > * { position: relative; }
.cta-banner h2 {
  color: var(--linen);
  font-style: italic;
  font-weight: 300;
  margin-bottom: 1.25rem;
}
.cta-banner p {
  color: rgba(245, 239, 226, 0.8);
  margin: 0 auto 2rem;
  max-width: 50ch;
}
.cta-banner .eyebrow { color: var(--brass-2); }
.cta-banner .eyebrow::before { background: var(--brass-2); }

/* ----- Image strip ----- */
.image-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}
.image-strip > div {
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  filter: saturate(0.9);
  transition: filter 0.5s ease, transform 0.7s ease;
}
.image-strip > div:hover { filter: saturate(1.1); transform: scale(1.02); }

/* ----- Location panel ----- */
.location {
  background: var(--ink);
  color: var(--linen);
  padding: 0;
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 520px;
}
.location-info {
  padding: clamp(3rem, 6vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.location-info h2 {
  color: var(--linen);
  font-style: italic;
  font-weight: 300;
}
.location-info .eyebrow { color: var(--brass-2); }
.location-info .eyebrow::before { background: var(--brass-2); }
.location-list {
  list-style: none;
  margin-top: 2rem;
}
.location-list li {
  display: flex;
  gap: 1.2rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(245, 239, 226, 0.1);
}
.location-list li:last-child { border-bottom: none; }
.location-list svg {
  width: 22px; height: 22px;
  color: var(--brass-2);
  flex-shrink: 0;
  margin-top: 3px;
}
.location-list strong {
  display: block;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--linen);
  margin-bottom: 2px;
}
.location-list span {
  font-size: 0.92rem;
  color: rgba(245, 239, 226, 0.7);
}
.location-list a:hover { color: var(--brass-2); }
.location-image {
  background-image:
    linear-gradient(135deg, rgba(10, 45, 48, 0.4), rgba(168, 136, 71, 0.2)),
    url('https://images.unsplash.com/photo-1740482881694-d72f4e4cc47e?w=1400&q=80');
  background-size: cover;
  background-position: center;
}

/* ----- Testimonial ----- */
.testimonial {
  text-align: center;
  background: var(--cream);
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.testimonial blockquote {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.4;
  color: var(--ink);
  max-width: 800px;
  margin: 0 auto 2rem;
}
.testimonial blockquote::before, .testimonial blockquote::after {
  font-family: var(--display);
  color: var(--brass);
  font-size: 1.2em;
  line-height: 0;
  vertical-align: -0.4em;
}
.testimonial blockquote::before { content: "“"; margin-right: 0.1em; }
.testimonial blockquote::after { content: "”"; margin-left: 0.1em; }
.testimonial cite {
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brass);
}

/* ----- Long-form prose ----- */
.prose {
  max-width: 720px;
  margin: 0 auto;
}
.prose p {
  font-size: 1.08rem;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.prose h2 {
  margin-top: 3rem;
  margin-bottom: 1.25rem;
  font-style: italic;
  font-weight: 300;
}
.prose h3 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
.prose ul, .prose ol {
  margin: 1rem 0 1.5rem 1.5rem;
  color: var(--ink);
}
.prose ul li, .prose ol li {
  margin-bottom: 0.6rem;
  padding-left: 0.5rem;
}
.prose .pullquote {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.5rem;
  line-height: 1.4;
  color: var(--teal);
  border-left: 2px solid var(--brass);
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin: 2.5rem 0;
}

/* ----- Form ----- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 720px;
  margin: 0 auto;
}
.form-grid .full { grid-column: 1 / -1; }
.field label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 0.5rem;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 0.9rem 0;
  font-family: var(--body);
  font-size: 1rem;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  transition: border-color 0.3s ease;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--brass);
}
.field input::placeholder, .field textarea::placeholder { color: var(--mute); opacity: 0.6; }

/* ----- FAQ ----- */
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 1.5rem 0;
}
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 400;
  list-style: none;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--body);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--brass);
  transition: transform 0.3s ease;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
  margin-top: 1rem;
  color: var(--mute);
  max-width: none;
}

/* ----- Footer ----- */
.site-footer {
  background: var(--ink);
  color: var(--linen);
  padding: 5rem 0 2rem;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100'><circle cx='50' cy='50' r='1' fill='rgba(168,136,71,0.07)'/></svg>");
  background-size: 28px 28px;
  pointer-events: none;
  opacity: 0.5;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  position: relative;
  margin-bottom: 3.5rem;
}
.footer-brand .brand { color: var(--linen); margin-bottom: 1rem; }
.footer-brand p {
  font-size: 0.92rem;
  color: rgba(245, 239, 226, 0.65);
  max-width: 32ch;
}
.footer-col h4 {
  font-family: var(--body);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass-2);
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col a {
  font-size: 0.92rem;
  color: rgba(245, 239, 226, 0.7);
  transition: color 0.3s ease;
}
.footer-col a:hover { color: var(--brass-2); }

.footer-bottom {
  position: relative;
  border-top: 1px solid rgba(245, 239, 226, 0.12);
  padding-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(245, 239, 226, 0.5);
  letter-spacing: 0.05em;
  margin: 0;
}
.footer-social {
  display: flex; gap: 1rem;
}
.footer-social a {
  width: 36px; height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245, 239, 226, 0.2);
  border-radius: 50%;
  color: rgba(245, 239, 226, 0.7);
  transition: all 0.3s ease;
}
.footer-social a:hover {
  border-color: var(--brass);
  background: var(--brass);
  color: var(--linen);
}
.footer-social svg { width: 14px; height: 14px; }

/* ----- Decorative accents ----- */
.lighthouse-accent {
  position: absolute;
  width: 130px;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}
.palm-accent {
  position: absolute;
  width: 220px;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}

/* ----- Animations ----- */
[data-fade] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s ease, transform 1s cubic-bezier(.2,.7,.2,1);
}
[data-fade].in { opacity: 1; transform: translateY(0); }
[data-fade-delay="1"] { transition-delay: 0.1s; }
[data-fade-delay="2"] { transition-delay: 0.2s; }
[data-fade-delay="3"] { transition-delay: 0.3s; }
[data-fade-delay="4"] { transition-delay: 0.4s; }

/* ----- Responsive ----- */
@media (max-width: 980px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  section { padding: 4rem 0; }

  .nav-links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    background: var(--linen);
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(.2,.7,.2,1);
    gap: 2rem;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.5rem; font-family: var(--display); }
  .nav-links .nav-cta { font-size: 0.72rem; font-family: var(--body); }
  .menu-toggle { display: block; }

  .hero { min-height: auto; padding: 9rem 0 5rem; }
  .hero h1 { font-size: clamp(2.2rem, 9vw, 3.5rem); }
  .hero-palm { width: 180px; opacity: 0.25; }
  .hero-scroll { display: none; }

  .page-hero { padding: 9rem 0 4rem; }

  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .two-col--reversed > :first-child { order: 0; }
  .two-col-image { aspect-ratio: 4 / 3; }

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

  .tiers { grid-template-columns: 1fr; }
  .tier--featured { transform: none; }

  .image-strip { grid-template-columns: repeat(2, 1fr); }

  .location-grid { grid-template-columns: 1fr; }
  .location-image { min-height: 280px; }

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

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============ Contact page ============ */
.info-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem 2rem;
  margin-top: 2rem;
}
.info-item h4 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 0.5rem;
}
.info-item p {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--ink);
}
.info-item p a {
  color: var(--ink);
  border-bottom: 1px solid rgba(168, 136, 71, 0.4);
  transition: border-color 0.3s, color 0.3s;
}
.info-item p a:hover {
  color: var(--brass);
  border-bottom-color: var(--brass);
}

.contact-form {
  max-width: 880px;
  margin: 0 auto;
  background: var(--linen);
  padding: 3rem;
  border: 1px solid rgba(20, 32, 31, 0.06);
  position: relative;
}
.contact-form::before {
  content: '';
  position: absolute;
  inset: -1px;
  border: 1px solid var(--brass);
  opacity: 0.18;
  pointer-events: none;
  transform: translate(8px, 8px);
}
.form-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.form-fineprint {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--mute);
  letter-spacing: 0.04em;
  margin: 0;
  font-style: italic;
}
.form-success {
  background: rgba(31, 90, 92, 0.08);
  border-left: 3px solid var(--teal);
  padding: 1rem 1.25rem;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--deep);
  margin-top: 1rem;
}

.map-panel {
  background: var(--linen);
  border: 1px solid rgba(20, 32, 31, 0.06);
  overflow: hidden;
  position: relative;
}
.map-panel::before {
  content: '';
  position: absolute;
  inset: -1px;
  border: 1px solid var(--brass);
  opacity: 0.2;
  pointer-events: none;
  transform: translate(10px, 10px);
}
.map-panel iframe {
  filter: saturate(0.85) contrast(0.95);
}
.map-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: var(--cream);
  flex-wrap: wrap;
  gap: 1rem;
}
.map-footer p {
  margin: 0;
  font-family: var(--font-serif);
  color: var(--ink);
  font-size: 1rem;
}

@media (max-width: 760px) {
  .info-list { grid-template-columns: 1fr; }
  .contact-form { padding: 1.75rem 1.25rem; }
  .map-panel iframe { height: 320px; }
  .map-footer { flex-direction: column; align-items: flex-start; }
}
