@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400&display=swap');

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; color: #1a1a1a; background: #fff; }
img { max-width: 100%; height: auto; }
a { text-decoration: none; }

/* ── VARIABLES ── */
:root {
  --teal: #2aA898;
  --yellow: #F5C842;
  --dark: #1a1a1a;
  --mid: #333;
  --light: #f7f7f5;
  --lighter: #f0f0ee;
  --border: #e8e8e8;
}

/* ── NAV ── */
.bt-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 2.5rem; border-bottom: 0.5px solid var(--border);
  background: #fff; position: sticky; top: 0; z-index: 100;
}
.bt-logo { display: flex; align-items: center; gap: 10px; }
.bt-bars { display: flex; flex-direction: column; gap: 3px; }
.bt-bars span { display: block; height: 2.5px; background: var(--teal); border-radius: 1px; }
.bt-bars span:nth-child(1) { width: 20px; }
.bt-bars span:nth-child(2) { width: 14px; }
.bt-bars span:nth-child(3) { width: 20px; }
.bt-logotype { font-size: 17px; font-weight: 300; color: var(--teal); letter-spacing: 0.03em; }
.bt-nav ul { display: flex; gap: 2rem; list-style: none; }
.bt-nav ul a { font-size: 12px; color: #888; letter-spacing: 0.04em; transition: color 0.2s; }
.bt-nav ul a:hover, .bt-nav ul a.active { color: var(--teal); }
.bt-nav-cta {
  font-size: 12px; color: var(--teal); border: 0.5px solid var(--teal);
  padding: 6px 16px; letter-spacing: 0.04em; transition: all 0.2s;
}
.bt-nav-cta:hover { background: var(--teal); color: #fff; }

/* ── FOOTER ── */
.bt-foot {
  padding: 1.25rem 2.5rem; border-top: 0.5px solid #2a2a2a;
  background: var(--dark); display: flex; align-items: center; justify-content: space-between;
}
.bt-foot p { font-size: 11px; color: rgba(255,255,255,0.3); }
.bt-foot-logo { display: flex; align-items: center; gap: 7px; }
.bt-foot-bars { display: flex; flex-direction: column; gap: 2px; }
.bt-foot-bars span { display: block; height: 2px; background: var(--teal); border-radius: 1px; }
.bt-foot-bars span:nth-child(1) { width: 15px; }
.bt-foot-bars span:nth-child(2) { width: 10px; }
.bt-foot-bars span:nth-child(3) { width: 15px; }
.bt-foot-name { font-size: 13px; color: var(--teal); font-weight: 300; }

/* ── UTILITIES ── */
.yr { width: 32px; height: 2.5px; background: var(--yellow); margin-bottom: 1.25rem; }
.yr-c { width: 32px; height: 2.5px; background: var(--yellow); margin: 0 auto 1.25rem; }

/* ── TESTIMONIAL BLOCK ── */
.tblock {
  padding: 2rem 2.5rem; text-align: center;
  border-bottom: 0.5px solid var(--border); position: relative; overflow: hidden;
}
.tblock-light { background: var(--light); }
.tblock-white { background: #fff; }
.tblock-bg {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-size: 140px; font-weight: 800; color: rgba(42,168,152,0.04);
  line-height: 1; pointer-events: none;
}
.tblock blockquote {
  font-size: 17px; font-style: italic; font-weight: 300; color: var(--dark);
  max-width: 680px; margin: 0 auto 0.75rem; line-height: 1.65; position: relative; z-index: 1;
}
.tblock-rule { width: 24px; height: 0.5px; background: var(--yellow); margin: 0 auto 0.75rem; }
.tblock cite { font-size: 11px; color: #999; letter-spacing: 0.1em; text-transform: uppercase; font-style: normal; }
.tblock-mark { font-size: 40px; font-weight: 800; color: var(--teal); line-height: 0.5; margin-bottom: 0.75rem; opacity: 0.2; }

/* ── CRED STRIP ── */
.h-cred-strip {
  background: var(--dark); padding: 0.85rem 2.5rem;
  display: flex; align-items: center; flex-wrap: wrap;
}
.h-cred-item { font-size: 11px; color: rgba(255,255,255,0.45); letter-spacing: 0.08em; white-space: nowrap; padding: 0.2rem 1.25rem; }
.h-cred-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--yellow); flex-shrink: 0; }

/* ── HOME HERO ── */
.h-hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 560px; }
.h-hero-left {
  padding: 4rem 3rem; display: flex; flex-direction: column;
  justify-content: center; background: #fff; position: relative; overflow: hidden;
}
.h-hero-bg {
  position: absolute; right: -20px; bottom: -40px;
  font-size: 180px; font-weight: 800; color: rgba(42,168,152,0.04);
  line-height: 1; pointer-events: none;
}
.h-reveal { display: flex; align-items: center; gap: 12px; margin-bottom: 1.5rem; }
.h-reveal-rule { flex: 1; height: 0.5px; background: var(--teal); }
.h-reveal-text { font-size: 11px; color: var(--teal); letter-spacing: 0.13em; text-transform: uppercase; white-space: nowrap; }
.h-so { font-size: 14px; font-style: italic; font-weight: 300; color: #999; margin-bottom: 0.2rem; }
.h-h1 { font-size: 56px; font-weight: 700; color: var(--dark); line-height: 1.0; margin-bottom: 0.1rem; letter-spacing: -0.02em; }
.h-h1-teal { font-size: 56px; font-weight: 700; color: var(--teal); line-height: 1.0; margin-bottom: 1.5rem; letter-spacing: -0.02em; }
.h-questions { font-size: 15px; color: #333; line-height: 1.85; font-weight: 400; max-width: 400px; margin-bottom: 1rem; font-style: italic; }
.h-intro { font-size: 14px; color: #555; line-height: 1.8; font-weight: 300; max-width: 400px; margin-bottom: 0.4rem; }
.h-intro-bold { font-size: 15px; color: var(--dark); font-weight: 600; max-width: 400px; margin-bottom: 2rem; }
.h-cta {
  display: inline-block; background: var(--dark); color: #fff;
  padding: 13px 30px; font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; transition: background 0.2s;
}
.h-cta:hover { background: var(--teal); }
.h-photo-right { position: relative; overflow: hidden; }
.h-photo-right img { width: 100%; height: 100%; min-height: 560px; object-fit: cover; object-position: center 20%; display: block; }
.h-name-tag {
  position: absolute; bottom: 24px; left: 0; z-index: 2;
  background: var(--yellow); padding: 10px 20px;
  font-size: 12px; font-weight: 600; color: var(--dark); letter-spacing: 0.04em;
}

/* ── SERVICE BOXES ── */
.h-services { display: grid; grid-template-columns: repeat(3, 1fr); background: #333; gap: 0.5px; }
.h-service { background: var(--dark); padding: 2.5rem 2rem; position: relative; overflow: hidden; transition: background 0.2s; }
.h-service:hover { background: #222; }
.h-service-bubble {
  position: absolute; inset: 0;
  background-image: url('images/speech-bubble.png');
  background-size: 160%; background-position: center;
  opacity: 0.04; pointer-events: none;
}
.h-service-ghost {
  position: absolute; bottom: -10px; right: -10px;
  font-size: 90px; font-weight: 800; color: transparent;
  -webkit-text-stroke: 1px rgba(42,168,152,0.15);
  line-height: 1; pointer-events: none; letter-spacing: -0.04em;
}
.h-service-num { font-size: 10px; color: var(--yellow); letter-spacing: 0.14em; margin-bottom: 0.75rem; font-weight: 500; position: relative; z-index: 1; }
.h-service-title { font-size: 18px; color: #fff; font-weight: 600; margin-bottom: 0.75rem; line-height: 1.3; min-height: 2.6em; position: relative; z-index: 1; }
.h-service-desc { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.65; font-weight: 300; padding-top: 0.75rem; border-top: 0.5px solid rgba(255,255,255,0.06); position: relative; z-index: 1; }

/* ── ABOUT HERO ── */
.a-hero {
  background: var(--dark); padding: 4rem 2.5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center; position: relative; overflow: hidden; min-height: 480px;
}
.a-hero-bg { position: absolute; right: -40px; top: -20px; font-size: 220px; font-weight: 800; color: rgba(255,255,255,0.02); line-height: 1; pointer-events: none; }
.a-page-label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); margin-bottom: 1.5rem; }
.a-h1 { font-size: 52px; font-weight: 700; color: #fff; line-height: 1.0; margin-bottom: 0.1rem; letter-spacing: -0.02em; }
.a-h1-teal { font-size: 52px; font-weight: 700; color: var(--teal); line-height: 1.0; margin-bottom: 1.5rem; letter-spacing: -0.02em; }
.a-intro { font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.8; font-weight: 300; }
.a-intro strong { color: #fff; font-weight: 500; }
.a-linkedin {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 1.5rem;
  font-size: 12px; color: var(--teal); letter-spacing: 0.04em;
  border: 0.5px solid var(--teal); padding: 7px 16px; transition: all 0.2s;
}
.a-linkedin:hover { background: var(--teal); color: #fff; }
.a-photo-col { position: relative; padding-right: 1.5rem; padding-bottom: 1.5rem; }
.a-photo-offset { position: absolute; top: 16px; left: 16px; right: -16px; bottom: -16px; background: var(--teal); z-index: 0; }
.a-photo-img { position: relative; z-index: 1; width: 100%; height: 460px; object-fit: cover; object-position: center 30%; display: block; }
.a-photo-tag { position: absolute; z-index: 2; bottom: -10px; left: 0; background: var(--yellow); padding: 8px 18px; font-size: 12px; font-weight: 600; color: var(--dark); letter-spacing: 0.04em; }

/* ── ABOUT SECTIONS ── */
.a-section {
  padding: 3.5rem 2.5rem; display: grid; grid-template-columns: 180px 1fr;
  gap: 3rem; border-bottom: 0.5px solid var(--border); align-items: start; position: relative;
}
.a-section-alt { background: var(--light); }
.a-section-scotland { overflow: hidden; }
.a-section-scotland::before {
  content: ''; position: absolute; inset: 0;
  background-image: url('images/scotland-beach.jpg');
  background-size: cover; background-position: center; opacity: 0.06; z-index: 0;
}
.a-section-scotland > * { position: relative; z-index: 1; }
.a-section-side-year { font-size: 52px; font-weight: 800; color: #e0e0e0; line-height: 1; margin-bottom: 0.25rem; letter-spacing: -0.03em; }
.a-section-side-label { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal); line-height: 1.6; }
.a-section-title { font-size: 24px; font-weight: 700; color: var(--dark); margin-bottom: 1rem; line-height: 1.2; }
.a-section-body { font-size: 14px; color: #555; line-height: 1.85; font-weight: 300; }
.a-section-body strong { color: var(--dark); font-weight: 600; }
.a-pull { margin-top: 1.5rem; padding: 1.25rem 1.5rem; background: #fff; border-left: 3px solid var(--yellow); }
.a-pull-alt { background: var(--lighter); }
.a-pull p { font-size: 15px; font-style: italic; font-weight: 300; color: var(--dark); line-height: 1.65; }
.a-keynes { margin-top: 1.5rem; background: var(--dark); padding: 1.75rem; display: grid; grid-template-columns: 1fr auto; gap: 1rem; align-items: center; }
.a-keynes-text { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.7; font-weight: 300; }
.a-keynes-text strong { color: #fff; font-weight: 500; }
.a-keynes-num { font-size: 32px; font-weight: 700; color: var(--yellow); line-height: 1; }
.a-keynes-label { font-size: 10px; color: rgba(255,255,255,0.35); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 0.25rem; }

/* ── BOO TICKETY SECTION ── */
.a-dad { padding: 3.5rem 2.5rem; display: grid; grid-template-columns: 180px 1fr; gap: 3rem; border-bottom: 0.5px solid var(--border); background: var(--teal); position: relative; overflow: hidden; }
.a-dad-bg { position: absolute; right: -20px; bottom: -30px; font-size: 180px; font-weight: 800; color: rgba(255,255,255,0.06); line-height: 1; pointer-events: none; }
.a-dad-label { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.5); padding-top: 0.25rem; }
.a-dad-title { font-size: 24px; font-weight: 700; color: #fff; margin-bottom: 1.25rem; line-height: 1.2; }
.a-dad-body { font-size: 15px; color: rgba(255,255,255,0.9); line-height: 1.9; font-weight: 300; }
.a-dad-body p { margin-bottom: 1rem; }
.a-dad-body p:last-child { margin-bottom: 0; font-style: italic; }

/* ── INFLUENCES ── */
.a-influences { padding: 3.5rem 2.5rem; display: grid; grid-template-columns: 180px 1fr; gap: 3rem; border-bottom: 0.5px solid var(--border); background: var(--light); }
.a-inf-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: #e0e0e0; margin-top: 1.5rem; }
.a-inf-item { background: #fff; padding: 1.25rem 1.5rem; }
.a-inf-name { font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 0.25rem; }
.a-inf-desc { font-size: 12px; color: #999; font-weight: 300; line-height: 1.5; }

/* ── ABOUT CLOSING ── */
.a-closing { background: var(--dark); padding: 4rem 2.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.a-closing-left h2 { font-size: 32px; font-weight: 700; color: #fff; margin-bottom: 1rem; line-height: 1.2; }
.a-closing-left p { font-size: 15px; font-style: italic; font-weight: 300; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 1rem; }
.a-closing-final { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); }
.a-closing-right { border-left: 0.5px solid rgba(255,255,255,0.1); padding-left: 3rem; }
.a-closing-tquote { font-size: 16px; font-style: italic; font-weight: 300; color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 1rem; }
.a-closing-tcite { font-size: 11px; color: var(--yellow); letter-spacing: 0.1em; text-transform: uppercase; display: block; margin-bottom: 2rem; }
.a-closing-cta { display: inline-block; background: var(--teal); color: #fff; padding: 12px 32px; font-size: 12px; font-weight: 600; letter-spacing: 0.08em; transition: opacity 0.2s; }
.a-closing-cta:hover { opacity: 0.85; }

/* ── WORKING TOGETHER HERO ── */
.w-hero { background: var(--dark); padding: 5rem 2.5rem; text-align: center; position: relative; overflow: hidden; }
.w-hero-bg { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-size: 220px; font-weight: 800; color: transparent; -webkit-text-stroke: 1px rgba(42,168,152,0.12); line-height: 1; pointer-events: none; white-space: nowrap; letter-spacing: -0.04em; }
.w-page-label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); margin-bottom: 1.5rem; }
.w-h1 { font-size: 52px; font-weight: 700; color: #fff; line-height: 1.0; margin-bottom: 0.1rem; letter-spacing: -0.02em; position: relative; z-index: 1; }
.w-h1-teal { font-size: 52px; font-weight: 700; color: var(--teal); line-height: 1.0; margin-bottom: 1.5rem; letter-spacing: -0.02em; position: relative; z-index: 1; }
.w-hero-intro { font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.85; font-weight: 300; max-width: 620px; margin: 0 auto 1.5rem; position: relative; z-index: 1; font-style: italic; }
.w-hero-sub { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 500px; margin: 0 auto 2.5rem; position: relative; z-index: 1; }
.w-hero-cta { display: inline-block; background: var(--yellow); color: var(--dark); padding: 14px 36px; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; position: relative; z-index: 1; transition: opacity 0.2s; }
.w-hero-cta:hover { opacity: 0.85; }

/* ── OFFERINGS ── */
.w-offering { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 0.5px solid var(--border); }
.w-offering-flip { direction: rtl; }
.w-offering-flip > * { direction: ltr; }
.w-offering-content { padding: 3.5rem 2.5rem; background: #fff; }
.w-offering-content-alt { background: var(--light); }
.w-num { font-size: 10px; color: var(--yellow); letter-spacing: 0.14em; margin-bottom: 0.75rem; font-weight: 600; }
.w-title { font-size: 26px; font-weight: 700; color: var(--dark); line-height: 1.15; margin-bottom: 0.5rem; letter-spacing: -0.01em; }
.w-for { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); margin-bottom: 1.25rem; }
.w-body { font-size: 14px; color: #555; line-height: 1.85; font-weight: 300; margin-bottom: 1.25rem; }
.w-body strong { color: var(--dark); font-weight: 600; }
.w-tquote { margin: 1.25rem 0; padding: 1.25rem 1.5rem; background: #fff; border-left: 3px solid var(--yellow); }
.w-tquote-alt { background: var(--lighter); }
.w-tquote-mark { font-size: 36px; font-weight: 800; color: var(--yellow); line-height: 0.5; margin-bottom: 0.75rem; opacity: 0.5; }
.w-tquote p { font-size: 14px; font-style: italic; font-weight: 300; color: #333; line-height: 1.65; }
.w-tquote cite { font-size: 11px; color: #aaa; letter-spacing: 0.08em; text-transform: uppercase; font-style: normal; display: block; margin-top: 0.5rem; }
.w-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 1.75rem; }
.w-tag { font-size: 11px; color: var(--teal); border: 0.5px solid var(--teal); padding: 5px 12px; letter-spacing: 0.04em; }
.w-cta { display: inline-block; background: var(--dark); color: #fff; padding: 11px 24px; font-size: 12px; font-weight: 600; letter-spacing: 0.08em; transition: background 0.2s; }
.w-cta:hover { background: var(--teal); }

/* ── VISUAL PANELS ── */
.w-visual { padding: 3.5rem 2.5rem; display: flex; flex-direction: column; justify-content: flex-end; position: relative; overflow: hidden; min-height: 420px; }
.w-v-teal { background: var(--teal); }
.w-v-dark { background: var(--dark); }
.w-v-light { background: var(--lighter); }
.w-v-yellow { background: var(--yellow); }
.w-v-lines { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.025) 0px, rgba(255,255,255,0.025) 1px, transparent 1px, transparent 20px); pointer-events: none; }
.w-v-lines-light { background-image: repeating-linear-gradient(45deg, rgba(42,168,152,0.07) 0px, rgba(42,168,152,0.07) 1px, transparent 1px, transparent 20px); }
.w-v-lines-yellow { background-image: repeating-linear-gradient(45deg, rgba(0,0,0,0.05) 0px, rgba(0,0,0,0.05) 1px, transparent 1px, transparent 20px); }
.w-v-ghost { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-size: 100px; font-weight: 800; letter-spacing: -0.04em; color: transparent; white-space: nowrap; line-height: 1.1; pointer-events: none; text-align: center; }
.w-v-ghost-teal { -webkit-text-stroke: 1.5px rgba(255,255,255,0.18); }
.w-v-ghost-dark { -webkit-text-stroke: 1.5px rgba(255,255,255,0.1); }
.w-v-ghost-light { -webkit-text-stroke: 1.5px rgba(42,168,152,0.2); }
.w-v-ghost-yellow { -webkit-text-stroke: 1.5px rgba(0,0,0,0.12); }
.w-v-content { position: relative; z-index: 1; }
.w-v-stat { font-size: 42px; font-weight: 700; color: #fff; line-height: 1; margin-bottom: 0.25rem; letter-spacing: -0.02em; }
.w-v-stat-light { color: var(--teal); }
.w-v-stat-yellow { color: var(--dark); }
.w-v-label { font-size: 11px; color: rgba(255,255,255,0.45); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem; }
.w-v-label-light { color: #888; }
.w-v-label-yellow { color: rgba(0,0,0,0.45); }
.w-v-quote { font-size: 13px; font-style: italic; font-weight: 300; color: rgba(255,255,255,0.6); line-height: 1.6; padding-top: 1rem; border-top: 0.5px solid rgba(255,255,255,0.12); }
.w-v-quote-light { color: #666; border-top-color: rgba(42,168,152,0.2); }
.w-v-quote-yellow { color: rgba(0,0,0,0.5); border-top-color: rgba(0,0,0,0.1); }

/* ── PRICING ── */
.w-pricing { background: var(--yellow); padding: 2rem 2.5rem; text-align: center; }
.w-pricing p { font-size: 14px; color: var(--dark); font-weight: 400; line-height: 1.7; }
.w-pricing a { color: var(--dark); font-weight: 600; text-decoration: underline; }

/* ── WORKING TOGETHER CLOSING ── */
.w-closing { background: var(--teal); padding: 4rem 2.5rem; text-align: center; position: relative; overflow: hidden; }
.w-closing-bg { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-size: 180px; font-weight: 800; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.08); pointer-events: none; white-space: nowrap; letter-spacing: -0.04em; }
.w-closing h2 { font-size: 36px; font-weight: 700; color: #fff; margin-bottom: 0.75rem; position: relative; z-index: 1; }
.w-closing p { font-size: 15px; color: rgba(255,255,255,0.7); font-weight: 300; margin-bottom: 2rem; max-width: 440px; margin-left: auto; margin-right: auto; position: relative; z-index: 1; }
.w-closing-cta { display: inline-block; background: #fff; color: var(--teal); padding: 14px 40px; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; position: relative; z-index: 1; transition: opacity 0.2s; }
.w-closing-cta:hover { opacity: 0.9; }

/* ── CONTACT HERO ── */
.c-hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 420px; }
.c-hero-left { background: var(--teal); padding: 4rem 3rem; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.c-hero-bg { position: absolute; right: -20px; bottom: -30px; font-size: 160px; font-weight: 800; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.08); line-height: 1; pointer-events: none; letter-spacing: -0.04em; }
.c-page-label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 1.5rem; }
.c-h1 { font-size: 44px; font-weight: 700; color: #fff; line-height: 1.0; margin-bottom: 0.1rem; letter-spacing: -0.02em; position: relative; z-index: 1; }
.c-h1-yellow { font-size: 44px; font-weight: 700; color: var(--yellow); line-height: 1.0; margin-bottom: 1.5rem; letter-spacing: -0.02em; position: relative; z-index: 1; }
.c-hero-sub { font-size: 15px; color: rgba(255,255,255,0.85); line-height: 1.8; font-weight: 300; max-width: 360px; position: relative; z-index: 1; }
.c-hero-right { position: relative; overflow: hidden; }
.c-hero-right img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; object-position: center; display: block; }

/* ── CONTACT OPTIONS ── */
.c-options { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5px; background: var(--border); }
.c-option { background: #fff; padding: 3rem 2.5rem; display: flex; flex-direction: column; }
.c-option-alt { background: var(--light); }
.c-icon { width: 44px; height: 44px; background: var(--yellow); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.c-option-label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.75rem; }
.c-option-title { font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 0.75rem; line-height: 1.2; }
.c-option-body { font-size: 14px; color: #666; line-height: 1.75; font-weight: 300; margin-bottom: 2rem; flex-grow: 1; }
.c-email { font-size: 17px; color: var(--teal); font-weight: 500; margin-bottom: 1.5rem; display: block; transition: opacity 0.2s; }
.c-email:hover { opacity: 0.75; }
.c-cta-teal { display: inline-block; background: var(--teal); color: #fff; padding: 12px 28px; font-size: 12px; font-weight: 600; letter-spacing: 0.08em; align-self: flex-start; transition: opacity 0.2s; }
.c-cta-teal:hover { opacity: 0.85; }
.c-cta-dark { display: inline-block; background: var(--dark); color: #fff; padding: 12px 28px; font-size: 12px; font-weight: 600; letter-spacing: 0.08em; align-self: flex-start; transition: opacity 0.2s; }
.c-cta-dark:hover { opacity: 0.85; }

/* ── WHAT TO EXPECT ── */
.c-expect { background: var(--dark); padding: 3.5rem 2.5rem; }
.c-expect-label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal); text-align: center; margin-bottom: 2.5rem; }
.c-expect-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 860px; margin: 0 auto; }
.c-expect-item { text-align: center; padding: 2rem 1.5rem; border: 0.5px solid rgba(255,255,255,0.06); }
.c-expect-num { font-size: 36px; font-weight: 800; color: transparent; -webkit-text-stroke: 1.5px var(--yellow); line-height: 1; margin-bottom: 0.75rem; }
.c-expect-title { font-size: 13px; font-weight: 600; color: #fff; margin-bottom: 0.5rem; }
.c-expect-body { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.6; font-weight: 300; }

/* ── CONTACT CLOSING ── */
.c-closing { background: var(--yellow); padding: 4rem 2.5rem; text-align: center; }
.c-closing h2 { font-size: 36px; font-weight: 700; color: var(--dark); margin-bottom: 0.75rem; }
.c-closing p { font-size: 15px; color: rgba(0,0,0,0.6); font-weight: 300; margin-bottom: 2rem; }
.c-closing-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.c-closing-cta-dark { display: inline-block; background: var(--dark); color: #fff; padding: 14px 36px; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; transition: opacity 0.2s; }
.c-closing-cta-dark:hover { opacity: 0.85; }
.c-closing-cta-teal { display: inline-block; background: var(--teal); color: #fff; padding: 14px 36px; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; transition: opacity 0.2s; }
.c-closing-cta-teal:hover { opacity: 0.85; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .h-hero, .a-hero, .c-hero { grid-template-columns: 1fr; }
  .h-photo-right { min-height: 300px; }
  .h-photo-right img { min-height: 300px; }
  .h-services { grid-template-columns: 1fr; }
  .h-h1, .h-h1-teal { font-size: 40px; }
  .a-h1, .a-h1-teal { font-size: 36px; }
  .w-h1, .w-h1-teal { font-size: 36px; }
  .c-h1, .c-h1-yellow { font-size: 32px; }
  .a-section, .a-dad, .a-influences { grid-template-columns: 1fr; }
  .w-offering { grid-template-columns: 1fr; }
  .w-offering-flip { direction: ltr; }
  .c-options { grid-template-columns: 1fr; }
  .c-expect-grid { grid-template-columns: 1fr; }
  .a-closing { grid-template-columns: 1fr; }
  .a-closing-right { border-left: none; padding-left: 0; border-top: 0.5px solid rgba(255,255,255,0.1); padding-top: 2rem; }
  .bt-nav ul { display: none; }
  .bt-nav { flex-wrap: wrap; gap: 1rem; }
}

/* ── MOBILE MENU ── */
.bt-menu-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px;
}
.bt-menu-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--teal); border-radius: 1px;
  transition: all 0.3s;
}
.bt-mobile-nav {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 0.5px solid var(--border);
  padding: 1rem 2rem;
}
.bt-mobile-nav a {
  font-size: 14px; color: #555; padding: 0.75rem 0;
  border-bottom: 0.5px solid var(--border);
  letter-spacing: 0.04em; display: block;
}
.bt-mobile-nav a:last-child { border-bottom: none; }
.bt-mobile-nav a.active { color: var(--teal); }
.bt-mobile-nav-cta {
  margin-top: 0.75rem;
  display: inline-block; background: var(--teal); color: #fff;
  padding: 10px 20px; font-size: 12px; font-weight: 600;
  letter-spacing: 0.06em;
}
.bt-mobile-nav.open { display: flex; }

@media (max-width: 768px) {
  .bt-menu-toggle { display: flex; }
  .bt-nav-cta { display: none; }
}
