@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,400;0,6..72,600;1,6..72,400&family=Sora:wght@300;400;500;600;700&display=swap');

:root {
  --ft-sky: #4A90B8;
  --ft-oak: #B8895A;
  --ft-cloud: #F7F9FB;
  --ft-slate: #2C3640;
  --ft-sky-light: #6BA8CC;
  --ft-oak-light: #D4A97A;
  --ft-white: #FFFFFF;
  --ft-border: #E2E8EE;
  --ft-muted: #5A6672;
  --ft-radius: 12px;
  --ft-radius-pill: 999px;
  --ft-shadow: 0 8px 32px rgba(44, 54, 64, 0.08);
  --ft-shadow-lg: 0 16px 48px rgba(44, 54, 64, 0.14);
  --ft-font: 'Sora', sans-serif;
  --ft-serif: 'Newsreader', Georgia, serif;
  --ft-max: 1200px;
  --ft-header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--ft-font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ft-slate);
  background: var(--ft-cloud);
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--ft-sky); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--ft-oak); }

.ft-container {
  width: 100%;
  max-width: var(--ft-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Header ── */
.ft-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ft-white);
  border-bottom: 1px solid var(--ft-border);
  height: var(--ft-header-h);
}

.ft-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--ft-header-h);
  gap: 24px;
}

.ft-logo {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ft-slate);
  white-space: nowrap;
  flex-shrink: 0;
}

.ft-logo span { color: var(--ft-sky); }

.ft-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.ft-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ft-muted);
}

.ft-nav a:hover,
.ft-nav a.ft-nav__active {
  color: var(--ft-sky);
}

.ft-pill-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  background: var(--ft-sky);
  color: var(--ft-white) !important;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--ft-radius-pill);
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.15s;
}

.ft-pill-cta:hover {
  background: var(--ft-sky-light);
  color: var(--ft-white) !important;
  transform: translateY(-1px);
}

.ft-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.ft-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ft-slate);
  border-radius: 2px;
  transition: transform 0.2s;
}

/* ── Hero Split ── */
.ft-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--ft-header-h));
  max-height: 780px;
}

.ft-hero-split__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 48px 64px max(24px, calc((100vw - var(--ft-max)) / 2 + 24px));
  background: var(--ft-cloud);
}

.ft-hero-split__image {
  position: relative;
  overflow: hidden;
}

.ft-hero-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ft-hero-split__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(74, 144, 184, 0.15) 0%, transparent 60%);
}

.ft-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ft-oak);
  margin-bottom: 16px;
}

.ft-hero-title {
  font-family: var(--ft-serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ft-slate);
  margin-bottom: 20px;
}

.ft-hero-title em {
  font-style: italic;
  color: var(--ft-sky);
}

.ft-hero-text {
  font-size: 1.05rem;
  color: var(--ft-muted);
  max-width: 440px;
  margin-bottom: 32px;
}

.ft-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.ft-btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  font-family: var(--ft-font);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--ft-radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
}

.ft-btn--primary {
  background: var(--ft-sky);
  color: var(--ft-white);
  border-color: var(--ft-sky);
}

.ft-btn--primary:hover {
  background: var(--ft-sky-light);
  border-color: var(--ft-sky-light);
  color: var(--ft-white);
}

.ft-btn--outline {
  background: transparent;
  color: var(--ft-slate);
  border-color: var(--ft-border);
}

.ft-btn--outline:hover {
  border-color: var(--ft-oak);
  color: var(--ft-oak);
}

/* ── Page Hero ── */
.ft-page-hero {
  padding: 72px 0 56px;
  background: var(--ft-white);
  border-bottom: 1px solid var(--ft-border);
}

.ft-page-hero h1 {
  font-family: var(--ft-serif);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 600;
  margin-bottom: 12px;
}

.ft-page-hero p {
  color: var(--ft-muted);
  max-width: 560px;
  font-size: 1.05rem;
}

/* ── Sections ── */
.ft-section {
  padding: 80px 0;
}

.ft-section--white { background: var(--ft-white); }
.ft-section--cloud { background: var(--ft-cloud); }

