:root {
  --syn-brand: #234b63;
  --syn-brand-dark: #122c3b;
  --syn-brand-mid: #3a6d82;
  --syn-brand-soft: #b8c5cc;
  --syn-bg: #f7f9fa;
  --syn-bg-tint: #eef3f5;
  --syn-text: #122c3b;
  --syn-muted: #64727c;
  --syn-line: rgba(35, 75, 99, .11);
  --syn-white: #fff;
  --syn-radius: 2rem;
  --syn-shadow: 0 28px 70px -42px rgba(18, 44, 59, .48);
  --syn-ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--syn-text);
  background: var(--syn-bg);
  font-family: Inter, "Avenir Next", Avenir, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.admin-bar .syn-header { top: 32px; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
::selection { color: #fff; background: var(--syn-brand); }
.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.syn-skip-link {
  position: fixed; z-index: 9999; top: 12px; left: 12px;
  transform: translateY(-180%); padding: .8rem 1rem; border-radius: 1rem;
  color: #fff; background: var(--syn-brand);
}
.syn-skip-link:focus { transform: translateY(0); }
.syn-container { width: min(100% - 3rem, 1440px); margin-inline: auto; }
.syn-narrow { max-width: 880px; }
.syn-section { padding: clamp(5rem, 9vw, 8.5rem) 0; }
.syn-section--tinted { border-block: 1px solid var(--syn-line); background: rgba(238, 243, 245, .72); }
.syn-eyebrow {
  margin: 0;
  color: var(--syn-brand-mid);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.syn-icon { display: inline-grid; place-items: center; line-height: 1; }
.syn-glass-card {
  border: 1px solid rgba(255, 255, 255, .88);
  background: rgba(255, 255, 255, .58);
  box-shadow: var(--syn-shadow);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}
.syn-mesh-bg {
  position: relative;
  background:
    radial-gradient(circle at 78% 18%, rgba(159, 195, 209, .4), transparent 31%),
    radial-gradient(circle at 12% 70%, rgba(227, 237, 241, .72), transparent 36%),
    linear-gradient(145deg, #fbfcfc 0%, #f3f7f8 52%, #f8fafb 100%);
}
.syn-mesh-bg::after {
  content: "";
  position: absolute; inset: 0; pointer-events: none; opacity: .1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* Header */
.syn-header {
  position: fixed; z-index: 1000; inset: 0 0 auto;
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.syn-header.is-scrolled {
  border-color: rgba(255, 255, 255, .8);
  background: rgba(248, 250, 251, .82);
  box-shadow: 0 10px 34px -28px rgba(18, 44, 59, .5);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}
.syn-header__inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; min-height: 96px; gap: 1.5rem; }
.syn-brand { grid-column: 2; grid-row: 1; justify-self: center; }
.syn-brand__link, .custom-logo-link { display: inline-flex; align-items: center; }
.syn-brand__image, .custom-logo { width: auto; height: 62px; object-fit: contain; }
.syn-nav { grid-column: 1; grid-row: 1; justify-self: start; }
.syn-nav__list, .syn-nav .menu {
  display: flex; align-items: center; gap: .25rem; margin: 0; padding: .4rem;
  list-style: none; border: 1px solid rgba(255, 255, 255, .82); border-radius: 999px;
  background: rgba(255, 255, 255, .58); box-shadow: var(--syn-shadow); backdrop-filter: blur(22px);
}
.syn-nav__list a, .syn-nav .menu a { display: block; padding: .62rem 1.35rem; border-radius: 999px; color: #4f5e68; font-size: .9rem; font-weight: 600; transition: .25s ease; }
.syn-nav__list a:hover, .syn-nav .menu a:hover, .syn-nav .current-menu-item > a, .syn-nav .current_page_item > a {
  color: var(--syn-text); background: rgba(255, 255, 255, .9); box-shadow: 0 5px 14px -12px rgba(18, 44, 59, .5);
}
.syn-header__cta { grid-column: 3; grid-row: 1; justify-self: end; }
.syn-menu-toggle {
  display: none; justify-self: end; width: 48px; height: 48px; padding: 0;
  place-content: center; gap: 4px; border: 1px solid rgba(255, 255, 255, .85); border-radius: 50%;
  color: var(--syn-text); background: rgba(255, 255, 255, .72); cursor: pointer; backdrop-filter: blur(16px);
}
.syn-menu-toggle > span:not(.screen-reader-text) { display: block; width: 18px; height: 1.5px; background: currentColor; transition: .25s ease; }
.syn-mobile-nav {
  position: absolute; inset: 80px 1rem auto; padding: 1rem; border: 1px solid rgba(255,255,255,.9); border-radius: 1.8rem;
  background: rgba(255,255,255,.92); box-shadow: var(--syn-shadow); backdrop-filter: blur(22px);
}
.syn-mobile-nav__list { margin: 0 0 .5rem; padding: 0; list-style: none; }
.syn-mobile-nav__list a { display: block; padding: .85rem 1rem; border-radius: 1rem; font-weight: 600; }
.syn-mobile-nav__list a:hover { background: var(--syn-bg-tint); }
.syn-mobile-nav .syn-button { width: 100%; }

/* Buttons */
.syn-button {
  position: relative; display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: .7rem;
  padding: .8rem 1.55rem; overflow: hidden; border: 1px solid transparent; border-radius: 999px;
  color: #fff; background: var(--syn-brand); box-shadow: 0 18px 34px -24px rgba(35, 75, 99, .95);
  font-size: .94rem; font-weight: 700; line-height: 1; cursor: pointer;
  transition: transform .3s var(--syn-ease), background .3s ease, box-shadow .3s ease;
}
.syn-button:hover { color: #fff; background: #2b5c77; transform: translateY(-2px); box-shadow: 0 24px 40px -24px rgba(35, 75, 99, .85); }
.syn-button--small { min-height: 44px; padding-inline: 1.3rem; font-size: .82rem; }
.syn-button--light { border-color: rgba(255,255,255,.86); color: var(--syn-text); background: rgba(255,255,255,.68); backdrop-filter: blur(18px); }
.syn-button--light:hover { color: var(--syn-text); background: #fff; }
.syn-button--outline { border-color: rgba(35,75,99,.18); color: var(--syn-brand); background: transparent; box-shadow: none; }
.syn-button--outline:hover { color: var(--syn-brand); background: rgba(255,255,255,.8); }
.syn-button--white { color: var(--syn-text); background: #fff; }
.syn-button--white:hover { color: var(--syn-text); background: #f2f7f9; }
.syn-button-row { display: flex; flex-wrap: wrap; gap: .75rem; }

/* Hero */
.syn-hero { min-height: 950px; display: flex; align-items: center; padding: 8.5rem 0 5rem; overflow: hidden; }
.syn-hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: clamp(3rem, 7vw, 7rem); }
.syn-hero__orb { position: absolute; border-radius: 50%; filter: blur(100px); pointer-events: none; }
.syn-hero__orb--one { top: 12%; right: -8%; width: 34rem; height: 34rem; background: rgba(159,195,209,.28); }
.syn-hero__orb--two { bottom: -18%; left: -8%; width: 30rem; height: 30rem; background: rgba(200,220,228,.35); }
.syn-pill { display: inline-flex; align-items: center; gap: .5rem; margin: 0 0 2rem; padding: .6rem 1rem; border: 1px solid rgba(255,255,255,.88); border-radius: 999px; color: var(--syn-brand); background: rgba(255,255,255,.54); box-shadow: var(--syn-shadow); font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; backdrop-filter: blur(18px); }
.syn-hero h1 { max-width: 780px; margin: 0; font-size: clamp(4rem, 7.1vw, 7.45rem); font-weight: 500; letter-spacing: -.067em; line-height: .9; text-wrap: balance; }
.syn-hero h1 span { color: transparent; background: linear-gradient(120deg, var(--syn-brand), #70a5b9 48%, var(--syn-brand)); background-size: 200%; -webkit-background-clip: text; background-clip: text; animation: synGradient 8s ease-in-out infinite; }
.syn-hero__lead { margin: 2.4rem 0 2rem; color: var(--syn-muted); font-size: clamp(1.05rem, 1.7vw, 1.3rem); }
.syn-hero__trust { display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; margin-top: 2rem; color: #687780; font-size: .86rem; }
.syn-hero__trust .syn-icon { width: 18px; height: 18px; margin-right: .3rem; border: 1px solid #76a0b2; border-radius: 50%; color: var(--syn-brand-mid); font-size: .68rem; }
.syn-hero-property { position: relative; max-width: 620px; justify-self: end; }
.syn-hero-property__glow { position: absolute; inset: -2.5rem; border-radius: 4rem; background: linear-gradient(145deg, rgba(159,195,209,.44), rgba(255,255,255,.18), rgba(202,233,239,.24)); filter: blur(34px); }
.syn-hero-property__frame { position: relative; padding: .75rem; overflow: visible; border: 1px solid rgba(255,255,255,.8); border-radius: 2.6rem; background: rgba(255,255,255,.35); box-shadow: 0 48px 100px -50px rgba(18,44,59,.58); backdrop-filter: blur(22px); }
.syn-hero-property__frame > img { width: 100%; aspect-ratio: 4/4.5; border-radius: 2rem; object-fit: cover; }
.syn-hero-property__frame::after { content: ""; position: absolute; inset: 55% .75rem .75rem; border-radius: 0 0 2rem 2rem; background: linear-gradient(to top, rgba(18,44,59,.62), transparent); pointer-events: none; }
.syn-hero-property__badge { position: absolute; z-index: 2; top: 4.2rem; left: -1rem; display: flex; flex-direction: column; padding: .9rem 1rem; border: 1px solid rgba(255,255,255,.86); border-radius: 1rem; background: rgba(255,255,255,.78); box-shadow: var(--syn-shadow); backdrop-filter: blur(18px); animation: synFloat 5s ease-in-out infinite; }
.syn-hero-property__badge small, .syn-hero-property__info small { color: var(--syn-brand-mid); font-size: .62rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.syn-hero-property__badge strong { font-size: .8rem; }
.syn-hero-property__info { position: absolute; z-index: 3; inset: auto 2.4rem 2.4rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.4rem 1.5rem; border: 1px solid rgba(255,255,255,.25); border-radius: 1.6rem; color: #fff; background: rgba(18,44,59,.34); backdrop-filter: blur(18px); }
.syn-hero-property__info small { display: block; color: rgba(255,255,255,.66); }
.syn-hero-property__info strong { display: block; margin-top: .4rem; font-size: 1.2rem; font-weight: 600; }
.syn-hero-property__info > a { display: grid; flex: 0 0 auto; width: 50px; height: 50px; place-items: center; border-radius: 50%; color: var(--syn-text); background: #fff; transition: transform .25s ease; }
.syn-hero-property__info > a:hover { transform: scale(1.06); }

/* Sections */
.syn-section-heading { max-width: 800px; }
.syn-section-heading h2, .syn-process h2, .syn-final-cta h2, .syn-page-hero h1, .syn-contact-page h1 {
  margin: 1rem 0 0; font-size: clamp(2.8rem, 5vw, 5rem); font-weight: 500; letter-spacing: -.05em; line-height: 1.02; text-wrap: balance;
  overflow-wrap: anywhere;
}
.syn-section-heading > p:last-child, .syn-process__intro > p, .syn-page-hero p, .syn-contact-page__intro > p { color: var(--syn-muted); font-size: 1.12rem; line-height: 1.8; }
.syn-section-heading--center { margin-inline: auto; text-align: center; }
.syn-section-heading--split { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: 2rem; }
.syn-section-heading--split > div { max-width: 800px; }
.syn-property-embed { margin-top: 3.3rem; }
.syn-plugin-notice { padding: 2rem; border-radius: var(--syn-radius); text-align: center; }
.syn-service-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.25rem; margin-top: 3.5rem; }
.syn-service-card { position: relative; grid-column: span 2; min-height: 390px; padding: 2.3rem; overflow: hidden; border-radius: var(--syn-radius); transition: transform .4s var(--syn-ease), border-color .4s ease; }
.syn-service-card:nth-child(n+4) { grid-column: span 3; }
.syn-service-card:hover { border-color: rgba(112,165,185,.5); transform: translateY(-7px); }
.syn-service-card__icon { display: grid; width: 52px; height: 52px; place-items: center; margin-bottom: 2rem; border: 1px solid var(--syn-line); border-radius: 1rem; color: var(--syn-brand); background: var(--syn-bg-tint); font-size: 1.3rem; transition: .35s ease; }
.syn-service-card:hover .syn-service-card__icon { color: #fff; background: var(--syn-brand); transform: translateY(-3px); }
.syn-service-card h3 { margin: .7rem 0 1rem; font-size: 1.6rem; font-weight: 600; letter-spacing: -.035em; overflow-wrap: anywhere; hyphens: auto; }
.syn-service-card > p:not(.syn-eyebrow) { color: var(--syn-muted); }
.syn-service-card > strong { position: absolute; right: 2.3rem; bottom: 2.3rem; left: 2.3rem; color: var(--syn-brand); font-size: .82rem; }
.syn-process { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.syn-process__intro { position: sticky; top: 130px; }
.syn-contact-chip { display: flex; align-items: center; gap: 1rem; margin-top: 2rem; padding: 1rem; border-radius: 1.4rem; }
.syn-contact-chip > span { display: grid; width: 46px; height: 46px; place-items: center; border-radius: 1rem; color: #fff; background: var(--syn-brand); }
.syn-contact-chip strong, .syn-contact-chip small { display: block; }
.syn-contact-chip small { color: var(--syn-muted); }
.syn-timeline { position: relative; display: grid; gap: 1rem; }
.syn-timeline::before { content: ""; position: absolute; z-index: -1; top: 2rem; bottom: 2rem; left: 30px; width: 1px; background: linear-gradient(var(--syn-brand-soft), transparent); }
.syn-timeline__item { display: grid; grid-template-columns: 64px 1fr; align-items: center; gap: 1.3rem; padding: 2rem; border-radius: var(--syn-radius); transition: .35s ease; }
.syn-timeline__item:hover { border-color: rgba(112,165,185,.4); background: rgba(255,255,255,.82); transform: translateX(5px); }
.syn-timeline__item > span { display: grid; width: 60px; height: 60px; place-items: center; border: 7px solid var(--syn-bg); border-radius: 50%; color: #fff; background: var(--syn-brand); font-size: .75rem; font-weight: 700; }
.syn-timeline__item h3 { margin: 0; font-size: 1.5rem; font-weight: 600; letter-spacing: -.03em; }
.syn-timeline__item p { margin: .4rem 0 0; color: var(--syn-muted); }
.syn-testimonials { max-width: 1050px; display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin: 3rem auto 0; }
.syn-testimonials figure { margin: 0; padding: 2.3rem; border-radius: var(--syn-radius); }
.syn-testimonials figure > span { color: #70a5b9; font: 400 3rem Georgia, serif; line-height: .7; }
.syn-testimonials blockquote { margin: 1.6rem 0 2rem; font-size: 1.2rem; line-height: 1.7; }
.syn-testimonials figcaption { padding-top: 1.1rem; border-top: 1px solid var(--syn-line); }
.syn-testimonials figcaption strong, .syn-testimonials figcaption small { display: block; }
.syn-testimonials figcaption small { margin-top: .3rem; color: var(--syn-muted); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; }
.syn-cta-wrap { padding: 5rem 0 7rem; }
.syn-final-cta { position: relative; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 3rem; padding: clamp(3rem, 7vw, 6.5rem); overflow: hidden; border: 1px solid rgba(255,255,255,.1); border-radius: 2.7rem; color: #fff; background: var(--syn-brand-dark); box-shadow: var(--syn-shadow); }
.syn-final-cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 78% 18%, rgba(112,165,185,.45), transparent 30%), radial-gradient(circle at 8% 100%, rgba(76,136,159,.32), transparent 35%); }
.syn-final-cta > * { position: relative; z-index: 1; min-width: 0; }
.syn-final-cta .syn-eyebrow { color: #9fc3d1; }
.syn-final-cta h2 { max-width: 950px; }
.syn-final-cta p:not(.syn-eyebrow) { max-width: 640px; margin: 1.5rem 0 0; color: rgba(255,255,255,.64); font-size: 1.1rem; }

/* Generic pages and contact */
.syn-page-hero { padding: 11rem 0 5rem; overflow: hidden; }
.syn-page-hero > .syn-container { position: relative; z-index: 1; }
.syn-entry-content { font-size: 1.05rem; }
.syn-entry-content > * { max-width: 100%; }
.syn-entry-content h2, .syn-entry-content h3 { letter-spacing: -.03em; }
.syn-entry-content a { color: var(--syn-brand-mid); text-decoration: underline; }
.syn-post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.syn-post-card { overflow: hidden; border-radius: var(--syn-radius); }
.syn-post-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.syn-post-card__body { padding: 1.8rem; }
.syn-post-card h2 { margin: .8rem 0; font-size: 1.5rem; line-height: 1.25; }
.syn-pagination { grid-column: 1/-1; }
.syn-not-found { min-height: 82vh; display: grid; place-items: center; padding-top: 7rem; text-align: center; }
.syn-not-found h1 { margin: 1rem 0; font-size: clamp(3rem, 6vw, 5.5rem); letter-spacing: -.055em; line-height: 1; }
.syn-not-found .syn-button { margin-top: 1.5rem; }
.syn-contact-page { min-height: 100vh; padding: 10.5rem 0 7rem; overflow: hidden; }
.syn-contact-page__grid { position: relative; z-index: 1; display: grid; grid-template-columns: .85fr 1.15fr; align-items: start; gap: clamp(3rem, 7vw, 7rem); }
.syn-contact-list { display: grid; gap: .8rem; margin-top: 2.3rem; }
.syn-contact-list > * { display: flex; align-items: center; gap: 1rem; padding: 1rem; border-radius: 1.25rem; }
.syn-contact-list > * > span { display: grid; width: 46px; height: 46px; place-items: center; border-radius: 1rem; color: var(--syn-brand); background: var(--syn-bg-tint); }
.syn-contact-list small, .syn-contact-list strong { display: block; }
.syn-contact-list small { color: #91a0a9; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; }
.syn-contact-form { padding: clamp(2rem, 4vw, 3.4rem); border-radius: 2.4rem; }
.syn-contact-form h2 { margin: .8rem 0 2rem; font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 500; letter-spacing: -.045em; }
.syn-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.syn-contact-form label { display: block; margin-bottom: 1rem; color: var(--syn-text); font-size: .88rem; font-weight: 600; }
.syn-contact-form label > span { display: block; margin-bottom: .45rem; }
.syn-contact-form input:not([type="checkbox"]), .syn-contact-form select, .syn-contact-form textarea {
  width: 100%; min-height: 52px; padding: .8rem 1rem; border: 1px solid var(--syn-line); border-radius: 1rem; outline: none; color: var(--syn-text); background: rgba(255,255,255,.72); transition: .25s ease;
}
.syn-contact-form textarea { min-height: 150px; resize: vertical; }
.syn-contact-form input:focus, .syn-contact-form select:focus, .syn-contact-form textarea:focus { border-color: #70a5b9; box-shadow: 0 0 0 4px rgba(159,195,209,.22); background: #fff; }
.syn-contact-form .syn-checkbox { display: flex; align-items: flex-start; gap: .7rem; color: var(--syn-muted); font-size: .75rem; font-weight: 400; }
.syn-contact-form .syn-checkbox input { width: 17px; height: 17px; margin-top: .15rem; accent-color: var(--syn-brand); }
.syn-contact-form .syn-checkbox span { margin: 0; }
.syn-contact-form .syn-button { width: 100%; }
.syn-form-message { margin-bottom: 1.5rem; padding: 1rem 1.2rem; border-radius: 1rem; }
.syn-form-message strong, .syn-form-message p { margin: 0; }
.syn-form-message--success { color: #1f6342; background: #e8f5ee; }
.syn-form-message--error { color: #8a3434; background: #faeaea; }

/* Footer */
.syn-footer { padding: 5rem 0 2rem; border-top: 1px solid var(--syn-line); background: var(--syn-bg-tint); }
.syn-footer__grid { display: grid; grid-template-columns: 1.3fr .7fr .9fr; gap: 4rem; }
.syn-footer__brand .syn-brand__image, .syn-footer__brand .custom-logo { height: 70px; }
.syn-footer__brand p { max-width: 430px; color: var(--syn-muted); }
.syn-footer__heading { margin: 0 0 1.2rem; color: var(--syn-brand-mid); font-size: .72rem; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.syn-footer__links, .syn-footer__links .syn-nav__list, .syn-footer .syn-nav__list { display: grid; gap: .5rem; margin: 0; padding: 0; border: 0; list-style: none; background: none; box-shadow: none; }
.syn-footer__links a { color: var(--syn-muted); font-size: .9rem; }
.syn-footer__contact { display: grid; gap: .7rem; color: var(--syn-muted); font-size: .9rem; }
.syn-footer__contact > * { display: flex; align-items: center; gap: .6rem; }
.syn-footer__bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 4rem; padding-top: 1.4rem; border-top: 1px solid var(--syn-line); color: #7c8a93; font-size: .75rem; }
.syn-footer__bottom p { margin: 0; }
.syn-footer__bottom div { display: flex; gap: 1.2rem; }

/* Reveal motion */
.syn-reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s var(--syn-ease) var(--syn-delay, 0s), transform .75s var(--syn-ease) var(--syn-delay, 0s); }
.syn-reveal.is-visible { opacity: 1; transform: translateY(0); }
@keyframes synGradient { 0%,100% { background-position: 0 50%; } 50% { background-position: 100% 50%; } }
@keyframes synFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

@media (max-width: 1100px) {
  .syn-header__inner { grid-template-columns: 1fr auto 1fr; min-height: 82px; }
  .syn-nav, .syn-header__cta { display: none; }
  .syn-menu-toggle { grid-column: 1; grid-row: 1; display: grid; justify-self: start; }
  .syn-brand { grid-column: 2; grid-row: 1; justify-self: center; }
  .syn-brand__image, .custom-logo { height: 52px; }
  .syn-hero { min-height: 0; padding-top: 9rem; }
  .syn-hero__grid, .syn-contact-page__grid { grid-template-columns: 1fr; }
  .syn-hero-property { justify-self: center; }
  .syn-process { grid-template-columns: 1fr; }
  .syn-process__intro { position: static; }
  .syn-final-cta { grid-template-columns: 1fr; }
  .syn-service-grid { grid-template-columns: repeat(2, 1fr); }
  .syn-service-card, .syn-service-card:nth-child(n+4) { grid-column: auto; }
  .syn-service-card:last-child { grid-column: 1 / -1; }
}

@media (max-width: 782px) {
  body.admin-bar .syn-header { top: 46px; }
  .syn-container { width: min(100% - 2rem, 1440px); }
  .syn-section { padding: 5rem 0; }
  .syn-hero { padding-top: 7.5rem; }
  .syn-hero h1 { font-size: clamp(3.45rem, 15vw, 5.4rem); }
  .syn-service-grid, .syn-testimonials, .syn-post-grid { grid-template-columns: 1fr; }
  .syn-service-card, .syn-service-card:nth-child(n+4), .syn-service-card:last-child { grid-column: auto; }
  .syn-section-heading--split { display: grid; }
  .syn-hero-property__badge { left: .5rem; }
  .syn-footer__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .syn-footer__bottom { flex-direction: column; }
}

@media (max-width: 560px) {
  .syn-hero { padding-bottom: 4rem; }
  .syn-hero h1 { font-size: 3.45rem; line-height: .93; }
  .syn-button-row { display: grid; }
  .syn-button-row .syn-button { width: 100%; }
  .syn-hero__trust { justify-content: space-between; gap: .8rem; font-size: .72rem; }
  .syn-hero-property__info { inset: auto 1.4rem 1.4rem; padding: 1rem; }
  .syn-hero-property__info strong { font-size: 1rem; }
  .syn-hero-property__badge { top: 2rem; }
  .syn-service-card { min-height: 350px; padding: 1.7rem; }
  .syn-service-card > strong { right: 1.7rem; bottom: 1.7rem; left: 1.7rem; }
  .syn-timeline__item { grid-template-columns: 52px 1fr; gap: .8rem; padding: 1.3rem; }
  .syn-timeline__item > span { width: 52px; height: 52px; }
  .syn-timeline::before { left: 26px; }
  .syn-final-cta { padding: 2.3rem 1.5rem; border-radius: 2rem; }
  .syn-form-grid { grid-template-columns: 1fr; gap: 0; }
  .syn-contact-form { padding: 1.4rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .syn-reveal { opacity: 1; transform: none; }
}
