:root {
  --forest: #1A4C30;
  --forest-deep: #0F3520;
  --forest-soft: #2A5D40;
  --sand: #A59685;
  --sand-text: #746758;
  --sand-light: #C4B8A8;
  --cream: #F5F1EA;
  --cream-warm: #EDE6D9;
  --ink: #1A1A1A;
  --ink-soft: #3D3D3D;
  --white: #FFFFFF;

  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Manrope', system-ui, sans-serif;

  --shadow-sm: 0 1px 2px rgba(26, 76, 48, 0.04), 0 4px 12px rgba(26, 76, 48, 0.04);
  --shadow-md: 0 4px 12px rgba(26, 76, 48, 0.06), 0 12px 40px rgba(26, 76, 48, 0.08);
  --shadow-lg: 0 20px 60px rgba(26, 76, 48, 0.12);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ TYPOGRAPHY ============ */
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand-text);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--sand);
}

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--forest);
}

h1 {
  font-size: clamp(40px, 8vw, 76px);
  font-weight: 300;
  font-variation-settings: "opsz" 144;
}

h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--forest);
}

h2 {
  font-size: clamp(32px, 5.5vw, 52px);
  font-weight: 300;
  font-variation-settings: "opsz" 96;
}

h2 em {
  font-style: italic;
  color: var(--sand-text);
}

h3 {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 400;
}

p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
}

/* ============ NAVIGATION ============ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.4s ease;
  background: rgba(245, 241, 234, 0);
  backdrop-filter: blur(0px);
}

.nav.scrolled {
  background: rgba(245, 241, 234, 0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(26, 76, 48, 0.06);
  padding: 14px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--forest);
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  font-weight: 400;
}

.logo em {
  font-style: italic;
  color: var(--sand-text);
  font-weight: 400;
}

.nav-links {
  display: none;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.3s;
  position: relative;
}

.nav-links a:hover {
  color: var(--forest);
}

.nav-cta {
  display: none;
  background: var(--forest);
  color: var(--cream);
  padding: 12px 22px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all 0.3s;
}

.nav-cta:hover {
  background: var(--forest-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.menu-toggle {
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--forest);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--cream);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 32px;
  padding: 120px 24px 60px;
  overflow-y: auto;
  overscroll-behavior: contain;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu a {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 300;
  color: var(--forest);
  font-style: italic;
}

.mobile-menu .nav-cta {
  display: inline-block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 16px;
  font-weight: 600;
  padding: 18px 36px;
  margin-top: 16px;
  background: var(--forest);
  color: var(--cream);
  border-radius: 100px;
  box-shadow: var(--shadow-md);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 80px;
  overflow: hidden;
  background: var(--cream);
}

.hero-bg-accent {
  position: absolute;
  top: -10%;
  right: -20%;
  width: 80%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(165, 150, 133, 0.15) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.hero-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.4;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}

.hero-content {
  max-width: 640px;
}

.hero-eyebrow {
  margin-bottom: 28px;
}

.hero h1 {
  margin-bottom: 28px;
}

.hero-lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 40px;
  max-width: 540px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--forest);
  color: var(--cream);
  padding: 18px 30px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all 0.3s;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--forest-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-primary .arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}

.btn-primary:hover .arrow {
  transform: translateX(4px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--forest);
  padding: 18px 26px;
  border-radius: 100px;
  border: 1px solid rgba(26, 76, 48, 0.2);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: rgba(26, 76, 48, 0.04);
  border-color: var(--forest);
}

.hero-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(26, 76, 48, 0.12);
}

.credential {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.credential-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sand-text);
  font-weight: 500;
}

.credential-value {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--forest);
  font-style: italic;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 520px;
  margin: 0 auto;
  width: 100%;
}

.hero-image {
  position: absolute;
  inset: 0;
  border-radius: 200px 200px 16px 16px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--forest-soft), var(--forest));
  box-shadow: var(--shadow-lg);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.02);
}

.hero-floating-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--cream);
  padding: 20px 22px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  max-width: 240px;
  z-index: 3;
  border: 1px solid rgba(26, 76, 48, 0.06);
}

.hero-floating-card .stars {
  color: var(--sand-text);
  font-size: 14px;
  margin-bottom: 6px;
  letter-spacing: 2px;
}

.hero-floating-card .text {
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  color: var(--forest);
  line-height: 1.4;
}

.hero-decorative {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 120px;
  height: 120px;
  background: var(--forest);
  border-radius: 50%;
  opacity: 0.2;
  z-index: -1;
}

/* ============ SECTION COMMONS ============ */
section {
  padding: 96px 0;
  position: relative;
}