.ft-section__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.ft-section__head h2 {
  font-family: var(--ft-serif);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  margin-bottom: 12px;
}

.ft-section__head p {
  color: var(--ft-muted);
}

/* ── Features Grid ── */
.ft-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.ft-feature {
  background: var(--ft-white);
  border: 1px solid var(--ft-border);
  border-radius: var(--ft-radius);
  padding: 32px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.ft-feature:hover {
  box-shadow: var(--ft-shadow);
  transform: translateY(-4px);
}

.ft-feature__icon {
  width: 48px;
  height: 48px;
  background: rgba(74, 144, 184, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.ft-feature h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.ft-feature p {
  font-size: 0.9rem;
  color: var(--ft-muted);
}

/* ── Cards (Flats) ── */
.ft-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.ft-card {
  background: var(--ft-white);
  border-radius: var(--ft-radius);
  overflow: hidden;
  border: 1px solid var(--ft-border);
  transition: box-shadow 0.2s, transform 0.2s;
}

.ft-card:hover {
  box-shadow: var(--ft-shadow-lg);
  transform: translateY(-4px);
}

.ft-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.ft-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.ft-card:hover .ft-card__img img { transform: scale(1.04); }

.ft-card__body { padding: 24px; }

.ft-card__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ft-oak);
  margin-bottom: 8px;
}

.ft-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.ft-card__meta {
  display: flex;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--ft-muted);
  margin-bottom: 12px;
}

.ft-card__price {
  font-weight: 700;
  color: var(--ft-sky);
  font-size: 1.05rem;
}

/* ── Gallery ── */
.ft-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ft-gallery__item {
  border-radius: var(--ft-radius);
  overflow: hidden;
  position: relative;
}

.ft-gallery__item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.4s;
}

.ft-gallery__item:hover img { transform: scale(1.05); }

.ft-gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(transparent, rgba(44, 54, 64, 0.75));
  color: var(--ft-white);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ── About Split ── */
.ft-about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.ft-about-split__img {
  border-radius: var(--ft-radius);
  overflow: hidden;
  box-shadow: var(--ft-shadow);
}

.ft-about-split__content h2 {
  font-family: var(--ft-serif);
  font-size: 2rem;
  margin-bottom: 16px;
}

.ft-about-split__content p {
  color: var(--ft-muted);
  margin-bottom: 16px;
}

.ft-stats {
  display: flex;
  gap: 32px;
  margin-top: 24px;
}

.ft-stat strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--ft-sky);
}

.ft-stat span {
  font-size: 0.85rem;
  color: var(--ft-muted);
}

/* ── CTA Banner ── */
.ft-cta {
  position: relative;
  border-radius: var(--ft-radius);
  overflow: hidden;
  margin: 0 auto;
  max-width: var(--ft-max);
}

.ft-cta img {
  width: 100%;
  aspect-ratio: 16/6;
  object-fit: cover;
}

.ft-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(44, 54, 64, 0.82) 0%, rgba(44, 54, 64, 0.4) 100%);
  display: flex;
  align-items: center;
  padding: 48px 64px;
}

.ft-cta__text h2 {
  font-family: var(--ft-serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--ft-white);
  margin-bottom: 12px;
}

.ft-cta__text p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
  max-width: 480px;
}

.ft-btn--oak {
  background: var(--ft-oak);
  color: var(--ft-white);
  border-color: var(--ft-oak);
}

.ft-btn--oak:hover {
  background: var(--ft-oak-light);
  border-color: var(--ft-oak-light);
  color: var(--ft-white);
}

/* ── Contact ── */
.ft-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}

.ft-contact-info h2 {
  font-family: var(--ft-serif);
  font-size: 1.75rem;
  margin-bottom: 24px;
}

