/* Island Media — Tropical Editorial */
:root {
  --navy: #0A2540;
  --navy-deep: #061629;
  --teal: #00B4A6;
  --teal-deep: #007F75;
  --coral: #FF6B47;
  --coral-deep: #E04E2A;
  --sun: #FFC857;
  --palm: #1F8A4C;
  --sand: #FFF6E8;
  --sand-2: #FBEAD0;
  --ink: #0A2540;
  --paper: #FFFCF5;
  --line: rgba(10, 37, 64, 0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.serif {
  font-family: 'DM Serif Display', 'Playfair Display', Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 0.95;
}

.mono {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.eyebrow {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-deep);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
}

/* ===== Layout ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 640px) { .container { padding: 0 20px; } }

section { padding: 120px 0; position: relative; }
@media (max-width: 768px) { section { padding: 80px 0; } }

/* ===== Nav ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.35s ease;
}
.nav.scrolled {
  background: rgba(255, 252, 245, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 2px;
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.logo-mark {
  width: 56px; height: 56px;
  flex-shrink: 0;
  background-image: url('images/island-logo-transparent.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
  list-style: none;
}
.nav-links a {
  color: var(--navy);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1.5px;
  background: var(--coral);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--coral); }
.nav-links a:hover::after { width: 100%; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--coral);
  color: white;
}
.btn-primary:hover {
  background: var(--coral-deep);
  transform: translateY(-1px);
  box-shadow: 0 12px 30px -10px var(--coral);
}
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-ghost:hover {
  background: var(--navy);
  color: var(--sand);
}
.btn-light {
  background: var(--sand);
  color: var(--navy);
}
.btn-light:hover { background: white; transform: translateY(-1px); }

.btn .arrow {
  transition: transform 0.25s ease;
}
.btn:hover .arrow { transform: translateX(4px); }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: all 0.3s;
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .nav-cta { display: none; }
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--navy);
  color: var(--sand);
  z-index: 99;
  display: flex;
  flex-direction: column;
  padding: 100px 32px 32px;
  transform: translateY(-100%);
  transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  font-family: 'DM Serif Display', serif;
  font-size: 42px;
  color: var(--sand);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 246, 232, 0.15);
}

/* ===== Hero ===== */
.hero {
  padding-top: 120px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
}
.hero h1 {
  font-size: clamp(48px, 7vw, 104px);
  line-height: 0.92;
  margin: 24px 0 28px;
}
.hero h1 .accent { color: var(--coral); font-style: italic; }
.hero h1 .teal { color: var(--teal-deep); font-style: italic; }
.hero p {
  font-size: 19px;
  color: rgba(10, 37, 64, 0.7);
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  background: var(--sand-2);
}
.hero-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-sun {
  position: absolute;
  top: -80px; right: -80px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--sun) 0%, var(--coral) 70%);
  filter: blur(2px);
  opacity: 0.95;
  z-index: -1;
  animation: float 8s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, 20px) scale(1.05); }
}
.hero-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--paper);
  padding: 14px 18px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 20px 40px -20px rgba(10, 37, 64, 0.3);
}
.hero-badge-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--palm);
  box-shadow: 0 0 0 4px rgba(31, 138, 76, 0.2);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(31, 138, 76, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(31, 138, 76, 0.05); }
}

.hero-meta {
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 700px) {
  .hero-meta { grid-template-columns: repeat(2, 1fr); }
}
.hero-meta-item .num {
  font-family: 'DM Serif Display', serif;
  font-size: 44px;
  color: var(--navy);
  display: block;
  line-height: 1;
}
.hero-meta-item .label {
  font-size: 13px;
  color: rgba(10, 37, 64, 0.6);
  margin-top: 6px;
  display: block;
}

/* ===== Marquee ===== */
.marquee {
  background: var(--navy);
  color: var(--sand);
  padding: 28px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 60px;
  animation: scroll 40s linear infinite;
  white-space: nowrap;
  font-family: 'DM Serif Display', serif;
  font-size: 32px;
  font-style: italic;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 60px; }
