/* Design 5 — Feedback Version (based on Design 1 Classic)
   Brand color: #c9e6f1 */

:root {
  --brand: #c9e6f1;
  --brand-dark: #4a8ba8;
  --brand-deep: #2c5d75;
  --ink: #1f3340;
  --muted: #5a6b75;
  --bg: #ffffff;
  --bg-alt: #f4fafd;
  --line: #e1eef4;
  --radius: 10px;
  --shadow: 0 6px 24px rgba(28, 70, 95, 0.08);
  --maxw: 1140px;
  --font: 'Helvetica Neue', Helvetica, Arial, system-ui, sans-serif;
  --font-serif: Georgia, 'Times New Roman', serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-deep); text-decoration: none; }
a:hover { text-decoration: underline; }

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: #fff; padding: 10px 16px; z-index: 100;
}
.skip:focus { left: 12px; top: 12px; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* Header / Nav */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--ink); }
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--brand); color: var(--brand-deep);
  display: grid; place-items: center; font-weight: 700; letter-spacing: 1px;
}
.brand-text { font-size: 1.05rem; font-weight: 600; }
.brand-text em { font-style: normal; color: var(--brand-dark); font-weight: 400; }

.nav-list { display: flex; gap: 28px; list-style: none; }
.nav-list a {
  color: var(--ink); font-size: 0.95rem; font-weight: 500;
  padding: 6px 0; border-bottom: 2px solid transparent;
}
.nav-list a:hover { border-bottom-color: var(--brand-dark); text-decoration: none; }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--line);
  padding: 8px 14px; border-radius: 6px; font: inherit; cursor: pointer;
}

/* Hero */
.hero {
  background: linear-gradient(180deg, var(--brand) 0%, #e9f4f9 100%);
  padding: 80px 0 90px;
}
.hero-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center;
}
.eyebrow {
  text-transform: uppercase; letter-spacing: 3px; font-size: 0.78rem;
  color: var(--brand-deep); font-weight: 600; margin-bottom: 14px;
}
.eyebrow.center { text-align: center; }
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  font-weight: 400; line-height: 1.15; color: var(--ink); margin-bottom: 22px;
}
.lead { font-size: 1.1rem; color: var(--muted); max-width: 56ch; }
.lead.center { margin: 0 auto 30px; text-align: center; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

.btn {
  display: inline-block; padding: 13px 26px; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem; transition: all .2s ease;
  border: 2px solid transparent; cursor: pointer;
}
.btn-primary { background: var(--brand-deep); color: #fff; }
.btn-primary:hover { background: var(--ink); text-decoration: none; }
.btn-ghost { background: transparent; color: var(--brand-deep); border-color: var(--brand-deep); }
.btn-ghost:hover { background: var(--brand-deep); color: #fff; text-decoration: none; }

.hero-image img {
  border-radius: var(--radius); box-shadow: var(--shadow);
  transform: scaleX(-1);
  aspect-ratio: 4/5; object-fit: cover; width: 100%;
}

/* Sections */
.section { padding: 90px 0; }
.section-alt { background: var(--bg-alt); }
.center { text-align: center; }

h2 {
  font-family: var(--font-serif); font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 400; color: var(--ink); margin-bottom: 18px; line-height: 1.25;
}
h3 { font-size: 1.15rem; margin-bottom: 10px; color: var(--ink); }

.two-col {
  display: grid; grid-template-columns: 0.9fr 1.4fr; gap: 60px; align-items: start;
}
.prose p + p { margin-top: 16px; }

/* Gallery */
.section-gallery { padding: 0 0 90px; }
.gallery {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.gallery img {
  border-radius: var(--radius);
  box-shadow: 0 0 32px rgba(28, 71, 95, 0.539);
  aspect-ratio: 3/2; object-fit: cover; width: 100%;
}

/* Cards */
.cards {
  list-style: none; display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px; margin-top: 40px;
}
.card {
  background: #fff; padding: 28px; border-radius: var(--radius);
  border: 1px solid var(--line); transition: all .2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--brand); }
.card p { color: var(--muted); font-size: 0.95rem; }

/* Info grid */
.info-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px; margin-top: 40px;
}
.info-block {
  background: var(--bg-alt); padding: 32px; border-radius: var(--radius);
  border-left: 4px solid var(--brand-dark);
}
.info-block h3 { color: var(--brand-deep); margin-bottom: 14px; }
.info-block p + p { margin-top: 12px; }

/* Bullet list */
.bullet-list { list-style: none; }
.bullet-list li {
  padding: 12px 0 12px 28px; position: relative; border-bottom: 1px solid var(--line);
}
.bullet-list li::before {
  content: ""; position: absolute; left: 0; top: 20px;
  width: 12px; height: 12px; border-radius: 50%; background: var(--brand);
  border: 2px solid var(--brand-dark);
}
.bullet-list li:last-child { border-bottom: none; }

/* Contact card */
.contact-card {
  background: var(--brand); padding: 40px; border-radius: var(--radius);
}
.contact-card dl { margin-bottom: 24px; }
.contact-card dt {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 2px;
  color: var(--brand-deep); font-weight: 700; margin-top: 16px;
}
.contact-card dt:first-child { margin-top: 0; }
.contact-card dd { font-size: 1.05rem; color: var(--ink); margin-top: 4px; }
.contact-card a { color: var(--ink); }

/* Footer */
.site-footer {
  background: var(--ink); color: #cfdde6; padding: 50px 0 30px; margin-top: 0;
}
.footer-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}
.site-footer a { color: #fff; }
.site-footer .brand-text { color: #fff; font-size: 1.1rem; }
.footer-links { list-style: none; display: flex; gap: 20px; margin-bottom: 14px; }
.copy { font-size: 0.85rem; color: #8ca0ad; }

/* Legal pages */
.legal { padding: 60px 0 90px; max-width: 800px; }
.legal h1 { font-family: var(--font-serif); font-size: 2.2rem; margin-bottom: 30px; font-weight: 400; }
.legal h2 { font-size: 1.3rem; margin-top: 32px; margin-bottom: 12px; }
.legal p, .legal li { color: var(--muted); margin-bottom: 10px; }
.legal ul { padding-left: 22px; }

/* Responsive */
@media (max-width: 860px) {
  .hero { padding: 50px 0 60px; }
  .hero-grid, .two-col { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { order: -1; max-width: 280px; margin: 0 auto; }
  .section { padding: 60px 0; }
  .section-gallery { padding: 0 0 60px; }
  .gallery { grid-template-columns: 1fr; }
  .nav-toggle { display: inline-block; }
  .nav-list {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; background: #fff;
    border-bottom: 1px solid var(--line); padding: 8px 0;
  }
  .nav-list.open { display: flex; }
  .nav-list li { padding: 0; }
  .nav-list a { display: block; padding: 14px 24px; }
  .nav-wrap { position: relative; }
}
