/* ==========================================================================
   Amicus Immigration Consultants Canada Inc.
   Warm, welcoming visual style with Canadian red accent.
   ========================================================================== */

:root {
  --color-bg: #fdfaf6;
  --color-surface: #ffffff;
  --color-surface-alt: #f6efe6;
  --color-text: #2b2620;
  --color-text-muted: #5a5247;
  --color-accent: #c8102e;            /* Canadian red */
  --color-accent-dark: #9b0a23;
  --color-accent-soft: #fbe7eb;
  --color-border: #e8dfd2;
  --color-maple: #d94a2a;
  --color-forest: #2f5d3b;

  --font-heading: "Source Serif Pro", "Georgia", "Cambria", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 18px;

  --shadow-sm: 0 1px 2px rgba(40, 30, 20, 0.06);
  --shadow-md: 0 6px 18px rgba(40, 30, 20, 0.08);
  --shadow-lg: 0 14px 38px rgba(40, 30, 20, 0.12);

  --container: 1140px;
}

/* Reset / base */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: #1f1a14;
  line-height: 1.2;
  margin: 0 0 0.6em;
  font-weight: 600;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; color: var(--color-text-muted); }
a { color: var(--color-accent-dark); text-decoration: none; }
a:hover { color: var(--color-accent); text-decoration: underline; }

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

/* Layout */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 4.5rem 0;
}
.section--tight { padding: 3rem 0; }
.section--alt { background: var(--color-surface-alt); }
.section--accent {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  color: #fff;
}
.section--accent h2, .section--accent h3 { color: #fff; }
.section--accent p { color: rgba(255,255,255,0.92); }

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}
.section--accent .eyebrow { color: #fde8ec; }

/* Header */
.site-header {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: var(--shadow-sm);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}
.brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--color-text);
  line-height: 1;
}
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}
.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  line-height: 1;
}
.brand-wordmark {
  font-family: "Copperplate Gothic Bold", "Copperplate Bold", "Copperplate", "Trajan Pro", "Cinzel", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-text);
  display: inline-flex;
  align-items: baseline;
  line-height: 1;
}
.brand-A {
  font-size: 2.1rem;
}
.brand-micus {
  font-size: 1.55rem;
}
.brand-tag {
  display: block;
  font-family: Impact, "Impact MT", "Franklin Gothic Heavy", "Arial Narrow Bold", "Arial Black", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: var(--color-text-muted);
  font-weight: normal;
  text-transform: uppercase;
}

.nav { display: flex; align-items: center; gap: 1.6rem; }
.nav a:not(.btn) {
  color: var(--color-text);
  font-weight: 500;
  font-size: 0.95rem;
}
.nav a:not(.btn).active, .nav a:not(.btn):hover { color: var(--color-accent); text-decoration: none; }
.nav .btn { margin-left: 0.5rem; }

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 1.4rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
  line-height: 1.1;
}
.btn-primary {
  background: var(--color-accent);
  color: #fff;
}
.btn-primary:hover { background: var(--color-accent-dark); color: #fff; text-decoration: none; transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--color-accent-dark);
  border-color: var(--color-accent);
}
.btn-outline:hover { background: var(--color-accent); color: #fff; text-decoration: none; }
.btn-light {
  background: #fff;
  color: var(--color-text);
  border-color: var(--color-accent);
}
.btn-light:hover { background: var(--color-accent); color: #fff; text-decoration: none; }

/* Hero */
.hero {
  position: relative;
  padding: 5rem 0 4.5rem;
  background:
    radial-gradient(circle at 80% 0%, rgba(200,16,46,0.08), transparent 55%),
    radial-gradient(circle at 0% 100%, rgba(47,93,59,0.07), transparent 50%),
    var(--color-bg);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}
.hero h1 { margin-top: 0.4rem; }
.hero p.lead {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  max-width: 36rem;
  margin-bottom: 1.6rem;
}
.hero-cta { display: flex; gap: 0.85rem; flex-wrap: wrap; }
.hero-trust {
  margin-top: 2rem;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}
.hero-trust span strong {
  display: block;
  color: var(--color-accent-dark);
  font-size: 1.4rem;
  font-family: var(--font-heading);
}
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(160deg, #fff 0%, #fbe7eb 60%, #fff 100%);
  box-shadow: var(--shadow-lg);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hero-visual svg { width: 80%; height: auto; }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Cards */
.grid {
  display: grid;
  gap: 1.5rem;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: #ead8c1;
}
.card h3 { margin-bottom: 0.4rem; }
.card .icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--color-accent-soft);
  color: var(--color-accent-dark);
  border-radius: 10px;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}
.card p { margin: 0; }

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.section-header p { font-size: 1.05rem; }

/* Value strip */
.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.5rem;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}
.value { text-align: center; padding: 0.5rem; }
.value strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-accent-dark);
}
.value span { font-size: 0.9rem; color: var(--color-text-muted); }