.marquee-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--coral);
  display: inline-block;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== Services ===== */
.services { background: var(--paper); }
.section-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  margin-bottom: 80px;
  align-items: end;
}
@media (max-width: 800px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
}
.section-head h2 {
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 0.95;
}
.section-head h2 em { color: var(--coral); font-style: italic; }
.section-head p {
  font-size: 17px;
  color: rgba(10, 37, 64, 0.65);
}

.services-tabs {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 900px) {
  .services-tabs { grid-template-columns: 1fr; gap: 32px; }
}
.tab-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: sticky;
  top: 100px;
}
@media (max-width: 900px) { .tab-list { position: static; flex-direction: row; overflow-x: auto; padding-bottom: 8px; } }

.tab-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: none;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  color: rgba(10, 37, 64, 0.4);
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
  width: 100%;
}
.tab-btn:hover { color: var(--navy); }
.tab-btn.active { color: var(--coral); }
.tab-btn .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: rgba(10, 37, 64, 0.4);
  font-style: normal;
}
.tab-btn.active .num { color: var(--coral); }
@media (max-width: 900px) {
  .tab-btn { font-size: 18px; padding: 12px 18px; border: 1px solid var(--line); border-radius: 999px; white-space: nowrap; flex-shrink: 0; }
  .tab-btn.active { border-color: var(--coral); background: rgba(255, 107, 71, 0.06); }
  .tab-btn .num { display: none; }
}

.tab-panel { display: none; animation: fadeUp 0.5s ease; }
.tab-panel.active { display: block; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.tab-panel-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
  align-items: center;
}
@media (max-width: 700px) { .tab-panel-head { grid-template-columns: 1fr; } }
.tab-panel-image {
  aspect-ratio: 4/3;
  border-radius: 18px;
  overflow: hidden;
  background: var(--sand-2);
}
.tab-panel-image img { width: 100%; height: 100%; object-fit: cover; }

.tab-panel h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 38px;
  margin-bottom: 16px;
  line-height: 1;
}
.tab-panel .lead {
  font-size: 17px;
  color: rgba(10, 37, 64, 0.7);
  margin-bottom: 20px;
}
.deliverables {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  margin-top: 24px;
}
@media (max-width: 600px) { .deliverables { grid-template-columns: 1fr; } }
.deliverables li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.deliverables li::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal);
  margin-top: 8px;
  flex-shrink: 0;
}

.tab-panel-meta {
  margin-top: 28px;
  padding: 24px;
  background: var(--sand);
  border-radius: 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 600px) { .tab-panel-meta { grid-template-columns: 1fr 1fr; } }
.tab-panel-meta .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(10, 37, 64, 0.55);
  display: block;
  margin-bottom: 6px;
}
.tab-panel-meta .val {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--navy);
}

/* ===== Pricing ===== */
.pricing {
  background: var(--navy);
  color: var(--sand);
  position: relative;
  overflow: hidden;
}
.pricing::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--coral) 0%, transparent 60%);
  opacity: 0.25;
  border-radius: 50%;
}
.pricing .section-head h2 { color: var(--sand); }
.pricing .section-head h2 em { color: var(--sun); }
.pricing .section-head p { color: rgba(255, 246, 232, 0.7); }
.pricing .eyebrow { color: var(--sun); }

.billing-toggle {
  display: inline-flex;
  background: rgba(255, 246, 232, 0.08);
  padding: 4px;
  border-radius: 999px;
  margin-bottom: 48px;
  border: 1px solid rgba(255, 246, 232, 0.12);
}
.billing-toggle button {
  background: transparent;
  border: none;
  color: rgba(255, 246, 232, 0.6);
  padding: 10px 20px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
}
.billing-toggle button.active {
  background: var(--sand);
  color: var(--navy);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
}
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } }

