/* ============================================================
   Félix Executive — site styles
   Palette: cream/linen neutrals + espresso text,
   terracotta (action) + turquoise (info) accents. Southwest-botanical.
   Type: Playfair Display (h1/h2) + Jost (body/h3+ — Century Gothic feel).
   ============================================================ */

:root {
  --white: #ffffff;
  --cream: #faf6ef;
  --sand: #f3ecdf;
  --sand-deep: #e9dfcc;
  --ink: #2b2118;
  --ink-soft: #564b3f;
  --muted: #8c8275;
  --line: #e6dccc;

  --teal: #0ca8b4;
  --teal-deep: #006c78;
  --orange: #f07824;
  --orange-deep: #d65e12;

  --maxw: 1180px;
  --radius: 14px;
  --radius-sm: 9px;
  --shadow-sm: 0 1px 2px rgba(43, 33, 24, .05), 0 6px 18px rgba(43, 33, 24, .05);
  --shadow-md: 0 10px 40px rgba(43, 33, 24, .10);
  --ease: cubic-bezier(.22, .61, .36, 1);
  --terracotta: #C1440E;
  --terracotta-deep: #8B2E06;
  --terracotta-light: #E8734A;
  --gold: #D4920A;
  --gold-light: #F5C842;
  --magenta: #8B1A4A;
  --cactus: #3D6B52;

  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Jost", "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
  letter-spacing: .2px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--teal-deep); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--orange); }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.12; color: var(--ink); }
