/* ============================================================
   Marina Realty — Sample site by Internext
   Boutique brokerage. Navy + gold. Playfair + Inter.
============================================================ */

:root {
  --bg:        #FAF8F2;   /* warm ivory */
  --surface:   #FFFFFF;
  --primary:   #0E2D52;   /* deep navy */
  --primary-2: #143A6B;
  --accent:    #C99B5E;   /* gold */
  --accent-2:  #A87E45;
  --ink:       #1A2E4A;
  --muted:     #5A6878;
  --line:      #E6DFD0;
  --shadow:    0 12px 40px rgba(14,45,82,.10);
  --shadow-sm: 0 4px 14px rgba(14,45,82,.07);
  --radius:    14px;
  --radius-sm: 10px;
  --maxw:      1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p  { margin: 0 0 1em; color: var(--ink); }

a { color: var(--primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent); }

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

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

/* ============================================================
   Sample ribbon (top-right pill linking to Internext)
============================================================ */
.sample-ribbon {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(201, 155, 94, 0.95);
  color: #fff !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 500;
  box-shadow: 0 6px 24px rgba(201,155,94,.35);
  transition: transform .2s, box-shadow .2s;
}
.sample-ribbon:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(201,155,94,.45);
  color: #fff;
}
.sample-ribbon strong { font-weight: 700; }
@media (max-width: 560px) {
  .sample-ribbon { top: 12px; right: 12px; padding: 8px 12px; font-size: .72rem; }
  .sample-ribbon span { display: none; }
}

/* ============================================================
   Header / Nav
============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 242, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.45rem;
  color: var(--primary);
}
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(201,155,94,.4);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--ink);
  font-size: .92rem;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
}
.nav-links a[aria-current="page"] {
  color: var(--primary);
}
.nav-links a[aria-current="page"]::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
}
.nav-cta {
  background: var(--primary);
  color: #fff !important;
  padding: 11px 22px;
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .01em;
  transition: background .2s, transform .2s;
}
.nav-cta:hover { background: var(--primary-2); transform: translateY(-1px); color: #fff; }

.nav-toggle { display: none; background: none; border: 0; font-size: 1.5rem; color: var(--primary); cursor: pointer; }

@media (max-width: 1024px) {
  .nav-links { gap: 20px; }
}
@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    padding: 16px 24px;
    display: none;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 4px; border-bottom: 1px solid var(--line); }
  .nav-links a:last-child { border-bottom: 0; }
  .nav-cta { text-align: center; margin-top: 8px; }
}

/* ============================================================
   Buttons
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  border: 0;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s;
  text-decoration: none;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 24px rgba(14,45,82,.25);
}
.btn-primary:hover { background: var(--primary-2); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 30px rgba(14,45,82,.3); }
.btn-gold {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 8px 24px rgba(201,155,94,.35);
}
.btn-gold:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 12px 30px rgba(201,155,94,.45); }
.btn-ghost {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.btn-ghost:hover { background: var(--primary); color: #fff; }
.btn-ghost-light {
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.5);
  backdrop-filter: blur(8px);
}
.btn-ghost-light:hover { background: #fff; color: var(--primary); }

/* ============================================================
   HERO (homepage)
============================================================ */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(14,45,82,.85) 0%, rgba(14,45,82,.55) 60%, rgba(14,45,82,.75) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 80px 0 60px;
  max-width: 780px;
}
.hero h1 {
  color: #fff;
  margin-bottom: 18px;
}
.hero .lede {
  font-size: 1.15rem;
  color: rgba(255,255,255,.88);
  max-width: 620px;
  margin-bottom: 32px;
}
.hero-eyebrow {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(201,155,94,.18);
  border: 1px solid rgba(201,155,94,.4);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* Search bar (display-only) */
.search-bar {
  margin-top: 36px;
  background: rgba(255,255,255,.96);
  border-radius: 16px;
  padding: 12px;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr auto;
  gap: 8px;
  box-shadow: 0 14px 40px rgba(0,0,0,.25);
  max-width: 760px;
}
.search-bar .field {
  display: flex;
  flex-direction: column;
  padding: 8px 14px;
  border-right: 1px solid var(--line);
}
.search-bar .field:last-of-type { border-right: 0; }
.search-bar label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}
.search-bar select,
.search-bar input {
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: .95rem;
  color: var(--ink);
  padding: 2px 0;
  font-weight: 500;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.search-bar button {
  background: var(--primary);
  color: #fff;
  border: 0;
  border-radius: 12px;
  padding: 0 26px;
  font-weight: 600;
  font-family: inherit;
  font-size: .92rem;
  cursor: pointer;
  transition: background .2s;
}
.search-bar button:hover { background: var(--primary-2); }
@media (max-width: 760px) {
  .search-bar { grid-template-columns: 1fr 1fr; }
  .search-bar .field { border-right: 0; border-bottom: 1px solid var(--line); }
  .search-bar button { grid-column: 1 / -1; padding: 14px; }
}

/* ============================================================
   Page banner (smaller hero used on inner pages)
============================================================ */
.page-banner {
  position: relative;
  padding: 110px 0 80px;
  background: linear-gradient(120deg, var(--primary) 0%, var(--primary-2) 70%, #1c4480 100%);
  color: #fff;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,155,94,.22), transparent 70%);
}
.page-banner::after {
  content: '';
  position: absolute;
  bottom: -120px; left: -120px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,155,94,.14), transparent 70%);
}
.page-banner .container { position: relative; z-index: 2; }
.page-banner h1 { color: #fff; margin-bottom: 14px; }
.page-banner .lede { color: rgba(255,255,255,.85); font-size: 1.1rem; max-width: 640px; }
.page-banner .hero-eyebrow { color: var(--accent); }

/* ============================================================
   Generic sections
============================================================ */
.section { padding: 90px 0; }
.section-tight { padding: 60px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

.divider-row {
  display: flex;
  justify-content: center;
  margin: 18px 0 30px;
}
.divider-row::before {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--accent);
}

/* ============================================================
   Stat band
============================================================ */
.stats-band {
  background: var(--primary);
  color: #fff;
  padding: 60px 0;
}
.stats-band-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}
.stat .stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}
.stat .stat-label {
  color: rgba(255,255,255,.78);
  font-size: .92rem;
  letter-spacing: .04em;
}
@media (max-width: 720px) {
  .stats-band-inner { grid-template-columns: 1fr; gap: 22px; }
}

