/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Georgia', serif;
  color: #1a1a1a;
  background: #fff;
  line-height: 1.7;
}

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

a { color: inherit; text-decoration: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Georgia', serif;
  font-weight: normal;
  line-height: 1.3;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); margin-bottom: 1rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ===== LAYOUT ===== */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: 5rem 0; }

/* ===== NAV ===== */
nav {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  z-index: 100;
  padding: 1rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  line-height: 0;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  color: #444;
  transition: color 0.2s;
}

.nav-links a:hover { color: #1a1a1a; }

/* ===== HERO SPLIT ===== */
.hero-split {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.hero-text {
  flex: 1;
  min-width: 0;
}

.hero-photo-wrap {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 0 0 6px #f4f1ed;
}

.hero-video-wrap {
  max-width: 680px;
  width: 100%;
}

.hero-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  transform: scale(1.2);
  transform-origin: center 30%;
}

/* ===== HERO ===== */
.hero {
  padding: 6rem 0 5rem;
  border-bottom: 1px solid #e8e8e8;
}

.hero-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 1.5rem;
}

.hero h1 { margin-bottom: 1.5rem; max-width: 700px; }

.hero-sub {
  font-size: 1.15rem;
  color: #555;
  max-width: 580px;
  margin-bottom: 2.5rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  border: 2px solid #1a1a1a;
}

.btn-primary {
  background: #2d7171;
  color: #fff;
  border-color: #2d7171;
}

.btn-primary:hover {
  background: #235959;
}

.btn-secondary {
  background: transparent;
  color: #1a1a1a;
  margin-left: 1rem;
}

.btn-secondary:hover {
  background: #f5f5f5;
}

/* ===== STAT STRIP ===== */
.stats {
  background: #f7f7f7;
  padding: 3.5rem 0;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  display: block;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
}

/* ===== WHAT WE DO (homepage preview) ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.service-card {
  padding: 2rem;
  background: #faf8f4;
  border: 1px solid #e0dcd6;
  transition: border-color 0.2s;
}

.service-card:hover {
  border-color: #2d7171;
}

.service-card h3 { margin-bottom: 0.75rem; }

.service-card p { color: #555; font-size: 0.95rem; }

/* ===== ABOUT STRIP ===== */
.about-strip {
  background: #1a4545;
  color: #fff;
}