.ft-contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.ft-contact-item__icon {
  width: 44px;
  height: 44px;
  background: rgba(74, 144, 184, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.ft-contact-item strong {
  display: block;
  font-size: 0.85rem;
  color: var(--ft-muted);
  margin-bottom: 2px;
}

.ft-form {
  background: var(--ft-white);
  border: 1px solid var(--ft-border);
  border-radius: var(--ft-radius);
  padding: 36px;
}

.ft-form h3 {
  font-size: 1.2rem;
  margin-bottom: 24px;
}

.ft-form-group {
  margin-bottom: 20px;
}

.ft-form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--ft-slate);
}

.ft-form-group input,
.ft-form-group select,
.ft-form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--ft-font);
  font-size: 0.95rem;
  border: 1px solid var(--ft-border);
  border-radius: 8px;
  background: var(--ft-cloud);
  color: var(--ft-slate);
  transition: border-color 0.2s;
}

.ft-form-group input:focus,
.ft-form-group select:focus,
.ft-form-group textarea:focus {
  outline: none;
  border-color: var(--ft-sky);
}

.ft-form-group textarea { resize: vertical; min-height: 120px; }

.ft-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ── Privacy ── */
.ft-legal {
  max-width: 760px;
  margin: 0 auto;
}

.ft-legal h2 {
  font-family: var(--ft-serif);
  font-size: 1.5rem;
  margin: 36px 0 12px;
}

.ft-legal h2:first-child { margin-top: 0; }

.ft-legal p,
.ft-legal li {
  color: var(--ft-muted);
  margin-bottom: 12px;
}

.ft-legal ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

/* ── Footer ── */
.ft-footer {
  background: var(--ft-slate);
  color: rgba(255, 255, 255, 0.75);
  padding: 64px 0 0;
}

.ft-footer a { color: rgba(255, 255, 255, 0.75); }
.ft-footer a:hover { color: var(--ft-oak-light); }

.ft-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-bottom: 48px;
}

.ft-footer__brand {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ft-white);
  margin-bottom: 12px;
}

.ft-footer__brand span { color: var(--ft-sky-light); }

.ft-footer__col h4 {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ft-white);
  margin-bottom: 16px;
}

.ft-footer__col ul { list-style: none; }

.ft-footer__col li { margin-bottom: 8px; }

.ft-footer__col li a { font-size: 0.9rem; }

.ft-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
}

/* ── Cookie Modal ── */
.ft-cookie {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(44, 54, 64, 0.5);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.ft-cookie__box {
  background: var(--ft-white);
  border-radius: var(--ft-radius);
  padding: 36px 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: var(--ft-shadow-lg);
}

.ft-cookie__box h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.ft-cookie__box p {
  font-size: 0.9rem;
  color: var(--ft-muted);
  margin-bottom: 24px;
}

.ft-cookie__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

/* ── Responsive 900px ── */
@media (max-width: 900px) {
  .ft-hero-split {
    grid-template-columns: 1fr;
    max-height: none;
    min-height: auto;
  }

  .ft-hero-split__copy {
    padding: 48px 24px;
    order: 1;
  }

  .ft-hero-split__image {
    order: 0;
    max-height: 360px;
  }

  .ft-features,
  .ft-cards,
  .ft-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .ft-about-split,
  .ft-contact-grid {
    grid-template-columns: 1fr;
  }

  .ft-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ft-cta__overlay { padding: 32px; }

  .ft-burger { display: flex; }

  .ft-nav {
    display: none;
    position: absolute;
    top: var(--ft-header-h);
    left: 0;
    right: 0;
    background: var(--ft-white);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--ft-border);
    box-shadow: var(--ft-shadow);
  }

  .ft-nav--open { display: flex; }

  .ft-header { position: relative; }

  .ft-header .ft-pill-cta { display: none; }
}

/* ── Responsive 560px ── */
@media (max-width: 560px) {
  .ft-features,
  .ft-cards,
  .ft-gallery,
  .ft-footer__grid {
    grid-template-columns: 1fr;
  }

  .ft-form-row { grid-template-columns: 1fr; }

  .ft-stats { flex-direction: column; gap: 16px; }

  .ft-hero-actions { flex-direction: column; }

  .ft-hero-actions .ft-btn { text-align: center; justify-content: center; }

  .ft-section { padding: 56px 0; }

  .ft-cta__overlay {
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
  }
}