h3, h4 { font-family: var(--font-body); }
h1 { font-size: clamp(2.8rem, 6.2vw, 5.2rem); letter-spacing: -.01em; }
h2 { font-size: clamp(2rem, 3.8vw, 3.2rem); letter-spacing: -.005em; }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.65rem); font-weight: 600; }
h1 em, h2 em { font-style: italic; font-weight: 700; }
p { color: var(--ink-soft); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 112px 0; background-color: #fff; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Ccircle cx='0' cy='0' r='30' fill='none' stroke='%23C1440E' stroke-width='0.8' opacity='0.07'/%3E%3Ccircle cx='60' cy='0' r='30' fill='none' stroke='%23C1440E' stroke-width='0.8' opacity='0.07'/%3E%3Ccircle cx='0' cy='60' r='30' fill='none' stroke='%23C1440E' stroke-width='0.8' opacity='0.07'/%3E%3Ccircle cx='60' cy='60' r='30' fill='none' stroke='%23C1440E' stroke-width='0.8' opacity='0.07'/%3E%3Ccircle cx='30' cy='30' r='30' fill='none' stroke='%23C1440E' stroke-width='0.8' opacity='0.07'/%3E%3Ccircle cx='30' cy='30' r='2.5' fill='%23C1440E' opacity='0.06'/%3E%3C/svg%3E"); background-size: 60px 60px; }
.section--sand { background-color: var(--sand); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Crect x='22' y='22' width='56' height='56' fill='none' stroke='%23C1440E' stroke-width='0.8' opacity='0.07' transform='rotate(45 50 50)'/%3E%3Crect x='22' y='22' width='56' height='56' fill='none' stroke='%23C1440E' stroke-width='0.8' opacity='0.07'/%3E%3Ccircle cx='50' cy='50' r='18' fill='none' stroke='%23C1440E' stroke-width='0.6' opacity='0.06'/%3E%3Ccircle cx='50' cy='50' r='6' fill='none' stroke='%23C1440E' stroke-width='0.6' opacity='0.06'/%3E%3C/svg%3E"); background-size: 100px 100px; }
.section--cream { background: var(--cream); }
.section--ink { background: var(--ink); color: var(--cream); }
.section--tight { padding: 64px 0; }
.section--cta-full { background: linear-gradient(135deg, #f9a05a 0%, var(--orange) 40%, var(--orange-deep) 70%, var(--magenta) 100%); }
.cta-band.cta-band--flat { background: transparent; border-radius: 0; box-shadow: none; padding: 0; }
.center { text-align: center; }
.lead { font-size: 1.18rem; color: var(--ink-soft); max-width: 60ch; }
.center .lead { margin-left: auto; margin-right: auto; }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--teal-deep);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 4px;
  background-image: radial-gradient(circle, currentColor 1.5px, transparent 1.5px);
  background-size: 8px 4px;
  background-repeat: repeat-x;
  margin-bottom: 8px;
  opacity: 0.45;
}
.center .eyebrow::before { margin-left: auto; margin-right: auto; }
.page-header .eyebrow::before { margin-left: auto; margin-right: auto; opacity: 0.65; }
.accent { color: var(--orange); }
.section-head { max-width: 64ch; margin-bottom: 52px; }
.section-head h2 { margin-bottom: 20px; }
.center.section-head { margin-left: auto; margin-right: auto; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 700; font-size: .88rem;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 15px 30px; border-radius: 50px; border: 2px solid transparent;
  cursor: pointer; transition: all .25s var(--ease); white-space: nowrap;
}
.btn--primary { background: var(--orange); color: #fff; box-shadow: 0 8px 22px rgba(240, 120, 36, .28); }
.btn--primary:hover { background: var(--orange-deep); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(240, 120, 36, .34); }
.btn--ghost { background: transparent; border-color: var(--teal-deep); color: var(--teal-deep); }
.btn--ghost:hover { background: var(--teal-deep); color: #fff; transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: var(--orange); color: #fff; transform: translateY(-2px); }
.section--cta-full .btn--light:hover { background: var(--teal); border-color: var(--teal); color: #fff; box-shadow: 0 8px 22px rgba(12,168,180,.35); }
.btn--lg { padding: 17px 38px; font-size: 1rem; }

/* ---- Top bar ---- */
.topbar { background: var(--teal-deep); color: #fff; font-size: .82rem; letter-spacing: .5px; }
.topbar__inner { display: flex; justify-content: flex-end; align-items: center; gap: 16px; padding: 9px 24px; max-width: var(--maxw); margin: 0 auto; }
.topbar a { color: rgba(255,255,255,.9); }
.topbar a:hover { color: var(--gold-light); }
.topbar__tag { color: rgba(255,255,255,.95); font-weight: 600; letter-spacing: 1.4px; text-transform: uppercase; font-size: .72rem; }
.topbar__contact { display: flex; gap: 22px; align-items: center; }
.topbar__contact i { color: rgba(255,255,255,.8); margin-right: 6px; }

/* ---- Header / nav ---- */
.header { position: sticky; top: 0; z-index: 100; background: rgba(250, 246, 239, .92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); transition: box-shadow .3s var(--ease); }
.header.scrolled { box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; max-width: var(--maxw); margin: 0 auto; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 46px; width: auto; }
.brand__name { font-family: var(--font-display); font-size: 1.35rem; color: var(--ink); line-height: 1; }
.brand__name span { display: block; font-family: var(--font-body); font-size: .62rem; letter-spacing: 3px; text-transform: uppercase; color: var(--teal-deep); margin-top: 4px; font-weight: 600; }
.nav__links { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav__links a { color: var(--ink); font-weight: 600; font-size: .82rem; letter-spacing: 2px; text-transform: uppercase; padding: 9px 15px; border-radius: 8px; transition: all .2s var(--ease); }
.nav__links a:hover, .nav__links a.active { color: var(--teal-deep); background: var(--sand); }
.nav__cta { margin-left: 10px; }
.nav__toggle { display: none; background: none; border: 0; font-size: 1.5rem; color: var(--ink); cursor: pointer; padding: 6px; }

/* ---- Hero ---- */
.hero { position: relative; overflow: hidden; background: linear-gradient(160deg, rgba(12,168,180,.45) 0%, rgba(245,238,228,.72) 100%), url('../images/palm-shadow.jpg') center/cover no-repeat; }
.hero__inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center; padding: 100px 24px 120px; max-width: var(--maxw); margin: 0 auto; position: relative; z-index: 1; }
.hero__tag { display: inline-block; font-size: 1.05rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--teal-deep); margin-bottom: 22px; padding-bottom: 10px; border-bottom: 3px solid var(--orange); line-height: 1; }
.hero h1 { margin-bottom: 20px; }
.hero h1 em { font-style: italic; color: var(--terracotta); }
.hero__sub { font-size: 1.22rem; color: var(--ink-soft); margin-bottom: 16px; font-weight: 500; }
.hero__desc { font-size: 1.05rem; color: var(--ink-soft); margin-bottom: 34px; max-width: 58ch; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__location { margin-top: 22px; font-size: .84rem; font-weight: 600; letter-spacing: 1px; color: var(--ink-soft); display: flex; align-items: center; justify-content: center; gap: 8px; }
.hero__location i { color: var(--teal-deep); font-size: .9rem; }

/* ---- Marquee ---- */
.marquee { overflow: hidden; background: var(--teal-deep); padding: 13px 0; }
.marquee__track { display: flex; width: max-content; animation: marquee-scroll 28s linear infinite; }
.marquee__track span { padding: 0 20px; font-size: .75rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,.88); white-space: nowrap; }
.marquee__sep { color: var(--orange) !important; padding: 0 4px !important; letter-spacing: 0 !important; }
@keyframes marquee-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.hero__media { position: relative; }
.hero__media img { border-radius: 20px; box-shadow: var(--shadow-md); object-fit: cover; width: 100%; aspect-ratio: 4 / 5; }
.hero__badge { position: absolute; bottom: -22px; left: -22px; background: #fff; border-radius: 16px; padding: 18px 22px; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 14px; max-width: 260px; }
.hero__badge i { font-size: 1.6rem; color: var(--teal); }
.hero__badge strong { font-family: var(--font-display); font-size: 1.4rem; display: block; line-height: 1; }
.hero__badge span { font-size: .82rem; color: var(--muted); }
.hero__deco { position: absolute; top: -60px; right: -60px; width: 320px; height: 320px; background: radial-gradient(circle, rgba(12,168,180,.10), transparent 70%); border-radius: 50%; pointer-events: none; }
/* Botanical background — gradient masks the center "Félix Executive" text, corner florals show through */
.hero__florals { position: absolute; inset: 0; background: radial-gradient(ellipse 36% 32% at 50% 46%, #FDFAF6 38%, transparent 78%), url('images/brand-florals.png') center / cover no-repeat; mix-blend-mode: multiply; opacity: .32; pointer-events: none; z-index: 0; }

/* ---- Trust strip ---- */
.trust { background: var(--terracotta); color: #fff; }
.trust__inner { display: flex; flex-wrap: wrap; justify-content: space-around; gap: 28px; padding: 36px 24px; max-width: var(--maxw); margin: 0 auto; text-align: center; }
.trust__item strong { font-family: var(--font-display); font-size: 3rem; color: #fff; display: block; line-height: 1; }
.trust__item span { font-size: .82rem; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.85); }

/* ---- Publications / Work page ---- */
/* ---- Pricing table ---- */
.pricing-table { margin-top: 48px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.pricing-row { display: grid; grid-template-columns: 2fr 1fr 1.2fr 2fr; gap: 0; border-bottom: 1px solid var(--line); }
.pricing-row:last-child { border-bottom: none; }
.pricing-row--head { background: var(--teal-deep); color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }
.pricing-row--head span { padding: 14px 20px; }
.pricing-row > div { padding: 22px 20px; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid var(--line); }
.pricing-row > div:last-child { border-right: none; }
.pricing-row:nth-child(even) { background: var(--sand); }
.pricing-service strong { font-size: 1rem; color: var(--ink); margin-bottom: 4px; }
.pricing-service span { font-size: .85rem; color: var(--ink-soft); }
.pricing-rate { font-family: var(--font-display); font-size: 1.5rem; color: var(--teal-deep); line-height: 1.1; }
.pricing-rate small { font-family: var(--font-body); font-size: .78rem; font-weight: 600; color: var(--ink-soft); display: block; margin-top: 2px; }
.pricing-project { font-family: var(--font-display); font-size: 1.2rem; color: var(--orange-deep); line-height: 1.1; }
.pricing-project small { font-family: var(--font-body); font-size: .78rem; font-weight: 600; color: var(--ink-soft); display: block; margin-top: 2px; }
.pricing-note { font-size: .85rem; color: var(--ink-soft); line-height: 1.5; }
.pricing-note-block { display: flex; gap: 16px; align-items: flex-start; background: rgba(12,168,180,.07); border: 1px solid rgba(12,168,180,.2); border-radius: var(--radius); padding: 22px 24px; margin-top: 32px; }
.pricing-note-block i { color: var(--teal-deep); font-size: 1.1rem; flex-shrink: 0; margin-top: 3px; }
.pricing-note-block p { font-size: .95rem; color: var(--ink-soft); margin: 0; }

.pub-list { display: flex; flex-direction: column; gap: 0; margin-top: 48px; border-top: 1px solid var(--line); }
.pub-item { display: flex; gap: 24px; align-items: flex-start; padding: 28px 0; border-bottom: 1px solid var(--line); }
.pub-tag { flex-shrink: 0; font-size: .68rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 5px 12px; border-radius: 4px; margin-top: 4px; white-space: nowrap; }
.pub-tag--article { background: rgba(12,168,180,.12); color: var(--teal-deep); }
.pub-tag--chapter { background: rgba(139,46,6,.1); color: var(--terracotta-deep); }
.pub-tag--report { background: rgba(240,120,36,.12); color: var(--orange-deep); }
.pub-tag--course { background: rgba(43,33,24,.08); color: var(--ink-soft); }
.pub-tag--presentation { background: rgba(12,168,180,.12); color: var(--teal-deep); }
.pub-tag--poster { background: rgba(139,46,6,.1); color: var(--terracotta-deep); }
.pub-tag--award { background: rgba(180,140,20,.13); color: #8a6800; }
.founder-cred { font-size: .9rem; font-weight: 600; color: var(--orange); letter-spacing: .2px; margin: 8px 0 20px; }
.pub-body { flex: 1; }
.pub-body h3 { font-size: 1rem; margin-bottom: 4px; line-height: 1.45; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.pub-count { flex-shrink: 0; font-size: .72rem; font-weight: 700; color: var(--teal-deep); background: rgba(12,168,180,.12); border-radius: 20px; padding: 2px 10px; letter-spacing: .3px; }
.section-head--stat { display: flex; align-items: center; gap: 48px; max-width: 100%; margin-bottom: 52px; }
.section-head--stat .section-head__text { max-width: 64ch; }
.section-head--stat .section-head__text h2 { margin-bottom: 20px; }
.pres-stat { flex-shrink: 0; text-align: center; }
.pres-stat__number { display: block; font-size: 4.5rem; font-weight: 800; line-height: 1; color: var(--teal-deep); }
.pres-stat__label { display: block; font-size: .72rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-top: 6px; }
.pub-body h3 a { color: var(--ink); }
.pub-body h3 a:hover { color: var(--teal-deep); }
.pub-meta { font-size: .84rem; color: var(--teal-deep); font-weight: 600; margin-bottom: 6px; }
.pub-body p { font-size: .95rem; color: var(--ink-soft); margin: 0 0 8px; }
.pub-link { font-size: .82rem; font-weight: 700; color: var(--teal-deep); display: inline-flex; align-items: center; gap: 6px; letter-spacing: .3px; }
.pub-link:hover { color: var(--orange); }

/* ---- Who We Serve ---- */
.serve-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3px; margin-top: 48px; }
.serve-item { display: flex; gap: 22px; align-items: flex-start; padding: 32px 28px; background: var(--sand); transition: background .25s; }
.serve-item:hover { background: var(--teal-deep); color: #fff; }
.serve-item:hover h3, .serve-item:hover p { color: #fff; }
.serve-item__icon { font-size: 1.6rem; color: var(--teal-deep); flex-shrink: 0; margin-top: 3px; transition: color .25s; }
.serve-item:hover .serve-item__icon { color: rgba(255,255,255,.9); }
.serve-item h3 { margin-bottom: 6px; font-size: 1.05rem; }
.serve-item p { font-size: .95rem; color: var(--ink-soft); margin: 0; }

/* ---- How We Work steps ---- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 2px solid var(--line); margin-top: 52px; }
.step { padding: 36px 28px; border-right: 1px solid var(--line); }
.step:last-child { border-right: none; }
.step__num { font-family: var(--font-display); font-size: 4.5rem; color: var(--teal); opacity: .25; line-height: 1; display: block; margin-bottom: 12px; }
.step i { font-size: 1.3rem; color: var(--teal-deep); margin-bottom: 14px; display: block; }
.step h3 { margin-bottom: 10px; font-size: 1.05rem; }
.step p { font-size: .95rem; color: var(--ink-soft); margin: 0; }

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

.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 28px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease); display: flex; flex-direction: column; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.card__icon { width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center; font-size: 1.5rem; color: #fff; background: linear-gradient(135deg, var(--teal), var(--teal-deep)); margin-bottom: 20px; }
.card--alt .card__icon { background: linear-gradient(135deg, var(--orange), var(--orange-deep)); }
.card h3 { margin-bottom: 12px; }
.card p { font-size: .98rem; }
.card__link { display: inline-flex; align-items: center; gap: 7px; margin-top: auto; padding-top: 16px; font-weight: 700; font-size: .9rem; text-transform: uppercase; letter-spacing: .6px; }
.card__link i { transition: transform .2s var(--ease); }
.card__link:hover i { transform: translateX(4px); }

/* ---- Feature / split rows ---- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media img { border-radius: 18px; box-shadow: var(--shadow-md); object-fit: cover; width: 100%; aspect-ratio: 5 / 4; }
.split__body h2 { margin-bottom: 18px; }

/* ---- Selling points list ---- */
.points { list-style: none; display: grid; gap: 20px; margin-top: 8px; }
.points li { display: flex; gap: 16px; align-items: flex-start; }
.points i { flex: none; width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; background: var(--sand-deep); color: var(--teal-deep); font-size: .95rem; margin-top: 2px; }
.section--ink .points i { background: rgba(12,168,180,.18); color: var(--teal); }
.points strong { display: block; font-size: 1.05rem; color: inherit; }
.points span { font-size: .96rem; color: var(--ink-soft); }
.section--ink .points span { color: rgba(243,236,223,.8); }

/* ---- Page header ---- */
.page-header { background: var(--terracotta); border-bottom: none; padding: 80px 0 72px; position: relative; overflow: hidden; }
.page-header--gradient { background-color: var(--teal-deep); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='25' r='27' fill='none' stroke='%23fff' stroke-width='1' opacity='0.09'/%3E%3Ccircle cx='75' cy='50' r='27' fill='none' stroke='%23fff' stroke-width='1' opacity='0.09'/%3E%3Ccircle cx='50' cy='75' r='27' fill='none' stroke='%23fff' stroke-width='1' opacity='0.09'/%3E%3Ccircle cx='25' cy='50' r='27' fill='none' stroke='%23fff' stroke-width='1' opacity='0.09'/%3E%3Ccircle cx='50' cy='50' r='10' fill='none' stroke='%23fff' stroke-width='0.8' opacity='0.11'/%3E%3Cline x1='50' y1='40' x2='50' y2='42' stroke='%23fff' stroke-width='1.5' opacity='0.09'/%3E%3Cline x1='50' y1='58' x2='50' y2='60' stroke='%23fff' stroke-width='1.5' opacity='0.09'/%3E%3Cline x1='40' y1='50' x2='42' y2='50' stroke='%23fff' stroke-width='1.5' opacity='0.09'/%3E%3Cline x1='58' y1='50' x2='60' y2='50' stroke='%23fff' stroke-width='1.5' opacity='0.09'/%3E%3Cline x1='43' y1='43' x2='44.5' y2='44.5' stroke='%23fff' stroke-width='1' opacity='0.07'/%3E%3Cline x1='57' y1='57' x2='55.5' y2='55.5' stroke='%23fff' stroke-width='1' opacity='0.07'/%3E%3Cline x1='57' y1='43' x2='55.5' y2='44.5' stroke='%23fff' stroke-width='1' opacity='0.07'/%3E%3Cline x1='43' y1='57' x2='44.5' y2='55.5' stroke='%23fff' stroke-width='1' opacity='0.07'/%3E%3Ccircle cx='50' cy='50' r='3' fill='%23fff' opacity='0.11'/%3E%3Cpath d='M50,0 L52,3 L50,6 L48,3 Z' fill='%23fff' opacity='0.07'/%3E%3Cpath d='M100,50 L97,52 L94,50 L97,48 Z' fill='%23fff' opacity='0.07'/%3E%3Cpath d='M50,100 L52,97 L50,94 L48,97 Z' fill='%23fff' opacity='0.07'/%3E%3Cpath d='M0,50 L3,52 L6,50 L3,48 Z' fill='%23fff' opacity='0.07'/%3E%3C/svg%3E"); background-size: 100px 100px; background-repeat: repeat; }
.page-header__deco { position: absolute; inset: 0; background-position: center; background-size: cover; opacity: .28; mix-blend-mode: multiply; }
.page-header .container { position: relative; text-align: center; }
.page-header h1 { margin-bottom: 14px; color: #fff; }
.page-header .lead { color: rgba(255,255,255,.85); margin-left: auto; margin-right: auto; }
.page-header .eyebrow { color: rgba(255,255,255,.9); }
.crumbs { font-size: .85rem; color: rgba(255,255,255,.7); letter-spacing: .5px; }
.crumbs a { color: rgba(255,255,255,.9); }

/* ---- Detailed service block ---- */
.service-row { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; padding: 56px 0; border-bottom: 1px solid var(--line); }
.service-row:last-child { border-bottom: 0; }
.service-row--reverse .service-row__media { order: 2; }
.service-row__media img { border-radius: 16px; box-shadow: var(--shadow-md); aspect-ratio: 5 / 4; object-fit: cover; width: 100%; }
.service-row__num { font-family: var(--font-body); font-size: .78rem; color: var(--orange); letter-spacing: 3px; font-weight: 700; text-transform: uppercase; }
.service-row h2 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); margin: 6px 0 16px; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.tag { font-size: .78rem; font-weight: 600; letter-spacing: .5px; padding: 6px 14px; border-radius: 50px; background: var(--sand); color: var(--teal-deep); border: 1px solid var(--line); }

/* ---- Testimonials ---- */
.quote { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px; position: relative; }
.quote__mark { font-family: var(--font-display); font-size: 3.4rem; color: var(--teal); line-height: .6; opacity: .35; }
.quote p { font-size: 1.08rem; color: var(--ink); font-style: italic; margin: 6px 0 20px; }
.quote__who { display: flex; align-items: center; gap: 12px; }
.quote__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--terracotta); color: #fff; display: grid; place-items: center; font-weight: 700; font-family: var(--font-body); }
.quote__who strong { font-size: .98rem; }
.quote__who span { font-size: .82rem; color: var(--muted); display: block; }

/* ---- CTA band ---- */
.cta-band { background: linear-gradient(135deg, var(--terracotta-deep) 0%, var(--terracotta) 55%, var(--magenta) 100%); color: #fff; text-align: center; padding: 108px 24px; border-radius: var(--radius); position: relative; overflow: hidden; }
.cta-band h2 { color: #fff; margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 56ch; margin: 0 auto 30px; font-size: 1.1rem; }
.accepting-badge { display: inline-flex; align-items: center; gap: 8px; font-size: .78rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.95) !important; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3); border-radius: 50px; padding: 6px 16px; margin-bottom: 20px !important; font-size: .75rem !important; }
.accepting-badge i { color: #4ade80; font-size: .55rem; }

/* ---- Contact ---- */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: start; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 38px; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 7px; color: var(--ink); }
.field label .req { color: var(--orange); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--cream); transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0; border-color: var(--teal); background: #fff; box-shadow: 0 0 0 4px rgba(12,168,180,.12);
}
.field textarea { resize: vertical; min-height: 130px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 6px; }
.form-status { margin-top: 16px; padding: 14px 16px; border-radius: var(--radius-sm); font-size: .95rem; display: none; }
.form-status.ok { display: block; background: rgba(12,168,180,.12); color: var(--teal-deep); border: 1px solid rgba(12,168,180,.3); }
.form-status.err { display: block; background: rgba(240,120,36,.1); color: var(--orange-deep); border: 1px solid rgba(240,120,36,.3); }

.info-card { background: var(--sand); color: var(--ink); border-radius: var(--radius); padding: 36px; }
.info-card h3 { color: var(--ink); margin-bottom: 24px; }
.info-list { list-style: none; display: grid; gap: 22px; }
.info-list li { display: flex; gap: 16px; align-items: flex-start; }
.info-list i { flex: none; width: 42px; height: 42px; border-radius: 11px; background: rgba(12,168,180,.18); color: var(--teal); display: grid; place-items: center; font-size: 1.05rem; }
.info-list strong { display: block; font-size: .82rem; text-transform: uppercase; letter-spacing: 1.4px; color: var(--teal-deep); margin-bottom: 3px; }
.info-list span, .info-list a { color: var(--ink-soft); font-size: 1rem; }
.info-socials { display: flex; gap: 12px; margin-top: 30px; }
.info-socials a { width: 42px; height: 42px; border-radius: 11px; background: rgba(255,255,255,.08); color: var(--sand); display: grid; place-items: center; font-size: 1.05rem; transition: all .2s var(--ease); }
.info-socials a:hover { background: var(--orange); color: #fff; transform: translateY(-3px); }

/* ---- FAQ accordion ---- */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.faq__q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 22px 24px; font-family: var(--font-body); font-weight: 600; font-size: 1.05rem; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq__q { transition: background .2s var(--ease); }
.faq__q:hover { background: var(--sand); }
.faq__q i { color: #fff; background: var(--orange); border-radius: 50%; width: 30px; height: 30px; display: grid; place-items: center; font-size: .72rem; flex: none; transition: transform .3s var(--ease), background .2s; flex-shrink: 0; }
.faq__item.open .faq__q { background: var(--sand); }
.faq__item.open .faq__q i { transform: rotate(45deg); background: var(--teal-deep); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq__a p { padding: 0 24px 22px; font-size: .98rem; }

/* ---- Footer ---- */
.footer { background: var(--teal-deep); color: var(--sand); padding: 40px 0 20px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.footer__brand img { height: 52px; margin-bottom: 18px; filter: brightness(0) invert(1); }
.footer__brand p { color: rgba(243,236,223,.7); font-size: .95rem; max-width: 38ch; }
.footer h4 { font-family: var(--font-body); font-size: .82rem; text-transform: uppercase; letter-spacing: 2px; color: var(--teal); margin-bottom: 18px; }
.footer ul { list-style: none; display: grid; gap: 11px; }
.footer a { color: rgba(243,236,223,.82); font-size: .96rem; }
.footer a:hover { color: var(--orange); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .85rem; color: rgba(243,236,223,.6); }
.footer__socials { display: flex; gap: 14px; }
.footer__socials a { font-size: 1.1rem; }

/* ---- Scroll reveal ---- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }

/* ---- Responsive ---- */
@media (max-width: 940px) {
  .hero__inner { grid-template-columns: 1fr; gap: 44px; padding-top: 64px; text-align: center; }
  .hero__actions { justify-content: center; }
  .hero__desc { margin-left: auto; margin-right: auto; }
  .hero__media { max-width: 460px; margin: 0 auto; }
  .split, .contact-grid, .service-row, .service-row--reverse .service-row__media { grid-template-columns: 1fr; }
  .split--reverse .split__media, .service-row--reverse .service-row__media { order: 0; }
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .section { padding: 72px 0; }
  .topbar__contact { display: none; }
  .nav__links { position: fixed; inset: 0 0 0 auto; width: min(82vw, 320px); background: var(--cream); flex-direction: column; align-items: stretch; padding: 90px 24px 40px; gap: 6px; transform: translateX(100%); transition: transform .32s var(--ease); box-shadow: var(--shadow-md); z-index: 99; }
  .nav__links.open { transform: none; }
  .nav__links a { padding: 14px 16px; font-size: 1.05rem; }
  .nav__cta { margin: 14px 0 0; }
  .nav__toggle { display: block; z-index: 101; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__badge { left: 0; }
  .pricing-row { grid-template-columns: 1fr; }
  .pricing-row--head { display: none; }
  .pricing-row > div { border-right: none; border-bottom: 1px solid var(--line); }
  .pricing-row > div:last-child { border-bottom: none; }
}

/* ============================================================
   Southwest / Hacienda elements
   ============================================================ */

/* Talavera pottery tile divider */
.talavera {
  height: 40px;
  background-color: var(--terracotta);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Crect width='40' height='40' fill='%23C1440E'/%3E%3Cpath d='M20,4 L36,20 L20,36 L4,20 Z' fill='none' stroke='%23fff' stroke-width='1.5' opacity='0.45'/%3E%3Cpath d='M20,12 L28,20 L20,28 L12,20 Z' fill='none' stroke='%23fff' stroke-width='1' opacity='0.35'/%3E%3Ccircle cx='20' cy='20' r='2.5' fill='%23fff' opacity='0.5'/%3E%3Ccircle cx='0' cy='0' r='2' fill='%23fff' opacity='0.2'/%3E%3Ccircle cx='40' cy='0' r='2' fill='%23fff' opacity='0.2'/%3E%3Ccircle cx='0' cy='40' r='2' fill='%23fff' opacity='0.2'/%3E%3Ccircle cx='40' cy='40' r='2' fill='%23fff' opacity='0.2'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 40px 40px;
}

/* Terracotta solid section */
.section--terra { background: var(--terracotta); color: #fff; }
.section--terra h2, .section--terra h3 { color: #fff; }
.section--terra p { color: rgba(255,255,255,.85); }
.section--terra .eyebrow { color: #fff; }

/* Talavera tile full-section background */
.section--talavera-full {
  background-color: var(--terracotta);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Crect width='40' height='40' fill='%23C1440E'/%3E%3Cpath d='M20,4 L36,20 L20,36 L4,20 Z' fill='none' stroke='%23fff' stroke-width='1.5' opacity='0.45'/%3E%3Cpath d='M20,12 L28,20 L20,28 L12,20 Z' fill='none' stroke='%23fff' stroke-width='1' opacity='0.35'/%3E%3Ccircle cx='20' cy='20' r='2.5' fill='%23fff' opacity='0.5'/%3E%3Ccircle cx='0' cy='0' r='2' fill='%23fff' opacity='0.2'/%3E%3Ccircle cx='40' cy='0' r='2' fill='%23fff' opacity='0.2'/%3E%3Ccircle cx='0' cy='40' r='2' fill='%23fff' opacity='0.2'/%3E%3Ccircle cx='40' cy='40' r='2' fill='%23fff' opacity='0.2'/%3E%3C/svg%3E");
  background-size: 40px 40px;
  background-repeat: repeat;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.section--talavera-full::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(120, 35, 4, 0.72);
  z-index: 0;
}
.section--talavera-full .container { position: relative; z-index: 1; }
.section--talavera-full h2, .section--talavera-full h3 { color: #fff; }
.section--talavera-full p { color: rgba(243,236,223,.85); }
.section--talavera-full .eyebrow { color: var(--orange); }
.section--talavera-full .split__media img { box-shadow: 0 12px 40px rgba(0,0,0,.35); }

/* Hacienda texture section — set background-image inline on the element */
.section--hacienda { position: relative; overflow: hidden; color: #fff; }
.section--hacienda::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(139, 46, 6, 0.88);
  z-index: 0;
}
.section--hacienda .container { position: relative; z-index: 1; }
.section--hacienda h2, .section--hacienda h3 { color: #fff; }
.section--hacienda p { color: rgba(243,236,223,.85); }
.section--hacienda .lead { color: rgba(243,236,223,.85); }
.section--hacienda .eyebrow { color: var(--teal); }
.section--hacienda .points i { background: rgba(12,168,180,.18); color: var(--teal); }
.section--hacienda .points strong { color: #fff; }
.section--hacienda .points span { color: rgba(243,236,223,.8); }
.section--hacienda .btn--ghost { border-color: rgba(255,255,255,.6); color: #fff; }
.section--hacienda .btn--ghost:hover { background: rgba(255,255,255,.15); border-color: #fff; }
.section--hacienda .card { background: rgba(255,255,255,.97); border-color: rgba(255,255,255,.15); }
.section--hacienda .card h3 { color: var(--ink); }
.section--hacienda .card p { color: var(--ink-soft); }
.section--hacienda .card__icon { /* inherits from .card--alt or default — no override needed */ }
.section--hacienda-bare::before { background: rgba(255,255,255,0.28); }

.section--hacienda-sand::before { background: rgba(243, 236, 223, 0.72); }
.section--hacienda-sand { color: var(--ink); }
.section--hacienda-sand h2, .section--hacienda-sand h3 { color: var(--ink); }
.section--hacienda-sand p { color: var(--ink-soft); }
.section--hacienda-sand .eyebrow { color: var(--teal-deep); }
.section--hacienda-sand .points i { background: rgba(12,168,180,.15); color: var(--teal-deep); }
.section--hacienda-sand .points strong { color: var(--ink); }
.section--hacienda-sand .points span { color: var(--ink-soft); }

/* Mission arch — rounds the top of portrait images */
.arch-top img { border-radius: 100px 100px 12px 12px; }

/* Collapsible pub items */
.pub-item h3 { cursor: pointer; }
.pub-item h3:hover { color: var(--teal-deep); }
.pub-item h3 .pub-chevron {
  margin-left: auto;
  flex-shrink: 0;
  color: #fff;
  background: var(--teal-deep);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  font-size: .9rem;
  transition: transform .3s var(--ease), background .2s;
}
.pub-item h3:hover .pub-chevron { background: var(--orange); }
.pub-item.open h3 .pub-chevron { transform: rotate(180deg); background: var(--orange); }
.pub-item .pub-collapse { overflow: hidden; max-height: 0; transition: max-height .35s ease; }

/* Services page */
.discovery-cta { font-size: .87rem; color: rgba(255,255,255,.85); margin-top: 18px; }
.discovery-cta strong { color: #fff; }
.discovery-cta a { color: #fff; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; margin-left: 4px; }
.discovery-cta i { color: var(--orange); margin-right: 6px; }
.service-proof-link { display: inline-flex; align-items: center; gap: 7px; font-size: .78rem; font-weight: 700; color: var(--teal-deep); letter-spacing: .3px; margin-top: 12px; text-decoration: none; border-bottom: 1px solid var(--teal-deep); padding-bottom: 1px; }
.service-proof-link:hover { color: var(--teal); border-color: var(--teal); }
.service-proof-link i { font-size: .7rem; }

/* ============================================================
   LUXURY & CULTURE ELEVATION
   ============================================================ */

/* Service row — architectural oversized number */
.service-row__num { font-family: var(--font-display); font-size: 5.5rem; font-weight: 800; line-height: 1; color: var(--orange); opacity: .13; display: block; margin-bottom: -20px; letter-spacing: -3px; text-transform: none; }

/* Service image — teal/orange shimmer on hover */
.service-row__media { position: relative; overflow: hidden; }
.service-row__media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(12,168,180,.22), rgba(240,120,36,.14)); opacity: 0; transition: opacity .4s; border-radius: 16px; pointer-events: none; }
.service-row__media:hover::after { opacity: 1; }

/* Espresso dark section — white cards floating on near-black */
.section--espresso { background: var(--ink); }
.section--espresso h2, .section--espresso h3 { color: #fff; }
.section--espresso p { color: rgba(243,236,223,.82); }
.section--espresso .lead { color: rgba(243,236,223,.82); }
.section--espresso .eyebrow { color: var(--teal); }
.section--espresso .card { background: rgba(255,255,255,.97); border-color: rgba(255,255,255,.1); }
.section--espresso .card h3 { color: var(--ink); }
.section--espresso .card p { color: var(--ink-soft); }
.section--espresso .card__link { color: var(--teal-deep); }

/* Cultural pull-quote — Spanish language accent */
.cultura-accent { font-family: var(--font-display); font-style: italic; font-size: 1.05rem; color: rgba(243,236,223,.35); text-align: center; margin: -12px 0 44px; letter-spacing: .4px; }

/* Pricing ornament divider */
.pricing-ornament { text-align: center; margin: 36px 0 24px; color: var(--orange); font-size: .82rem; letter-spacing: 14px; opacity: .5; }

/* Differentiator strip */
.differ-strip { background: var(--sand); border-bottom: 1px solid var(--line); padding: 13px 0; }
.differ-strip__inner { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; display: flex; flex-wrap: wrap; gap: 10px 28px; align-items: center; justify-content: center; }
.differ-strip__inner span { font-size: .72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--ink-soft); display: flex; align-items: center; gap: 7px; }
.differ-strip__inner span i { color: var(--orange); }

/* Awards recognition strip */
.awards-strip { background: var(--cream); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 15px var(--pad); display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px 20px; text-align: center; }
.awards-strip span { font-size: .74rem; font-weight: 600; color: var(--ink-soft); letter-spacing: .3px; display: flex; align-items: center; gap: 7px; }
.awards-strip span i { color: #8a6800; font-size: .78rem; }
.awards-strip__div { color: var(--muted); font-size: 1rem; line-height: 1; }

/* Education section */
.edu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-top: 8px; }
.edu-item { display: flex; align-items: flex-start; gap: 14px; padding: 22px 20px; background: #fff; border-radius: 12px; border: 1px solid var(--line); }
.edu-degree { flex-shrink: 0; background: var(--teal-deep); color: #fff; padding: 6px 10px; border-radius: 6px; font-size: .68rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; line-height: 1.2; text-align: center; min-width: 36px; }
.edu-item h4 { font-size: .92rem; font-weight: 700; color: var(--ink); margin: 0 0 4px; line-height: 1.35; }
.edu-item p { font-size: .8rem; color: var(--muted); margin: 0; line-height: 1.4; }