.tier {
  background: rgba(255, 246, 232, 0.04);
  border: 1px solid rgba(255, 246, 232, 0.12);
  border-radius: 24px;
  padding: 36px 32px;
  transition: all 0.3s ease;
  position: relative;
}
.tier:hover {
  background: rgba(255, 246, 232, 0.08);
  transform: translateY(-4px);
}
.tier.featured {
  background: linear-gradient(180deg, rgba(255, 200, 87, 0.12), rgba(255, 107, 71, 0.06));
  border-color: var(--sun);
}
.tier-badge {
  position: absolute;
  top: -12px; right: 24px;
  background: var(--sun);
  color: var(--navy);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
}
.tier-name {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  margin-bottom: 8px;
}
.tier-tag {
  font-size: 14px;
  color: rgba(255, 246, 232, 0.65);
  margin-bottom: 28px;
}
.tier-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
}
.tier-price .amount {
  font-family: 'DM Serif Display', serif;
  font-size: 64px;
  line-height: 1;
}
.tier-price .currency {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  color: rgba(255, 246, 232, 0.7);
}
.tier-price .per {
  font-size: 14px;
  color: rgba(255, 246, 232, 0.6);
}
.tier-note {
  font-size: 13px;
  color: rgba(255, 246, 232, 0.5);
  margin-bottom: 28px;
  min-height: 20px;
}
.tier-features {
  list-style: none;
  margin-bottom: 32px;
}
.tier-features li {
  padding: 12px 0;
  border-top: 1px solid rgba(255, 246, 232, 0.08);
  font-size: 14.5px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(255, 246, 232, 0.85);
}
.tier-features li::before {
  content: "→";
  color: var(--sun);
  font-weight: 600;
}
.tier .btn {
  width: 100%;
  justify-content: center;
}

.tier-bottom {
  margin-top: 60px;
  padding: 32px;
  background: rgba(255, 246, 232, 0.04);
  border-radius: 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
@media (max-width: 700px) { .tier-bottom { grid-template-columns: 1fr; } }
.tier-bottom h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  margin-bottom: 4px;
}
.tier-bottom p { font-size: 14px; color: rgba(255, 246, 232, 0.65); }

/* ===== Work ===== */
.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}
.work-card {
  background: var(--sand-2);
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.work-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.work-card:hover img { transform: scale(1.05); }
.work-card .meta {
  position: absolute;
  inset: auto 20px 20px 20px;
  background: var(--paper);
  padding: 16px 18px;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transform: translateY(120%);
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
.work-card:hover .meta { transform: translateY(0); }
.work-card .meta-title {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
}
.work-card .meta-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--coral);
}

.w-6 { grid-column: span 6; }
.w-7 { grid-column: span 7; }
.w-5 { grid-column: span 5; }
.w-4 { grid-column: span 4; }
.w-8 { grid-column: span 8; }
.w-12 { grid-column: span 12; aspect-ratio: 21/9; }
@media (max-width: 800px) {
  .work-grid > * { grid-column: span 12 !important; aspect-ratio: 4/3 !important; }
}

/* ===== Testimonials ===== */
.testimonials {
  background: var(--coral);
  color: white;
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: "";
  position: absolute;
  bottom: -300px; left: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--sun), transparent 70%);
  opacity: 0.4;
}
.t-track {
  display: flex;
  gap: 24px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.t-card {
  flex: 0 0 calc(50% - 12px);
  background: rgba(255, 252, 245, 0.08);
  border: 1px solid rgba(255, 252, 245, 0.15);
  border-radius: 20px;
  padding: 36px;
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 800px) { .t-card { flex: 0 0 100%; } }
.t-card .quote {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  line-height: 1.2;
  flex: 1;
}
.t-card .quote::before { content: "“"; font-size: 1.2em; color: var(--sun); }
.t-card .quote::after { content: "”"; color: var(--sun); }
.t-author { display: flex; align-items: center; gap: 14px; }
.t-author .avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--sand);
  overflow: hidden;
}
.t-author .avatar img { width: 100%; height: 100%; object-fit: cover; }
.t-author .name {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
}
.t-author .role {
  font-size: 13px;
  opacity: 0.75;
}
.t-controls {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}
.t-controls button {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255, 252, 245, 0.12);
  border: 1px solid rgba(255, 252, 245, 0.25);
  color: white;
  cursor: pointer;
  font-size: 20px;
  transition: all 0.2s;
}
.t-controls button:hover { background: var(--sand); color: var(--coral-deep); }
.testimonials .section-head h2 { color: white; }
.testimonials .section-head h2 em { color: var(--navy); }
.testimonials .section-head p { color: rgba(255, 255, 255, 0.85); }
.testimonials .eyebrow { color: var(--navy); }

