/* ==========================================
   Claradine House — Guided Kite & Wing Base
   ========================================== */

/* --- Variables --- */
:root {
  --color-bg: #f6f6f2;
  --color-bg-alt: #edebe5;
  --color-surface: #ffffff;
  --color-text: #1A1A2E;
  --color-text-soft: #555;
  --color-accent: #0A6E6E;
  --color-accent-light: #0E8C8C;
  --color-accent-dark: #085858;
  --color-gold: #C8A45C;
  --color-warning: #9B5C2E;
  --color-warning-bg: #FBF4EB;
  --color-border: #ddd;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --max-width: 1100px;
  --nav-height: 64px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-height); }
body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Container --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  background: transparent;
  text-align: center;
}
.btn--primary {
  background: var(--color-accent);
  color: #fff;
}
.btn--primary:hover {
  background: var(--color-accent-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(10, 110, 110, 0.3);
}
.btn--outline {
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn--outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
}
.btn--small {
  font-size: 0.85rem;
  padding: 0.5rem 1.2rem;
}
.btn--large {
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
}
.btn--primary.btn--large:hover {
  box-shadow: 0 6px 20px rgba(10, 110, 110, 0.35);
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.nav--scrolled {
  background: rgba(246, 246, 242, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
}
.nav--scrolled .nav__logo,
.nav--scrolled .nav__links a {
  color: var(--color-text);
}
.nav--scrolled .btn--small {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}
.nav--scrolled .btn--small:hover {
  background: var(--color-accent-light);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #fff;
  font-weight: 700;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav__links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  transition: color 0.2s;
  padding: 0.25rem 0;
}
.nav__links a:hover {
  color: #fff;
}

/* --- Nav Toggle (mobile) --- */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}
.nav--scrolled .nav__toggle span {
  background: var(--color-text);
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0B2A3E 0%, #0D3B4F 30%, #1A5C6E 70%, #276D7A 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(10, 110, 110, 0.25), transparent),
    radial-gradient(ellipse 50% 50% at 80% 20%, rgba(200, 164, 92, 0.08), transparent);
  pointer-events: none;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  pointer-events: none;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11, 42, 62, 0.4) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}
.hero__tag {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-gold);
  margin-bottom: 1rem;
  font-weight: 500;
}
.hero__title {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.5rem;
}
.hero__subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* --- Sections --- */
.section {
  padding: 5rem 0;
}
.section--alt {
  background: var(--color-bg-alt);
}
.section__header {
  margin-bottom: 3rem;
}
.section__label {
  display: inline-block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.section__header h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.section__header p {
  color: var(--color-text-soft);
  font-size: 1.05rem;
  max-width: 600px;
}

/* --- Section Body (content + photos rail) --- */
.section__body {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}
.section__content {
  flex: 1;
  min-width: 0;
}
.photos-rail {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 20%;
  max-width: 200px;
  flex-shrink: 0;
}
.photos-rail img {
  width: 100%;
  border-radius: 10px;
  aspect-ratio: 1;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.2s;
}
.photos-rail img:hover {
  transform: scale(1.03);
}
@media (max-width: 768px) {
  .photos-rail {
    display: none;
  }
}
.about__text p {
  font-size: 1.05rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}
.about__text p:last-child { margin-bottom: 0; }
.about__text .link,
.about__text a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
  transition: color 0.2s;
}
.about__text a:hover {
  color: var(--color-accent-light);
}
.about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.stat {
  background: var(--color-surface);
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.stat__number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stat__label {
  font-size: 0.85rem;
  color: var(--color-text-soft);
}

/* --- Grid --- */
.grid {
  display: grid;
  gap: 1.5rem;
}
.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

/* --- Cards --- */
.card {
  background: var(--color-surface);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}
.card--callout {
  background: var(--color-accent);
  color: #fff;
  padding: 2rem 2.5rem;
}
.card--callout:hover {
  transform: none;
  box-shadow: 0 4px 16px rgba(10, 110, 110, 0.2);
}
.card--callout h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}
.card--callout p {
  opacity: 0.9;
  line-height: 1.7;
}
.card--callout p + p { margin-top: 0.75rem; }
.card--warning {
  background: var(--color-warning-bg);
  color: var(--color-text);
  border: 1px solid #E8D5BF;
}
.card--warning h3 {
  color: var(--color-warning);
}
.card--warning p { opacity: 1; color: var(--color-text-soft); }
.card__icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}
.card__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.card__text {
  font-size: 0.925rem;
  color: var(--color-text-soft);
  line-height: 1.6;
}
.card__badge {
  display: inline-block;
  background: var(--color-accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.card--featured {
  border: 2px solid var(--color-accent);
}

/* --- Two Column --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.two-col__block h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.two-col__block--caution {
  background: var(--color-warning-bg);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #E8D5BF;
}
.two-col__block--caution h3 {
  color: var(--color-warning);
}
.two-col__block--caution p {
  color: var(--color-text-soft);
  line-height: 1.7;
}

/* --- Checklist --- */
.checklist li {
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--color-text-soft);
}
.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}
.checklist--small li {
  font-size: 0.875rem;
  padding: 0.3rem 0 0.3rem 1.3rem;
}
.two-col__block--caution .checklist li::before {
  color: var(--color-warning);
}