.section-header {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
}

.section-header .eyebrow {
  margin-bottom: 2px;
  justify-content: center;
}

.section-header .eyebrow::after {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--sand);
}

/* ============ ABOUT ============ */
.about {
  background: var(--forest);
  color: var(--cream);
  overflow: hidden;
}

.about h2 {
  color: var(--cream);
}

.about p {
  color: rgba(245, 241, 234, 0.78);
  font-size: 17px;
}

.about .eyebrow {
  color: var(--sand-light);
}

.about .eyebrow::before,
.about .eyebrow::after {
  background: var(--sand-light);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
  aspect-ratio: 1/1.15;
  max-width: 460px;
  margin: 0 auto;
  width: 100%;
}

.about-image {
  position: absolute;
  inset: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 8px solid rgba(165, 150, 133, 0.15);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-frame {
  position: absolute;
  top: 24px;
  left: 24px;
  right: -24px;
  bottom: -24px;
  border: 1px solid var(--sand);
  border-radius: 8px;
  z-index: -1;
}

.about-content h2 {
  margin-bottom: 28px;
}

.about-lead {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.5;
  color: var(--cream);
  font-style: italic;
  font-weight: 300;
  margin-bottom: 24px;
}

.about-content p {
  margin-bottom: 20px;
}

.about-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 48px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(165, 150, 133, 0.25);
}

.about-credentials .credential-label {
  color: var(--sand-light);
}

.about-credentials .credential-value {
  color: var(--cream);
  font-size: 22px;
}

/* ============ SPECIALTIES ============ */
.specialties {
  background: var(--cream);
}

.specialties-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.specialty {
  background: var(--white);
  padding: 36px 32px;
  border-radius: 20px;
  border: 1px solid rgba(26, 76, 48, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.specialty:hover {
  transform: translateY(-4px);
  border-color: var(--forest);
  box-shadow: var(--shadow-md);
}

.specialty::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--forest);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.specialty:hover::before {
  transform: scaleX(1);
}

.specialty-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--cream-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--forest);
  transition: all 0.3s;
}

.specialty:hover .specialty-icon {
  background: var(--forest);
  color: var(--cream);
}

.specialty-number {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
  color: var(--sand-text);
  font-weight: 400;
}

.specialty h3 {
  margin-bottom: 12px;
}

.specialty p {
  font-size: 15px;
}

/* ============ PROCESS ============ */
.process {
  background: var(--cream-warm);
  position: relative;
  overflow: hidden;
}

.process-header {
  text-align: left;
  max-width: none;
  margin-bottom: 64px;
}

.process-header .eyebrow {
  justify-content: flex-start;
}

.process-header .eyebrow::after {
  display: none;
}

.process-header h2 {
  max-width: 720px;
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  position: relative;
}

.step {
  background: var(--cream);
  padding: 36px 32px;
  border-radius: 20px;
  position: relative;
  transition: all 0.3s;
  border: 1px solid transparent;
}

.step:hover {
  background: var(--white);
  border-color: rgba(26, 76, 48, 0.1);
  box-shadow: var(--shadow-md);
}

.step-number {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 300;
  color: var(--forest);
  line-height: 1;
  font-style: italic;
  display: block;
  margin-bottom: 20px;
  font-variation-settings: "opsz" 144;
}

.step h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.step p {
  font-size: 15px;
  margin-bottom: 16px;
}