/* ===== Contact ===== */
.contact { background: var(--sand); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }
.contact-info h2 {
  font-size: clamp(40px, 5vw, 64px);
  margin-bottom: 24px;
}
.contact-info p {
  font-size: 17px;
  color: rgba(10, 37, 64, 0.7);
  margin-bottom: 32px;
}
.contact-meta {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
  background: var(--paper);
  border-radius: 16px;
}
.contact-meta-item { display: flex; gap: 14px; align-items: center; }
.contact-meta-item .icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-meta-item .label {
  font-size: 12px;
  color: rgba(10, 37, 64, 0.55);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 2px;
}
.contact-meta-item .val { font-weight: 500; }

.form {
  background: var(--paper);
  padding: 36px;
  border-radius: 20px;
  border: 1px solid var(--line);
}
.form-step-indicator {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
}
.form-step-indicator .step {
  flex: 1;
  height: 4px;
  background: var(--line);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.form-step-indicator .step.done { background: var(--teal); }
.form-step-indicator .step.active { background: var(--line); }
.form-step-indicator .step.active::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--coral);
  width: 50%;
  animation: progress 1.6s ease-in-out infinite alternate;
}
@keyframes progress { from { width: 30%; } to { width: 100%; } }

.form h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  margin-bottom: 4px;
}
.form .step-meta {
  font-size: 14px;
  color: rgba(10, 37, 64, 0.6);
  margin-bottom: 24px;
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--navy);
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: white;
  font-family: inherit;
  font-size: 15px;
  color: var(--navy);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(255, 107, 71, 0.12);
}
.field textarea { resize: vertical; min-height: 120px; }
.field.error input, .field.error textarea, .field.error select {
  border-color: #D63E2F;
}
.field-error {
  color: #D63E2F;
  font-size: 12px;
  margin-top: 6px;
  display: none;
}
.field.error .field-error { display: block; }

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  background: white;
  border: 1.5px solid var(--line);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  color: var(--navy);
}
.chip:hover { border-color: var(--navy); }
.chip.selected {
  background: var(--coral);
  border-color: var(--coral);
  color: white;
}

.form-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  justify-content: space-between;
}
.form-success {
  text-align: center;
  padding: 40px 20px;
}
.form-success .check {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--palm);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 20px;
  animation: pop 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
@keyframes pop {
  0% { transform: scale(0); }
  70% { transform: scale(1.2); }
  100% { transform: scale(1); }
}
.form-success h3 { font-size: 32px; margin-bottom: 8px; }
.form-success p { color: rgba(10, 37, 64, 0.7); margin-bottom: 24px; }

/* ===== Footer ===== */
.footer {
  background: var(--navy-deep);
  color: var(--sand);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
.footer h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 246, 232, 0.5);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a {
  color: var(--sand);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s;
}
.footer ul a:hover { color: var(--sun); }
.footer .tagline {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  line-height: 1.1;
  margin: 16px 0 20px;
  max-width: 320px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 246, 232, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  color: rgba(255, 246, 232, 0.5);
  font-size: 13px;
}
.footer .logo { color: var(--sand); }

/* ===== Reveal Animations ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-reveal].in {
  opacity: 1;
  transform: translateY(0);
}

/* prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