/* --- Beaches --- */
.beaches {
  display: grid;
  gap: 0.75rem;
}
.beach {
  background: var(--color-surface);
  padding: 1.25rem 1.5rem;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  transition: transform 0.2s, box-shadow 0.2s;
}
.beach:hover {
  transform: translateX(4px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.beach__info h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}
.beach__info p {
  font-size: 0.875rem;
  color: var(--color-text-soft);
  margin: 0;
}
.beach__distance {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-accent);
  background: rgba(10, 110, 110, 0.08);
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  white-space: nowrap;
  margin-bottom: 0.25rem;
}

/* --- Pricing --- */
.pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}
.pricing__card {
  background: var(--color-surface);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.pricing__card--primary {
  text-align: center;
  border: 2px solid var(--color-accent);
}
.pricing__from {
  font-size: 0.85rem;
  color: var(--color-text-soft);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.25rem;
}
.pricing__amount {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 0.15rem;
}
.pricing__per {
  font-size: 0.9rem;
  color: var(--color-text-soft);
  margin-bottom: 1rem;
}
.pricing__desc {
  font-size: 0.95rem;
  color: var(--color-text-soft);
  margin-bottom: 1rem;
}
.pricing__divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 1.25rem 0;
}
.pricing__details {
  text-align: left;
  display: inline-block;
}
.pricing__details li {
  padding: 0.3rem 0;
  font-size: 0.9rem;
  color: var(--color-text-soft);
}
.pricing__extra {
  font-size: 1rem;
  color: var(--color-text-soft);
  line-height: 1.6;
}
.pricing__extra strong {
  color: var(--color-text);
}

/* --- FAQ --- */
.faq {
  max-width: 740px;
  margin: 0 auto;
}
.faq__item {
  border-bottom: 1px solid var(--color-border);
}
.faq__item:first-child {
  border-top: 1px solid var(--color-border);
}
.faq__toggle {
  display: none;
}
.faq__question {
  display: block;
  padding: 1.1rem 0;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  position: relative;
  transition: color 0.2s;
}
.faq__question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 1.1rem;
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--color-accent);
  transition: transform 0.2s;
}
.faq__toggle:checked + .faq__question::after {
  content: '−';
}
.faq__question:hover {
  color: var(--color-accent);
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq__toggle:checked ~ .faq__answer {
  max-height: 300px;
  padding-bottom: 1.25rem;
}
.faq__answer p {
  font-size: 0.925rem;
  color: var(--color-text-soft);
  line-height: 1.7;
}

/* --- Local Pictures Grid --- */
.local-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.local-grid__item {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.local-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.local-grid__item:hover img {
  transform: scale(1.05);
}
.local-grid__item--wide {
  grid-column: span 2;
  aspect-ratio: 8 / 3;
}
@media (max-width: 768px) {
  .local-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .local-grid__item--wide {
    grid-column: span 2;
    aspect-ratio: 4 / 3;
  }
}

/* --- CTA --- */
.section--cta {
  background: linear-gradient(135deg, #0B2A3E 0%, #1A5C6E 100%);
  text-align: center;
}
.cta__title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 1rem;
}
.cta__text {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.cta__contacts {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.cta__contacts .btn--outline {
  border-color: rgba(255,255,255,0.4);
}
.cta__contacts .btn--outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
}
.cta__small {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-top: 1.5rem;
}

/* --- Footer --- */
.footer {
  padding: 2rem 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-text-soft);
}
.footer__inner p + p {
  margin-top: 0.25rem;
}
.footer a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}
.footer a:hover {
  color: var(--color-accent-light);
}

/* ==========================================
   Responsive
   ========================================== */

@media (max-width: 900px) {
  .hero__title { font-size: 2.8rem; }
  .section__header h2 { font-size: 2rem; }
  .about__content { grid-template-columns: 1fr; }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .nav__links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--color-bg);
    flex-direction: column;
    padding: 2rem;
    gap: 1.25rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  }
  .nav__links--open { display: flex; }
  .nav__links a { color: var(--color-text); }
  .nav__toggle { display: flex; }
  .hero__title { font-size: 2.2rem; }
  .section { padding: 3rem 0; }
  .section__header h2 { font-size: 1.65rem; }
  .grid--3 { grid-template-columns: 1fr; }
  .about__stats { grid-template-columns: 1fr 1fr; }
  .card--callout { padding: 1.5rem; }
  .cta__title { font-size: 1.75rem; }
}