.step-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26, 76, 48, 0.08);
  color: var(--forest);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.step-tag.free {
  background: rgba(165, 150, 133, 0.2);
  color: var(--ink);
}

.step-tag .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

/* ============ TEAM ============ */
.team {
  background: var(--cream);
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.team-member {
  background: var(--white);
  border-radius: 20px;
  border: 1px solid rgba(26, 76, 48, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.team-member:hover {
  transform: translateY(-4px);
  border-color: var(--forest);
  box-shadow: var(--shadow-md);
}

.team-image {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-content {
  padding: 32px 24px;
}

.team-content h3 {
  margin-bottom: 4px;
  font-size: 22px;
}

.team-credential {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--sand-text);
  letter-spacing: 0.05em;
  font-weight: 500;
  display: block;
  margin-bottom: 16px;
}

.team-content p {
  font-size: 14px;
  color: var(--ink-soft);
}

/* ============ TESTIMONIALS ============ */
.testimonials {
  background: var(--forest);
  color: var(--cream);
}

.testimonials h2 {
  color: var(--cream);
}

.testimonials .eyebrow {
  color: var(--sand-light);
}

.testimonials .eyebrow::before,
.testimonials .eyebrow::after {
  background: var(--sand-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.testimonial {
  background: rgba(165, 150, 133, 0.08);
  border: 1px solid rgba(165, 150, 133, 0.2);
  padding: 36px 32px;
  border-radius: 20px;
  position: relative;
  transition: all 0.3s;
}

.testimonial:hover {
  background: rgba(165, 150, 133, 0.12);
  transform: translateY(-4px);
}

.testimonial-quote {
  font-family: var(--serif);
  font-size: 64px;
  line-height: 1;
  color: var(--sand-text);
  font-style: italic;
  position: absolute;
  top: 16px;
  right: 28px;
  opacity: 0.4;
  font-weight: 300;
}

.testimonial-text {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.6;
  color: var(--cream);
  font-weight: 300;
  margin-bottom: 24px;
  font-style: italic;
  position: relative;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(165, 150, 133, 0.2);
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sand);
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  font-style: italic;
}

.author-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--cream);
}

.author-role {
  font-size: 13px;
  color: rgba(245, 241, 234, 0.6);
  margin-top: 2px;
}

/* ============ FAQ ============ */
.faq {
  background: var(--cream);
}

.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(26, 76, 48, 0.12);
  transition: all 0.3s;
}

.faq-item:first-child {
  border-top: 1px solid rgba(26, 76, 48, 0.12);
}

.faq-question {
  width: 100%;
  padding: 28px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--forest);
  transition: all 0.3s;
  line-height: 1.3;
}

.faq-question:hover {
  color: var(--forest-deep);
}

.faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cream-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
  margin-top: 2px;
}

.faq-item.open .faq-toggle {
  background: var(--forest);
  color: var(--cream);
  transform: rotate(45deg);
}

.faq-toggle svg {
  width: 14px;
  height: 14px;
  transition: all 0.3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.3s;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 28px;
}

.faq-answer p {
  font-size: 16px;
  line-height: 1.7;
  padding-right: 56px;
}

/* ============ CTA SECTION ============ */
.cta-section {
  background: var(--cream);
  padding: 96px 0;
}

.cta-card {
  background: var(--forest);
  color: var(--cream);
  padding: 64px 32px;
  border-radius: 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-card h2 {
  color: var(--cream);
  margin-bottom: 20px;
}

.cta-card p {
  color: rgba(245, 241, 234, 0.78);
  font-size: 17px;
  max-width: 520px;
  margin: 0 auto 36px;
}

.cta-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(165, 150, 133, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-ornament {
  font-family: var(--serif);
  color: var(--sand-text);
  font-size: 40px;
  margin-bottom: 8px;
  line-height: 1;
  font-style: italic;
  display: inline-block;
}

.cta-card .btn-primary {
  background: var(--sand-light);
  color: var(--forest);
}

.cta-card .btn-primary:hover {
  background: var(--cream);
}

/* ============ FOOTER ============ */
.footer {
  background: var(--forest-deep);
  color: rgba(245, 241, 234, 0.7);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  color: var(--cream);
  margin-bottom: 16px;
}

.footer-brand p {
  color: rgba(245, 241, 234, 0.6);
  font-size: 15px;
  max-width: 320px;
}

.footer h4 {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand-text);
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}

.footer-links a {
  color: rgba(245, 241, 234, 0.7);
  font-size: 15px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--sand-text);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  margin-bottom: 12px;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--sand-text);
  flex-shrink: 0;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(165, 150, 133, 0.15);
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 13px;
  color: rgba(245, 241, 234, 0.5);
}