/* Testimonials */
.quote {
  background: var(--color-surface);
  border-left: 4px solid var(--color-accent);
  padding: 1.5rem 1.75rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  box-shadow: var(--shadow-sm);
}
.quote p { font-style: italic; color: var(--color-text); }
.quote cite {
  display: block;
  margin-top: 0.6rem;
  font-style: normal;
  font-weight: 600;
  color: var(--color-accent-dark);
  font-size: 0.95rem;
}
.quote--featured {
  background: linear-gradient(140deg, #fff 0%, #fbe7eb 100%);
  border-left: 0;
  border-radius: var(--radius-lg);
  padding: 2.25rem 2.5rem;
  box-shadow: var(--shadow-md);
  position: relative;
  margin-bottom: 2rem;
  border: 1px solid #f4d3da;
}
.quote--featured::before {
  content: "\201C";
  position: absolute;
  top: 0.25rem;
  left: 1.25rem;
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 1;
  color: var(--color-accent);
  opacity: 0.25;
}
.quote--featured p {
  font-size: 1.1rem;
  line-height: 1.7;
  font-style: normal;
  position: relative;
}
.quote--featured cite {
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.quote--featured cite .verified {
  font-weight: 500;
  color: var(--color-text-muted);
  font-size: 0.85rem;
}
.quote--featured cite a {
  font-size: 0.85rem;
  font-weight: 500;
}

/* Social strip */
.social-strip {
  background: var(--color-surface-alt);
  padding: 2.5rem 0;
  border-top: 1px solid var(--color-border);
}
.social-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  text-align: center;
}
.social-strip-label {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-text);
}
.social-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 1.15rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  color: var(--color-text);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}
.social-link:hover {
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
  color: var(--color-accent-dark);
}
.social-link svg {
  width: 20px;
  height: 20px;
  display: block;
}
.social-link--facebook:hover { color: #1877f2; border-color: #1877f2; }
.social-link--instagram:hover {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 50%, #8134af 100%);
}
.social-link--instagram:hover svg { color: #fff; }

/* Talk to an agent */
.talk-to-agent { padding: 4rem 0; }
.talk-card {
  background: linear-gradient(135deg, #fff 0%, #fbe7eb 50%, #fff 100%);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-md);
  border: 1px solid #f4d3da;
  position: relative;
  overflow: hidden;
}
.talk-card::before {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(200,16,46,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.talk-card-intro { position: relative; max-width: 720px; margin-bottom: 2.25rem; }
.talk-card-intro h2 { margin-bottom: 0.6rem; }
.talk-card-intro p { font-size: 1.05rem; margin-bottom: 0; }
.talk-options {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.talk-option {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.4rem 1.4rem;
  text-decoration: none;
  color: var(--color-text);
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.talk-option:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
  text-decoration: none;
  color: var(--color-text);
}
.talk-option-icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--color-accent-soft);
  color: var(--color-accent-dark);
  border-radius: 10px;
  margin-bottom: 0.9rem;
}
.talk-option-icon svg { width: 22px; height: 22px; }
.talk-option--whatsapp .talk-option-icon {
  background: #d8f4dd;
  color: #128c7e;
}
.talk-option h3 { margin-bottom: 0.35rem; font-size: 1.15rem; }
.talk-option p {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}
.talk-option-cta {
  margin-top: auto;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-accent-dark);
}
.talk-option--whatsapp .talk-option-cta { color: #128c7e; }
.talk-availability {
  position: relative;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.talk-availability::before {
  content: "";
  width: 9px; height: 9px;
  background: #2f9e44;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(47,158,68,0.18);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(47,158,68,0.18); }
  50% { box-shadow: 0 0 0 8px rgba(47,158,68,0.05); }
}
@media (max-width: 900px) {
  .talk-options { grid-template-columns: 1fr; }
  .talk-card { padding: 2rem 1.5rem; }
}

/* AI chat hero row inside talk-card */
.talk-ai-row {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.25rem;
  align-items: center;
  background: linear-gradient(135deg, #1f1a14 0%, #3a2d22 100%);
  color: #fff;
  padding: 1.75rem 1.85rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.75rem;
  box-shadow: var(--shadow-md);
}
.talk-ai-avatar {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: var(--color-accent);
  color: #fff;
  border-radius: 14px;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  position: relative;
}
.talk-ai-avatar::after {
  content: "";
  position: absolute;
  bottom: -2px; right: -2px;
  width: 14px; height: 14px;
  background: #2f9e44;
  border: 3px solid #1f1a14;
  border-radius: 50%;
}
.talk-ai-text h3 {
  color: #fff;
  margin: 0 0 0.25rem;
  font-size: 1.2rem;
}
.talk-ai-text p {
  color: rgba(255,255,255,0.78);
  margin: 0;
  font-size: 0.95rem;
}
.talk-ai-start {
  white-space: nowrap;
}
.talk-divider {
  text-align: center;
  margin: 1.25rem 0 1.5rem;
  position: relative;
  color: var(--color-text-muted);
  font-size: 0.88rem;
  font-weight: 500;
}
.talk-divider::before,
.talk-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: calc(50% - 12rem);
  height: 1px;
  background: var(--color-border);
}
.talk-divider::before { left: 0; }
.talk-divider::after { right: 0; }
.talk-divider span { background: transparent; padding: 0 1rem; }

/* AI chat panel */
.ai-chat {
  margin-top: 1.5rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: chatSlideIn 0.35s ease-out;
}
@keyframes chatSlideIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.ai-chat[hidden] { display: none; }
.ai-chat-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, #1f1a14 0%, #3a2d22 100%);
  color: #fff;
}
.ai-chat-header > div:nth-child(2) { flex: 1; line-height: 1.2; }
.ai-chat-header strong { display: block; font-size: 1rem; font-family: var(--font-heading); }
.ai-chat-status {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
}
.ai-chat-status::before {
  content: "";
  display: inline-block;
  width: 7px; height: 7px;
  background: #44d76c;
  border-radius: 50%;
  margin-right: 0.4rem;
  vertical-align: middle;
}
.ai-chat-avatar {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: var(--color-accent);
  color: #fff;
  border-radius: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
}
.ai-chat-close {
  background: rgba(255,255,255,0.1);
  border: 0;
  color: #fff;
  width: 32px; height: 32px;
  border-radius: 8px;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease;
}
.ai-chat-close:hover { background: rgba(255,255,255,0.2); }

.ai-chat-body {
  padding: 1.25rem;
  height: 360px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  background: #fbf7f2;
}
.ai-chat-msg {
  display: flex;
  gap: 0.6rem;
  max-width: 88%;
  animation: msgIn 0.25s ease-out;
}
@keyframes msgIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}
.ai-chat-msg--user {
  align-self: flex-end;
  flex-direction: row-reverse;
}
.ai-chat-avatar-sm {
  flex-shrink: 0;
  width: 28px; height: 28px;
  display: grid; place-items: center;
  background: var(--color-accent);
  color: #fff;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
}
.ai-chat-bubble {
  padding: 0.7rem 0.95rem;
  border-radius: 14px;
  font-size: 0.95rem;
  line-height: 1.5;
  background: #fff;
  border: 1px solid var(--color-border);
  color: var(--color-text);
  white-space: pre-wrap;
}
.ai-chat-msg--user .ai-chat-bubble {
  background: var(--color-accent);
  color: #fff;
  border-color: transparent;
  border-radius: 14px 14px 4px 14px;
}
.ai-chat-msg--bot .ai-chat-bubble {
  border-radius: 14px 14px 14px 4px;
}
.ai-chat-typing .ai-chat-bubble {
  display: inline-flex;
  gap: 4px;
  padding: 0.9rem 1rem;
}
.ai-chat-typing .ai-chat-bubble span {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #b8a99a;
  animation: typingDot 1.2s infinite ease-in-out;
}
.ai-chat-typing .ai-chat-bubble span:nth-child(2) { animation-delay: 0.15s; }
.ai-chat-typing .ai-chat-bubble span:nth-child(3) { animation-delay: 0.3s; }
@keyframes typingDot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

.ai-chat-suggestions {
  padding: 0.6rem 1.25rem 0.85rem;
  background: #fbf7f2;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.ai-chat-suggestions:empty { padding: 0; border-top: 0; }
.ai-chat-chip {
  background: #fff;
  border: 1px solid var(--color-border);
  color: var(--color-accent-dark);
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
  font-family: inherit;
}
.ai-chat-chip:hover {
  background: var(--color-accent-soft);
  border-color: var(--color-accent);
}

.ai-chat-form {
  display: flex;
  gap: 0.5rem;
  padding: 0.85rem 1.25rem 1rem;
  background: #fff;
  border-top: 1px solid var(--color-border);
}
.ai-chat-form input {
  flex: 1;
  padding: 0.7rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.95rem;
  margin: 0;
}
.ai-chat-form input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-soft);
}
.ai-chat-form button {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 0;
  background: var(--color-accent);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
  display: grid; place-items: center;
}
.ai-chat-form button:hover { background: var(--color-accent-dark); transform: scale(1.05); }
.ai-chat-disclosure {
  text-align: center;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  padding: 0.5rem 1rem 0.85rem;
  background: #fff;
}

@media (max-width: 700px) {
  .talk-ai-row {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 1.5rem;
  }
  .talk-ai-avatar { margin: 0 auto; }
  .talk-ai-start { width: 100%; }
  .talk-divider::before, .talk-divider::after { width: calc(50% - 7rem); }
  .ai-chat-body { height: 320px; }
}

/* CTA banner */
.cta-banner {
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 2rem;
  align-items: center;
  background: linear-gradient(135deg, #1f1a14 0%, #3a2d22 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.cta-banner h2 { color: #fff; margin-bottom: 0.4rem; }
.cta-banner p { color: rgba(255,255,255,0.85); margin-bottom: 0; }

/* Footer */
.site-footer {
  background: #1f1a14;
  color: #d9cdb9;
  padding: 3rem 0 1.5rem;
}
.site-footer h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
}
.site-footer a { color: #d9cdb9; }
.site-footer a:hover { color: #fff; }
.site-footer p { color: #b8ad99; font-size: 0.92rem; margin-bottom: 0.5rem; }
.footer-bottom {
  border-top: 1px solid #3a2f23;
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  color: #8a7f6d;
  font-size: 0.85rem;
}

/* Service detail (services page) */
.service-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 2rem 0;
  border-bottom: 1px solid var(--color-border);
}
.service-block:last-child { border-bottom: 0; }
.service-block .icon-lg {
  width: 64px; height: 64px;
  background: var(--color-accent-soft);
  color: var(--color-accent-dark);
  display: grid; place-items: center;
  border-radius: 14px;
  font-size: 1.8rem;
}
.service-block ul { padding-left: 1.25rem; margin: 0.5rem 0 0; }
.service-block li { color: var(--color-text-muted); margin-bottom: 0.35rem; }

/* About page */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: center;
}
.about-portrait {
  background: linear-gradient(160deg, #fbe7eb, #fff);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  box-shadow: var(--shadow-md);
}
.about-portrait--photo {
  padding: 0;
  overflow: hidden;
  background: #fbe7eb;
  position: relative;
}
.about-portrait--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 0 6px rgba(255,255,255,0.6),
              inset 0 0 0 8px rgba(200,16,46,0.18);
  pointer-events: none;
}
.about-portrait--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  border-radius: var(--radius-lg);
}

/* FAQ */
.faq details {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
  box-shadow: var(--shadow-sm);
}
.faq summary {
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--color-text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--color-accent);
  transition: transform 0.2s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: 0.75rem 0 0; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
}
.contact-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.25rem;
}
.contact-card h3 { margin-bottom: 0.5rem; }
.contact-card p { margin-bottom: 0.3rem; }
.contact-card a { font-weight: 600; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
form label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--color-text);
}
form input, form select, form textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.98rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  color: var(--color-text);
  margin-bottom: 1rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
form input:focus, form select:focus, form textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-soft);
}
form textarea { min-height: 140px; resize: vertical; }

.consent {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}
.consent input { width: auto; margin: 0.25rem 0 0; }

/* Page hero (subpages) */
.page-hero {
  background: var(--color-surface-alt);
  padding: 3.5rem 0 3rem;
  border-bottom: 1px solid var(--color-border);
}
.page-hero h1 { margin-bottom: 0.4rem; }
.page-hero p { font-size: 1.1rem; max-width: 48rem; }

/* Utility */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mt-1 { margin-top: 1rem; }
.lead { font-size: 1.1rem; }

/* Responsive */
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .values { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 420px; margin: 0 auto; }
  .cta-banner { grid-template-columns: 1fr; text-align: center; }
}
@media (max-width: 640px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--color-border);
    gap: 0.5rem;
  }
  .nav.open { display: flex; }
  .nav a { padding: 0.6rem 0; border-bottom: 1px solid var(--color-border); }
  .nav .btn { margin: 0.5rem 0 0; text-align: center; }
  .nav-toggle { display: block; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 3rem 0; }
}