/* Stats grid (alt, on ivory) */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
}
.stat-card .stat-num { color: var(--primary); }
.stat-card .stat-label { color: var(--muted); }
@media (max-width: 860px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .stats-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Property card grid
============================================================ */
.property-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 1024px) { .property-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .property-grid { grid-template-columns: 1fr; } }

.property-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
}
.property-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.property-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.property-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s;
}
.property-card:hover .property-img img { transform: scale(1.05); }
.property-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(255,255,255,.95);
  color: var(--primary);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}
.property-badge.gold {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
}
.property-body {
  padding: 22px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.property-area {
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.property-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0 0 8px;
  line-height: 1.3;
}
.property-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 14px;
}
.property-meta {
  display: flex;
  gap: 16px;
  font-size: .85rem;
  color: var(--muted);
  padding-top: 14px;
  margin-top: auto;
  border-top: 1px solid var(--line);
}
.property-meta span { display: inline-flex; align-items: center; gap: 5px; }
.property-actions {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.property-actions .btn {
  padding: 10px 16px;
  font-size: .82rem;
  flex: 1;
}

/* ============================================================
   Value cards (Why us)
============================================================ */
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-grid.three { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1024px) { .value-grid, .value-grid.three { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .value-grid, .value-grid.three { grid-template-columns: 1fr; } }

.value-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 26px;
  transition: transform .25s, box-shadow .25s;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(201,155,94,.4);
}
.value-icon {
  display: inline-grid;
  place-items: center;
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(201,155,94,.12);
  color: var(--accent);
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.value-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.value-card p { color: var(--muted); font-size: .95rem; margin: 0; }

/* ============================================================
   CTA strip
============================================================ */
.cta-strip {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
  color: #fff;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,155,94,.2), transparent 70%);
}
.cta-strip .container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-strip h2 { color: #fff; margin: 0; max-width: 640px; }
.cta-strip p { color: rgba(255,255,255,.82); margin: 6px 0 0; }

/* ============================================================
   Footer
============================================================ */
.site-footer {
  background: #0A2042;
  color: rgba(255,255,255,.7);
  padding: 60px 0 30px;
  font-size: .9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .brand { color: #fff; }
.footer-brand .brand-mark { box-shadow: 0 4px 12px rgba(0,0,0,.3); }
.footer-brand p { color: rgba(255,255,255,.6); margin: 14px 0; max-width: 320px; }
.footer-col h4 {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: rgba(255,255,255,.7); }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  color: rgba(255,255,255,.55);
}
.footer-bottom a { color: var(--accent); font-weight: 600; }
.footer-bottom a:hover { color: #fff; }
@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ============================================================
   Featured / generic two-column
============================================================ */
.two-col {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; gap: 40px; } }

/* ============================================================
   LISTINGS PAGE
============================================================ */
.filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
  padding: 20px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.chip-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.chip {
  padding: 8px 16px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  font-family: inherit;
  transition: all .2s;
}
.chip:hover { border-color: var(--accent); color: var(--accent); }
.chip.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.sort-select {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: .88rem;
  color: var(--ink);
  background: var(--surface);
  cursor: pointer;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 50px;
}
.pagination a, .pagination span {
  display: inline-grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  font-size: .9rem;
  font-weight: 500;
  color: var(--muted);
  background: var(--surface);
  transition: all .2s;
}
.pagination a:hover { border-color: var(--accent); color: var(--accent); }
.pagination .current { background: var(--primary); border-color: var(--primary); color: #fff; }

/* ============================================================
   SELL PAGE — process steps + form
============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
@media (max-width: 860px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .steps-grid { grid-template-columns: 1fr; } }

.step-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 24px;
  position: relative;
}
.step-num {
  display: inline-grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 18px;
  box-shadow: 0 4px 12px rgba(201,155,94,.35);
}
.step-card h3 { font-size: 1.15rem; margin-bottom: 6px; }
.step-card p { color: var(--muted); font-size: .92rem; margin: 0; }

/* Form */
.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

.field-group label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--ink);
  margin-bottom: 6px;
}
.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: .95rem;
  color: var(--ink);
  background: var(--bg);
  transition: border-color .2s, background .2s;
}
.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
}
.field-group textarea { resize: vertical; min-height: 110px; }

/* ============================================================
   ABOUT PAGE
============================================================ */
.story p { font-size: 1.05rem; color: var(--ink); }

.founder-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 50px;
  align-items: center;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.founder-photo {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--accent);
  box-shadow: 0 14px 40px rgba(201,155,94,.3);
}
.founder-photo img { width: 100%; height: 100%; object-fit: cover; }
.founder-info h3 { font-size: 1.6rem; margin-bottom: 4px; }
.founder-role {
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
@media (max-width: 720px) {
  .founder-card { grid-template-columns: 1fr; text-align: center; padding: 30px 24px; }
  .founder-photo { margin: 0 auto; width: 180px; height: 180px; }
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 860px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .team-grid { grid-template-columns: 1fr; } }

.team-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  border: 1px solid var(--line);
  transition: transform .25s, box-shadow .25s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.team-photo {
  width: 130px; height: 130px;
  margin: 0 auto 18px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--accent);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-size: 1.2rem; margin-bottom: 4px; }