.footer-bottom a {
  color: var(--sand-text);
}

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 50;
  transition: all 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

/* ============ ANIMATIONS ============ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes breathe {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.2;
  }

  50% {
    transform: scale(1.08);
    opacity: 0.3;
  }
}

.hero-decorative {
  animation: breathe 6s ease-in-out infinite;
}

/* ============ RESPONSIVE ============ */
@media (min-width: 640px) {
  .container {
    padding: 0 32px;
  }

  section {
    padding: 120px 0;
  }

  .specialties-grid {
    grid-template-columns: 1fr 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .cta-card {
    padding: 80px 56px;
  }
}

@media (min-width: 900px) {
  .nav-links {
    display: flex;
  }

  .nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }

  .menu-toggle {
    display: none;
  }

  .hero {
    padding: 160px 0 100px;
  }

  .hero-inner {
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
  }

  .about-inner {
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: stretch;
  }

  .about-image-wrap {
    height: 100%;
    aspect-ratio: auto;
    max-width: 100%;
  }

  .specialties-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (min-width: 1100px) {
  section {
    padding: 140px 0;
  }

  .specialties-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .specialty {
    padding: 40px 32px;
  }

  .process-header {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    align-items: end;
    gap: 80px;
  }
}

/* ============ PRIVACY PAGE ============ */
.page-hero {
  padding: 160px 0 80px;
  background: var(--cream);
  text-align: center;
}

.page-hero .eyebrow {
  margin-bottom: 20px;
  justify-content: center;
}

.page-hero .eyebrow::after {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--sand);
}

.page-hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  margin-bottom: 16px;
}

.page-hero-meta {
  font-size: 14px;
  color: var(--sand-text);
  letter-spacing: 0.05em;
}

.privacy-content {
  padding: 80px 0 120px;
  background: var(--white);
}

.privacy-body {
  max-width: 720px;
  margin: 0 auto;
}

.privacy-body h2 {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 400;
  color: var(--forest);
  margin: 56px 0 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(26, 76, 48, 0.12);
}

.privacy-body h2:first-child {
  margin-top: 0;
}

.privacy-body p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.8;
  margin-bottom: 16px;
}

.privacy-body ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.privacy-body li {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.8;
  margin-bottom: 8px;
}

.privacy-body strong {
  font-weight: 600;
  color: var(--ink);
}

.privacy-body a {
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s;
}

.privacy-body a:hover {
  color: var(--forest-soft);
}

.privacy-highlight {
  background: rgba(26, 76, 48, 0.05);
  border-left: 3px solid var(--forest);
  padding: 20px 24px;
  border-radius: 0 12px 12px 0;
  margin: 24px 0;
}

.privacy-highlight p {
  margin-bottom: 0;
  color: var(--forest);
  font-size: 15px;
}

/* ============ REDUCE MOTION ============ */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* ============ ACCESSIBILITY ============ */
.skip-link {
  position: absolute;
  top: -100px;
  left: 24px;
  background: var(--forest);
  color: var(--cream);
  padding: 12px 24px;
  z-index: 1000;
  border-radius: 4px;
  font-weight: bold;
  opacity: 0;
  transition: all 0.3s;
}

.skip-link:focus {
  top: 24px;
  opacity: 1;
}

:focus-visible {
  outline: 3px solid var(--forest);
  outline-offset: 4px;
  border-radius: 2px;
}