.about-strip h2 { color: #fff; }

.about-strip p { color: #ccc; }

.about-strip .btn {
  border-color: #fff;
  color: #fff;
  margin-top: 1.5rem;
}

.about-strip .btn:hover {
  background: #fff;
  color: #1a1a1a;
}

.about-strip-inner {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.about-strip-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid rgba(255,255,255,0.25);
}

.about-strip-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  transform: scale(1.2);
  transform-origin: center 30%;
}

/* ===== TESTIMONIAL ===== */
.testimonial-section { background: #f4f1ed; }

blockquote {
  font-size: 1.2rem;
  font-style: italic;
  color: #333;
  border-left: 3px solid #2d7171;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  max-width: 680px;
}

.quote-attr {
  font-size: 0.85rem;
  color: #888;
  letter-spacing: 0.05em;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: #f4f1ed;
  border-top: 1px solid #e8e8e8;
  text-align: center;
  padding: 5rem 0;
}

.cta-section h2 { margin-bottom: 1rem; }
.cta-section p { color: #555; margin-bottom: 2rem; }

/* ===== FOOTER ===== */
footer {
  border-top: 1px solid #e8e8e8;
  padding: 2rem 0;
  font-size: 0.85rem;
  color: #888;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== WHAT WE DO PAGE ===== */
.offering { padding: 3rem 0; }
.offering h2 {
  margin-bottom: 1rem;
  border-left: 3px solid #2d7171;
  padding-left: 0.75rem;
}
.offering-list { margin: 1rem 0 1rem 1.5rem; color: #555; }
.offering-list li { margin-bottom: 0.4rem; }

.divider { border: none; border-top: 1px solid #e8e8e8; margin: 0; }

/* ===== HOW IT WORKS PAGE ===== */
.steps { padding: 1rem 0; }

.step {
  display: flex;
  gap: 2rem;
  padding: 3rem 0;
  border-bottom: 1px solid #e8e8e8;
}

.step:last-child { border-bottom: none; }

.step-number {
  font-size: 2rem;
  font-weight: bold;
  color: #e0e0e0;
  min-width: 3rem;
  line-height: 1;
  padding-top: 0.2rem;
}

.step-content h3 { margin-bottom: 0.75rem; }
.step-content p { color: #555; }

/* ===== ABOUT PAGE ===== */
.photo-placeholder {
  width: 200px;
  height: 200px;
  background: #e8e8e8;
  border: 2px dashed #bbb;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #888;
  font-size: 0.85rem;
  margin: 0 0 3rem 0;
  border-radius: 50%;
}

.profile-photo-wrap {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.profile-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  transform: translateX(-0.75%) scale(1.2);
  transform-origin: center 30%;
}

.about-list {
  margin: 1rem 0 1rem 1.5rem;
  color: #555;
}

.about-list li {
  margin-bottom: 0.6rem;
  color: #b25c00;
  background: #fff8ef;
  padding: 0.4rem 0.6rem;
  border-left: 3px solid #d99020;
  list-style: none;
  font-size: 0.95rem;
}

.credentials {
  font-size: 0.9rem;
  color: #888;
  text-align: center;
  margin-top: 2.5rem;
  letter-spacing: 0.02em;
}

/* ===== HOMEPAGE OUTCOMES SECTION ===== */
.outcomes-section {
  padding: 5rem 0;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
}

.outcomes-intro {
  color: #555;
  max-width: 620px;
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

.outcomes-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 1rem;
  max-width: 720px;
  counter-reset: outcomes;
}

.outcomes-list li {
  padding: 1.1rem 1.4rem;
  background: #faf8f4;
  border-left: 3px solid #2d7171;
  font-size: 1.05rem;
  color: #1a1a1a;
  counter-increment: outcomes;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.outcomes-list li::before {
  content: counter(outcomes);
  font-size: 1.8rem;
  font-weight: bold;
  color: #2d7171;
  min-width: 1.5rem;
  flex-shrink: 0;
  line-height: 1;
  opacity: 0.7;
}

/* ===== PULL QUOTE ===== */
.pull-quote-section {
  padding: 3.5rem 0;
  background: #f4f1ed;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
}

.pull-quote {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  border-left: none;
  padding-left: 0;
  text-align: center;
  max-width: 100%;
  color: #1a1a1a;
}

/* ===== TESTIMONIAL CAROUSEL ===== */
.testimonial-carousel {
  display: grid;
  position: relative;
}

.testimonial-carousel .testimonial {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s;
}

.testimonial-carousel .testimonial.active {
  opacity: 1;
  visibility: visible;
}

.testimonial-dots {
  display: flex;
  gap: 0.6rem;
  justify-content: flex-start;
  margin-top: 2rem;
  padding-left: 0;
  list-style: none;
}

.testimonial-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}

.testimonial-dots .dot.active {
  background: #2d7171;
}

.testimonial-dots .dot:hover {
  background: #888;
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-carousel .testimonial {
    transition: none;
  }
}

@media (max-width: 600px) {
  .testimonial-dots .dot {
    width: 16px;
    height: 16px;
  }
}

/* ===== CASE STUDIES PAGE ===== */
.case-study { padding: 3rem 0; }
.case-study h2 { margin-bottom: 1rem; }
.case-study p { color: #444; margin-bottom: 0.85rem; }

.case-study-tag {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 0.75rem;
}

/* ===== VIDEO FEATURES ===== */
.video-features {
  margin-bottom: 1rem;
}

.video-feature {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid #e8e8e8;
}

.video-feature:last-child {
  border-bottom: none;
}

.video-feature--reverse {
  flex-direction: row-reverse;
}

.video-feature-video {
  flex: 0 0 52%;
}

.video-feature-text h3 {
  margin-bottom: 0.75rem;
}

.video-feature-text p {
  color: #555;
}

@media (max-width: 700px) {
  .video-feature,
  .video-feature--reverse {
    flex-direction: column;
  }
  .video-feature-video {
    flex: none;
    width: 100%;
  }
}

/* ===== WRITING INDEX THUMBNAILS ===== */
.writing-thumb {
  width: 160px;
  height: 120px;
  object-fit: cover;
  display: block;
  margin-bottom: 1rem;
}

/* ===== ARTICLE FIGURES ===== */
.article-figure {
  margin: 2rem 0;
}
.article-figure img {
  width: 100%;
  display: block;
}
.article-figure figcaption {
  font-size: 0.8rem;
  color: #888;
  margin-top: 0.5rem;
  font-style: italic;
  line-height: 1.5;
}

/* ===== CONTACT PAGE ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 4rem;
  align-items: start;
}

.form-group { margin-bottom: 1.5rem; }

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: bold;
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  font-family: inherit;
  font-size: 1rem;
  color: #1a1a1a;
  background: #fff;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1a1a1a;
}

.contact-info h3 { margin-bottom: 1rem; }
.contact-info p { color: #555; font-size: 0.95rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .nav-links { display: none; }
  .btn-secondary { display: none; }
  .footer-inner { flex-direction: column; gap: 0.5rem; text-align: center; }
  .about-strip-inner { flex-direction: column; text-align: center; }
  .hero-split { flex-direction: column; gap: 2rem; }
  .hero-photo-wrap { width: 200px; height: 200px; }
  .video-grid { grid-template-columns: 1fr !important; }
}