.team-role { color: var(--muted); font-size: .9rem; margin-bottom: 10px; }
.team-langs { font-size: .8rem; color: var(--accent); font-weight: 600; letter-spacing: .06em; }

.awards-strip {
  background: var(--primary);
  color: #fff;
  padding: 40px 0;
}
.awards-row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
.award-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}
.award-badge .award-icon {
  font-size: 1.6rem;
  color: var(--accent);
}
.award-badge .award-label {
  font-size: .82rem;
  color: rgba(255,255,255,.85);
  font-weight: 500;
  max-width: 180px;
}

/* ============================================================
   CONTACT PAGE
============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; gap: 36px; } }

.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 18px;
}
.contact-card .label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.contact-card .value {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0;
}
.contact-card .sub { color: var(--muted); font-size: .9rem; margin-top: 4px; }

.whatsapp-card {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  border: 0;
  padding: 28px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  margin-bottom: 18px;
  box-shadow: 0 8px 24px rgba(37,211,102,.3);
}
.whatsapp-card:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(37,211,102,.4); color: #fff; }
.whatsapp-card .wa-icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.2);
  border-radius: 12px;
  font-size: 1.7rem;
}
.whatsapp-card .wa-label { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; opacity: .9; }
.whatsapp-card .wa-num { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; }

.next-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}
@media (max-width: 720px) { .next-row { grid-template-columns: 1fr; } }
.next-card {
  background: var(--surface);
  border-left: 3px solid var(--accent);
  padding: 22px 24px;
  border-radius: var(--radius-sm);
}
.next-card h4 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--primary); margin: 0 0 4px; }
.next-card p { color: var(--muted); font-size: .92rem; margin: 0; }

.map-placeholder {
  margin-top: 60px;
  background: linear-gradient(135deg, #e8e3d5 0%, #d8d0bd 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  height: 320px;
  display: grid;
  place-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.map-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(14,45,82,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,45,82,.08) 1px, transparent 1px);
  background-size: 40px 40px;
}
.map-pin {
  position: relative;
  z-index: 2;
  background: var(--surface);
  padding: 18px 28px;
  border-radius: 999px;
  font-weight: 600;
  color: var(--primary);
  box-shadow: var(--shadow);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.map-pin .pin-icon { font-size: 1.3rem; }

/* ============================================================
   Misc
============================================================ */
.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }
