@import url('https://fonts.googleapis.com/css2?family=Geist:wght@400;500;600;700;800&family=IBM+Plex+Mono:wght@400;500;600;700&display=swap');

/* =========================================================
   TAILORED WEBCYTE — CLEAN FINAL CSS
   Home / Header / Footer / WordPress reset
   ========================================================= */

:root {
  --twc-bg: #f7f4ee;
  --twc-paper: #fbfaf7;
  --twc-ink: #071624;
  --twc-muted: #657181;

  --twc-navy: #061522;
  --twc-navy-2: #0b2135;
  --twc-deep: #030b13;

  --twc-blue: #7ab7ff;
  --twc-gold: #c99a45;
  --twc-gold-2: #f0d289;
  --twc-white: #ffffff;

  --twc-line-dark: rgba(255, 255, 255, 0.1);
  --twc-line-light: rgba(7, 22, 36, 0.14);

  --twc-max: 1240px;

  --twc-font-body: "Geist", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --twc-font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

/* =========================================================
   WORDPRESS / HOSTINGER RESET
   ========================================================= */

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  max-width: none !important;
  overflow-x: hidden !important;
  font-family: var(--twc-font-body) !important;
  color: var(--twc-ink);
  background: var(--twc-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

/* Remove WordPress default spacing on the home page */
body.home,
body.home .wp-site-blocks,
body.home .site,
body.home .site-main,
body.home main,
body.home article,
body.home .entry-content,
body.home .wp-block-post-content,
body.home .wp-block-group,
body.home .is-layout-constrained,
body.home .is-layout-flow,
body.home .wp-block-html {
  margin: 0 !important;
  padding: 0 !important;
  max-width: none !important;
  width: 100% !important;
  --wp--style--block-gap: 0 !important;
  gap: 0 !important;
}

body.home .is-layout-constrained > *,
body.home .entry-content > *,
body.home .wp-block-post-content > *,
body.home .wp-block-html,
body.home .wp-block-pattern,
body.home .wp-block-group > * {
  max-width: none !important;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  margin-block-start: 0 !important;
  margin-block-end: 0 !important;
}

/* Hide default WordPress/Hostinger template header/footer */
body.home header.wp-block-template-part,
body.home footer.wp-block-template-part,
body.home .site-header,
body.home .site-footer,
body.home .wp-block-post-title,
body.home .entry-title,
body.home .page-title {
  display: none !important;
}

/* Never hide our custom TWC header/footer */
body.home #twc-header,
body.home #twc-footer,
body.home .twc-site-header,
body.home .twc-site-footer {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Remove accidental empty elements */
body.home p:empty,
body.home .wp-block-spacer {
  display: none !important;
  height: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.twc-main,
.twc-site-header,
.twc-site-footer,
.twc-home-v2 {
  width: 100% !important;
  max-width: none !important;
}

.twc-home-v2,
.twc-home-v2 * {
  box-sizing: border-box;
}

/* =========================================================
   SHARED ELEMENTS
   ========================================================= */

.twc-v2-container {
  width: min(var(--twc-max), calc(100vw - 64px));
  margin: 0 auto;
}

.twc-v2-kicker,
.twc-v2-index,
.twc-v2-meta,
.twc-v2-services-index article > span,
.twc-v2-concept-meta > span,
.twc-v2-process-grid article > span {
  font-family: var(--twc-font-mono) !important;
}

.twc-v2-kicker {
  display: inline-block;
  margin-bottom: 20px;
  color: rgba(122, 183, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* =========================================================
   HEADER — NON-STICKY FINAL
   Stays at the top only. Does not follow scroll.
   ========================================================= */

#twc-header.twc-site-header {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  z-index: 999 !important;

  width: 100% !important;
  height: 96px !important;
  min-height: 96px !important;
  max-height: 96px !important;

  margin: 0 !important;
  padding: 0 !important;

  display: flex !important;
  align-items: center !important;

  background: rgba(6, 21, 34, 0.97) !important;
  backdrop-filter: blur(18px) !important;
  border-bottom: 1px solid var(--twc-line-dark) !important;

  overflow: visible !important;
  box-sizing: border-box !important;
}

#twc-header .twc-header-inner {
  width: min(var(--twc-max), calc(100vw - 64px)) !important;
  height: 96px !important;
  min-height: 96px !important;
  max-height: 96px !important;

  margin: 0 auto !important;
  padding: 0 !important;

  display: grid !important;
  grid-template-columns: 270px 1fr 170px !important;
  align-items: center !important;
  gap: 32px !important;

  overflow: visible !important;
  box-sizing: border-box !important;
}

/* Header logo image */
#twc-header .twc-logo-img,
#twc-header .twc-logo {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  justify-self: start !important;
  align-self: center !important;

  width: 250px !important;
  min-width: 250px !important;
  max-width: 250px !important;

  height: 96px !important;
  min-height: 96px !important;
  max-height: 96px !important;

  margin: 0 !important;
  padding: 0 !important;

  text-decoration: none !important;
  overflow: visible !important;
  line-height: 1 !important;
}

#twc-header .twc-logo-img img,
#twc-header .twc-logo img {
  display: block !important;

  width: 230px !important;
  max-width: none !important;
  height: auto !important;
  max-height: none !important;

  object-fit: contain !important;
  object-position: left center !important;

  transform: translateX(0px) translateY(4px) scale(1.22) !important;
  transform-origin: left center !important;
}

/* Hide old text logo spans if still present */
.twc-logo-img .twc-logo-top,
.twc-logo-img .twc-logo-main,
.twc-logo-img .twc-logo-island {
  display: none !important;
}

/* Header nav */
#twc-header .twc-main-nav {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  justify-self: center !important;

  gap: 38px !important;

  height: 96px !important;
  margin: 0 !important;
  padding: 0 !important;

  overflow: visible !important;
}

#twc-header .twc-main-nav a {
  position: relative;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  height: 44px !important;
  margin: 0 !important;
  padding: 0 !important;

  color: rgba(255, 255, 255, 0.88) !important;
  font-family: var(--twc-font-body) !important;
  font-size: 0.84rem !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  letter-spacing: -0.01em !important;
  text-transform: none !important;
  text-decoration: none !important;
}

#twc-header .twc-main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 0;
  height: 2px;
  background: var(--twc-gold);
  transition: width 0.22s ease;
}

#twc-header .twc-main-nav a:hover::after,
#twc-header .twc-main-nav a.is-active::after {
  width: 100%;
}

/* WhatsApp button */
#twc-header .twc-header-whatsapp {
  justify-self: end !important;
  align-self: center !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  height: 48px !important;
  min-height: 48px !important;

  margin: 0 !important;
  padding: 0 26px !important;

  color: var(--twc-white) !important;
  border: 1px solid rgba(201, 154, 69, 0.86) !important;
  background: rgba(255, 255, 255, 0.02) !important;

  font-family: var(--twc-font-body) !important;
  font-size: 0.84rem !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  letter-spacing: -0.01em !important;
  text-transform: none !important;
  text-decoration: none !important;

  box-sizing: border-box !important;
  overflow: visible !important;
}

/* =========================================================
   HERO — BACKGROUND IMAGE FINAL
   ========================================================= */

.twc-home-v2 {
  color: var(--twc-ink);
  background: var(--twc-bg);
}

.twc-v2-hero {
  position: relative;
  overflow: hidden;
  color: var(--twc-white);
}

.twc-v2-hero.twc-v2-hero-bg {
  height: min(821px, calc(100vh - 96px)) !important;
  min-height: 720px !important;
  max-height: 821px !important;

  margin: 0 !important;
  padding: 0 !important;

  background:
    linear-gradient(
      90deg,
      rgba(3, 11, 19, 0.9) 0%,
      rgba(3, 11, 19, 0.78) 28%,
      rgba(3, 11, 19, 0.38) 55%,
      rgba(3, 11, 19, 0.12) 100%
    ),
    url("https://tailoredwebcyte.com/wp-content/uploads/2026/05/hero-header-image.png") center right / auto 100% no-repeat !important;

  background-color: #030b13 !important;
}

.twc-v2-hero::before,
.twc-v2-hero::after {
  display: none !important;
  content: none !important;
}

.twc-v2-hero-inner {
  position: relative;
  z-index: 2;

  width: min(var(--twc-max), calc(100vw - 64px)) !important;
  height: 100% !important;
  min-height: 100% !important;

  margin: 0 auto !important;
  padding: 0 !important;

  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
}

.twc-v2-hero-copy {
  width: min(680px, 48vw) !important;
  max-width: 680px !important;
  transform: translateY(-88px) !important;
}

.twc-v2-hero-copy h1 {
  margin: 0 0 26px !important;
  max-width: 680px !important;

  color: var(--twc-white) !important;
  font-size: clamp(62px, 4.9vw, 88px) !important;
  line-height: 0.92 !important;
  font-weight: 600 !important;
  letter-spacing: -0.066em !important;
}

.twc-v2-hero-copy h1::after {
  content: "";
  display: block;
  width: 104px;
  height: 2px;
  margin-top: 20px;
  background: linear-gradient(90deg, var(--twc-gold), transparent);
}

.twc-v2-hero-copy p {
  max-width: 620px !important;
  margin: 0 0 30px !important;

  color: rgba(255, 255, 255, 0.76) !important;
  font-size: 1.05rem !important;
  line-height: 1.68 !important;
  font-weight: 400 !important;
  letter-spacing: -0.015em !important;
}

.twc-v2-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 26px !important;
}

.twc-v2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;

  min-height: 52px;
  padding: 0 28px;

  border-radius: 6px;

  font-family: var(--twc-font-body) !important;
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none !important;

  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.twc-v2-btn:hover {
  transform: translateY(-2px);
}

.twc-v2-btn-primary {
  color: #061522 !important;
  background: linear-gradient(135deg, #ddb05e, #f0d289);
  box-shadow: 0 20px 54px rgba(201, 154, 69, 0.22);
}

.twc-v2-btn-secondary {
  color: rgba(255, 255, 255, 0.9) !important;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.025);
}

.twc-v2-hero-visual {
  display: none !important;
}

/* Hero meta line */
.twc-v2-hero-bg .twc-v2-meta {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;

  gap: 0 !important;
  width: 100% !important;
  max-width: none !important;

  white-space: nowrap !important;

  color: rgba(255, 255, 255, 0.68) !important;
  font-family: var(--twc-font-mono) !important;
  font-size: 0.72rem !important;
  line-height: 1 !important;
}

.twc-v2-hero-bg .twc-v2-meta span {
  display: inline-flex !important;
  align-items: center !important;
  white-space: nowrap !important;
  color: rgba(255, 255, 255, 0.68) !important;
}

.twc-v2-hero-bg .twc-v2-meta span::before,
.twc-v2-hero-bg .twc-v2-meta span::after {
  content: none !important;
  display: none !important;
}

.twc-v2-hero-bg .twc-v2-meta span + span::before {
  content: "•" !important;
  display: inline-block !important;
  margin: 0 18px !important;
  color: var(--twc-gold) !important;
  opacity: 1 !important;
}

/* =========================================================
   SECTIONS — SHARED
   ========================================================= */

.twc-v2-system-section,
.twc-v2-industries-section,
.twc-v2-services-section,
.twc-v2-concepts-section,
.twc-v2-process-section,
.twc-v2-approach-section {
  padding: 96px 0 !important;
  background: var(--twc-bg) !important;
  border-bottom: 1px solid rgba(7, 22, 36, 0.1) !important;
}

.twc-v2-section-intro {
  max-width: 520px !important;
}

.twc-v2-section-intro .twc-v2-kicker {
  display: inline-block !important;
  margin-bottom: 18px !important;

  color: #667589 !important;
  font-family: var(--twc-font-mono) !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
}

.twc-v2-section-intro h2 {
  margin: 0 !important;
  color: var(--twc-ink) !important;

  font-size: clamp(42px, 3.8vw, 68px) !important;
  line-height: 0.96 !important;
  font-weight: 500 !important;
  letter-spacing: -0.065em !important;
}

.twc-v2-section-intro h2::after {
  content: "" !important;
  display: block !important;
  width: 78px !important;
  height: 2px !important;
  margin-top: 24px !important;
  background: linear-gradient(90deg, var(--twc-gold), transparent) !important;
}

.twc-home-v2 article h3 {
  color: var(--twc-ink) !important;
  font-size: 1.08rem !important;
  line-height: 1.18 !important;
  font-weight: 700 !important;
  letter-spacing: -0.025em !important;
}

.twc-home-v2 article p {
  color: var(--twc-muted) !important;
  font-size: 0.98rem !important;
  line-height: 1.72 !important;
  letter-spacing: -0.012em !important;
}

.twc-v2-index,
.twc-v2-services-index article > span,
.twc-v2-process-grid article > span,
.twc-v2-concept-meta > span {
  font-family: var(--twc-font-mono) !important;
  color: var(--twc-gold) !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
}

/* =========================================================
   01 — SYSTEM PRINCIPLE
   ========================================================= */

.twc-v2-system-grid {
  display: grid !important;
  grid-template-columns: 1.25fr repeat(3, 1fr) !important;
  gap: 0 !important;
  align-items: stretch !important;
}

.twc-v2-system-grid > * {
  padding: 0 38px !important;
  border-left: 1px solid rgba(7, 22, 36, 0.12) !important;
}

.twc-v2-system-grid > *:first-child {
  padding-left: 0 !important;
  border-left: none !important;
}

.twc-v2-system-grid article {
  min-height: 230px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
}

.twc-v2-system-grid article .twc-v2-index {
  display: block !important;
  margin-bottom: 26px !important;
}

.twc-v2-system-grid article h3 {
  margin: 0 0 16px !important;
}

.twc-v2-system-grid article p {
  max-width: 260px !important;
  margin: 0 !important;
}

/* =========================================================
   02 — WHO IT'S FOR
   ========================================================= */

.twc-v2-industries-section {
  background: var(--twc-paper) !important;
}

.twc-v2-industries-grid {
  display: grid !important;
  grid-template-columns: 1.15fr repeat(4, 1fr) !important;
  gap: 0 !important;
  align-items: stretch !important;
}

.twc-v2-industries-grid > * {
  padding: 0 30px !important;
  border-left: 1px solid rgba(7, 22, 36, 0.12) !important;
}

.twc-v2-industries-grid > *:first-child {
  padding-left: 0 !important;
  border-left: none !important;
}

.twc-v2-industries-grid article {
  min-height: 250px !important;
}

.twc-v2-line-icon {
  margin-bottom: 26px !important;
  color: var(--twc-gold) !important;
  font-size: 1.65rem !important;
  line-height: 1 !important;
}

.twc-v2-industries-grid article h3 {
  margin: 0 0 16px !important;
}

.twc-v2-industries-grid article p {
  max-width: 250px !important;
  margin: 0 !important;
}

/* =========================================================
   03 — SERVICES
   ========================================================= */

.twc-v2-services-layout {
  display: grid !important;
  grid-template-columns: 0.85fr 2.15fr !important;
  gap: 72px !important;
  align-items: start !important;
}

.twc-v2-services-index {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr) !important;
  gap: 0 !important;

  border-top: 1px solid rgba(7, 22, 36, 0.12) !important;
  border-left: 1px solid rgba(7, 22, 36, 0.12) !important;
}

.twc-v2-services-index article {
  min-height: 230px !important;
  padding: 32px 26px !important;

  background: rgba(255, 255, 255, 0.28) !important;

  border-right: 1px solid rgba(7, 22, 36, 0.12) !important;
  border-bottom: 1px solid rgba(7, 22, 36, 0.12) !important;

  transition: background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease !important;
}

.twc-v2-services-index article:hover {
  background: rgba(255, 255, 255, 0.72) !important;
  transform: translateY(-4px) !important;
  box-shadow: 0 24px 60px rgba(7, 22, 36, 0.08) !important;
}

.twc-v2-services-index article > span {
  display: block !important;
  margin-bottom: 24px !important;
}

.twc-v2-services-index article h3 {
  margin: 0 0 14px !important;
}

.twc-v2-services-index article p {
  margin: 0 !important;
}

/* =========================================================
   04 — SELECTED CONCEPTS
   ========================================================= */

.twc-v2-concepts-section {
  background: var(--twc-paper) !important;
}

.twc-v2-concepts-layout {
  display: grid !important;
  grid-template-columns: 0.82fr 2.18fr !important;
  gap: 76px !important;
  align-items: start !important;
}

.twc-v2-text-link {
  display: inline-flex !important;
  align-items: center !important;
  gap: 16px !important;

  margin-top: 34px !important;

  color: var(--twc-gold) !important;
  font-size: 0.94rem !important;
  font-weight: 700 !important;
  text-decoration: none !important;
}

.twc-v2-concepts-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 30px !important;
  align-items: stretch !important;
}

.twc-v2-concept-card {
  background: #ffffff !important;
  border: 1px solid rgba(7, 22, 36, 0.1) !important;
  box-shadow: 0 28px 84px rgba(7, 22, 36, 0.12) !important;
  overflow: hidden !important;
  transition: transform 0.24s ease, box-shadow 0.24s ease !important;
}

.twc-v2-concept-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 38px 110px rgba(7, 22, 36, 0.18) !important;
}

.twc-v2-concept-preview {
  position: relative !important;
  height: 340px !important;
  padding: 34px !important;

  display: flex !important;
  align-items: flex-start !important;

  overflow: hidden !important;

  background-image:
    linear-gradient(
      180deg,
      rgba(3, 16, 31, 0.14) 0%,
      rgba(3, 16, 31, 0.24) 38%,
      rgba(3, 16, 31, 0.78) 100%
    ),
    var(--twc-concept-img) !important;

  background-size: cover !important;
  background-repeat: no-repeat !important;
}

.twc-v2-concept-preview::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;

  background:
    radial-gradient(circle at 22% 16%, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(201, 154, 69, 0.18), transparent 46%) !important;

  pointer-events: none !important;
}

.twc-v2-concept-preview::after {
  content: "" !important;
  position: absolute !important;
  inset: auto 0 0 0 !important;
  height: 58% !important;
  z-index: 1 !important;

  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.68)) !important;
  pointer-events: none !important;
}

.twc-v2-concept-preview span {
  position: relative !important;
  z-index: 2 !important;

  max-width: 280px !important;

  color: #ffffff !important;
  font-size: 1.85rem !important;
  line-height: 1.02 !important;
  font-weight: 600 !important;
  letter-spacing: -0.055em !important;
  text-shadow: 0 14px 36px rgba(0, 0, 0, 0.42) !important;
}

.concept-service .twc-v2-concept-preview {
  background-position: 54% center !important;
}

.concept-villa .twc-v2-concept-preview {
  background-position: center center !important;
}

.concept-consultant .twc-v2-concept-preview {
  background-position: center center !important;
}

.twc-v2-concept-meta {
  position: relative !important;
  min-height: 112px !important;
  padding: 26px 28px 30px !important;
  background: #ffffff !important;
}

.twc-v2-concept-meta > span {
  display: block !important;
  margin-bottom: 12px !important;

  color: #6f7f91 !important;
  font-family: var(--twc-font-mono) !important;
  font-size: 0.68rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.11em !important;
  text-transform: uppercase !important;
}

.twc-v2-concept-meta h3 {
  margin: 0 !important;
  max-width: 80% !important;

  color: var(--twc-ink) !important;
  font-size: 1.08rem !important;
  line-height: 1.2 !important;
  font-weight: 700 !important;
  letter-spacing: -0.025em !important;
}

.twc-v2-concept-meta a {
  position: absolute !important;
  right: 28px !important;
  bottom: 30px !important;

  color: var(--twc-ink) !important;
  font-size: 1.3rem !important;
  line-height: 1 !important;
  text-decoration: none !important;

  transition: transform 0.2s ease, color 0.2s ease !important;
}

.twc-v2-concept-meta a:hover {
  color: var(--twc-gold) !important;
  transform: translateX(4px) !important;
}

/* =========================================================
   05 — PROCESS
   ========================================================= */

.twc-v2-process-layout {
  display: grid !important;
  grid-template-columns: 0.85fr 2.15fr !important;
  gap: 76px !important;
  align-items: start !important;
}

.twc-v2-process-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 0 !important;

  border-top: 1px solid rgba(7, 22, 36, 0.12) !important;
  border-left: 1px solid rgba(7, 22, 36, 0.12) !important;
}

.twc-v2-process-grid article {
  min-height: 210px !important;
  padding: 34px 28px !important;

  border-right: 1px solid rgba(7, 22, 36, 0.12) !important;
  border-bottom: 1px solid rgba(7, 22, 36, 0.12) !important;
}

.twc-v2-process-grid article::before {
  display: none !important;
}

.twc-v2-process-grid article > span {
  display: block !important;
  margin-bottom: 24px !important;
}

.twc-v2-process-grid article h3 {
  margin: 0 0 14px !important;
}

.twc-v2-process-grid article p {
  margin: 0 !important;
}

/* =========================================================
   06 — APPROACH
   ========================================================= */

.twc-v2-approach-section {
  padding: 88px 0 !important;
  background:
    radial-gradient(circle at 86% 18%, rgba(201, 154, 69, 0.1), transparent 28%),
    var(--twc-paper) !important;
}

.twc-v2-approach-grid {
  display: grid !important;
  grid-template-columns: 0.85fr 1.45fr 0.7fr !important;
  gap: 72px !important;
  align-items: center !important;
}

.twc-v2-approach-copy p {
  margin: 0 !important;
  max-width: 680px !important;

  color: #3e4a58 !important;
  font-size: 1.1rem !important;
  line-height: 1.78 !important;
  letter-spacing: -0.018em !important;
}

.twc-v2-handnote {
  justify-self: end !important;
  max-width: 240px !important;

  color: var(--twc-gold) !important;
  font-size: 1.34rem !important;
  line-height: 1.2 !important;
  font-weight: 600 !important;
  letter-spacing: -0.045em !important;

  transform: rotate(-4deg) !important;
}

.twc-v2-handnote::after {
  content: "" !important;
  display: block !important;
  width: 86px !important;
  height: 2px !important;
  margin-top: 12px !important;
  background: linear-gradient(90deg, var(--twc-gold), transparent) !important;
}

/* =========================================================
   FOOTER
   ========================================================= */

.twc-site-footer {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;

  color: var(--twc-white);
  background:
    radial-gradient(circle at 85% 10%, rgba(201, 154, 69, 0.12), transparent 32%),
    linear-gradient(180deg, var(--twc-navy), var(--twc-deep));
}

/* Footer CTA with background image */
.twc-site-footer .twc-footer-cta.twc-footer-cta-bg {
  position: relative;
  overflow: hidden;

  padding: 82px 24px !important;
  margin-bottom: 0 !important;

  border-top: 1px solid rgba(201, 154, 69, 0.22);
  border-bottom: 58px solid var(--twc-bg) !important;

  background:
    linear-gradient(
      90deg,
      rgba(2, 10, 24, 0.94) 0%,
      rgba(2, 10, 24, 0.88) 28%,
      rgba(2, 10, 24, 0.58) 58%,
      rgba(2, 10, 24, 0.78) 100%
    ),
    url("https://tailoredwebcyte.com/wp-content/uploads/2026/05/banner-ready-to-start.png") center center / cover no-repeat;
}

.twc-site-footer .twc-footer-cta.twc-footer-cta-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 42%, rgba(0, 140, 255, 0.18), transparent 28%),
    radial-gradient(circle at 78% 68%, rgba(0, 180, 255, 0.14), transparent 30%);
  pointer-events: none;
}

.twc-site-footer .twc-footer-cta.twc-footer-cta-bg::after {
  display: none !important;
  content: none !important;
}

.twc-footer-cta-inner {
  position: relative;
  z-index: 2;

  width: min(var(--twc-max), calc(100vw - 64px));
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 36px;
  align-items: center;
}

.twc-footer-cta h2 {
  margin: 0 0 24px !important;
  max-width: 680px;

  color: var(--twc-white) !important;
  font-family: var(--twc-font-body) !important;
  font-size: clamp(50px, 4.4vw, 76px) !important;
  line-height: 0.96 !important;
  font-weight: 600 !important;
  letter-spacing: -0.065em !important;

  text-shadow: 0 14px 40px rgba(0, 0, 0, 0.34);
}

.twc-footer-cta p {
  margin: 0;
  max-width: 700px;

  color: rgba(241, 247, 255, 0.9) !important;
  font-size: 1rem !important;
  line-height: 1.65 !important;
  letter-spacing: -0.015em;
}

.twc-footer-cta .twc-section-kicker {
  display: inline-block;
  margin-bottom: 18px;

  color: var(--twc-gold) !important;
  font-family: var(--twc-font-mono) !important;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.twc-footer-cta-actions {
  position: relative;
  z-index: 2;

  display: flex;
  justify-content: flex-end;
  gap: 14px;
  flex-wrap: wrap;
}

/* Buttons */
.twc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 54px;
  padding: 0 28px;

  border-radius: 6px;

  font-family: var(--twc-font-body) !important;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: none;
  text-decoration: none !important;

  transition: transform 0.22s ease;
}

.twc-btn:hover {
  transform: translateY(-2px);
}

.twc-btn-gold {
  color: #061522 !important;
  background: linear-gradient(135deg, #ddb05e, #f0d289) !important;
  box-shadow: 0 20px 54px rgba(201, 154, 69, 0.22);
}

.twc-btn-outline {
  color: rgba(255, 255, 255, 0.88) !important;
  border: 1px solid rgba(201, 154, 69, 0.82);
  background: rgba(255, 255, 255, 0.02);
}

/* Footer main */
.twc-footer-main {
  padding: 72px 24px 28px !important;
  overflow: hidden !important;
}

.twc-footer-grid {
  width: min(1180px, calc(100vw - 96px)) !important;
  max-width: 1180px !important;
  margin: 0 auto !important;

  display: grid !important;
  grid-template-columns:
    minmax(320px, 1.25fr)
    minmax(170px, 0.65fr)
    minmax(150px, 0.55fr)
    minmax(230px, 0.75fr) !important;

  gap: 56px !important;
  align-items: start !important;
}

/* Footer brand */
.twc-footer-brand {
  position: relative !important;
  max-width: 420px !important;
  min-height: 190px !important;

  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;

  transform: none !important;
}

/* Footer logo */
#twc-footer .twc-logo-img-footer,
#twc-footer .twc-logo-footer,
#twc-footer .twc-footer-brand .twc-logo-img {
  display: flex !important;

  width: 290px !important;
  max-width: 290px !important;
  min-width: 290px !important;

  height: auto !important;

  margin: 0 0 42px 0 !important;
  padding: 0 !important;

  overflow: visible !important;
}

#twc-footer .twc-logo-img-footer img,
#twc-footer .twc-logo-footer img,
#twc-footer .twc-footer-brand .twc-logo-img img {
  display: block !important;

  width: 290px !important;
  max-width: none !important;
  height: auto !important;
  max-height: none !important;

  object-fit: contain !important;
  object-position: left center !important;

  transform: translateX(-65px) translateY(-115px) scale(0.98) !important;
  transform-origin: left center !important;
}

/* Footer tagline — supports both old <p> and new tagline box */
#twc-footer .twc-footer-brand .twc-footer-tagline-box {
  position: absolute !important;
  left: 15px !important;
  top: 28px !important;

  width: 390px !important;
  max-width: 390px !important;

  margin: 0 !important;
  padding: 0 !important;

  z-index: 3 !important;
}

#twc-footer .twc-footer-brand .twc-footer-tagline-box span {
  display: block !important;

  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 0.96rem !important;
  line-height: 1.65 !important;
  font-weight: 400 !important;
}

#twc-footer .twc-footer-tagline {
  display: block !important;

  max-width: 410px !important;
  margin: 0 !important;
  padding: 0 !important;

  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 0.96rem !important;
  line-height: 1.65 !important;

  transform: translateX(15px) translateY(-18px) !important;
}

/* Footer columns */
.twc-footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0 !important;
}

.twc-footer-col h3 {
  margin: 0 0 18px !important;

  color: var(--twc-white);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  white-space: nowrap !important;
}

.twc-footer-col a,
.twc-footer-col span {
  display: block !important;

  width: auto !important;
  max-width: 240px !important;

  margin-bottom: 10px !important;
  padding: 0 !important;

  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 0.92rem !important;
  line-height: 1.55 !important;

  text-decoration: none !important;

  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
}

.twc-footer-col a:hover {
  color: var(--twc-gold) !important;
}

.twc-footer-contact .twc-footer-email {
  color: rgba(255, 255, 255, 0.82) !important;
}

/* Footer bottom */
.twc-footer-bottom {
  width: min(1180px, calc(100vw - 96px)) !important;
  max-width: 1180px !important;

  margin: 42px auto 0 !important;
  padding-top: 22px !important;

  display: flex !important;
  justify-content: space-between !important;
  gap: 24px !important;

  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.twc-footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.twc-footer-bottom div {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.twc-footer-bottom a {
  color: rgba(255, 255, 255, 0.68) !important;
  font-size: 0.82rem;
  text-decoration: none !important;
}

.twc-footer-bottom a:hover {
  color: var(--twc-gold) !important;
}

/* =========================================================
   BACK TO TOP
   ========================================================= */

.twc-back-to-top {
  position: fixed !important;
  right: 28px;
  bottom: 28px;
  z-index: 99998;

  width: 48px;
  height: 48px;

  display: inline-flex !important;
  align-items: center;
  justify-content: center;

  color: #061522 !important;
  background: linear-gradient(135deg, #ddb05e, #f0d289);
  border: 1px solid rgba(240, 210, 137, 0.75);
  border-radius: 999px;

  text-decoration: none !important;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.08);

  opacity: 0.92;
  transition:
    transform 0.22s ease,
    opacity 0.22s ease,
    box-shadow 0.22s ease;
}

.twc-back-to-top span {
  display: block;
  font-family: var(--twc-font-body) !important;
  font-size: 1.35rem;
  line-height: 1;
  font-weight: 800;
  transform: translateY(-1px);
}

.twc-back-to-top:hover {
  transform: translateY(-4px);
  opacity: 1;
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.34),
    0 0 24px rgba(201, 154, 69, 0.26);
}

.twc-back-to-top:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 4px;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1180px) {
  #twc-header .twc-header-inner {
    grid-template-columns: 230px 1fr 150px !important;
    gap: 24px !important;
  }

  #twc-header .twc-logo-img,
  #twc-header .twc-logo {
    width: 220px !important;
    min-width: 220px !important;
    max-width: 220px !important;
  }

  #twc-header .twc-logo-img img,
  #twc-header .twc-logo img {
    width: 210px !important;
    transform: translateX(0px) translateY(4px) scale(1.12) !important;
  }

  #twc-header .twc-main-nav {
    gap: 24px !important;
  }

  .twc-v2-hero.twc-v2-hero-bg {
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    background-size: cover !important;
    background-position: 68% center !important;
  }

  .twc-v2-hero-inner {
    height: auto !important;
    min-height: auto !important;
    padding: 96px 0 72px !important;
  }

  .twc-v2-hero-copy {
    width: min(680px, 100%) !important;
    transform: translateY(-24px) !important;
  }

  .twc-v2-system-grid,
  .twc-v2-industries-grid,
  .twc-v2-services-layout,
  .twc-v2-concepts-layout,
  .twc-v2-process-layout,
  .twc-v2-approach-grid {
    grid-template-columns: 1fr !important;
    gap: 48px !important;
  }

  .twc-v2-system-grid > *,
  .twc-v2-industries-grid > * {
    padding: 30px 0 !important;
    border-left: none !important;
    border-top: 1px solid rgba(7, 22, 36, 0.12) !important;
  }

  .twc-v2-system-grid > *:first-child,
  .twc-v2-industries-grid > *:first-child {
    border-top: none !important;
    padding-top: 0 !important;
  }

  .twc-v2-services-index,
  .twc-v2-process-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .twc-v2-concepts-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  .twc-v2-handnote {
    justify-self: start !important;
  }
}

@media (max-width: 980px) {
  .twc-site-footer .twc-footer-cta.twc-footer-cta-bg {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
    border-bottom-width: 42px !important;
    background-position: left center;
  }

  .twc-footer-main {
    padding-top: 58px !important;
  }

  .twc-footer-cta-inner,
  .twc-footer-grid {
    grid-template-columns: 1fr !important;
  }

  .twc-footer-cta-actions {
    justify-content: flex-start !important;
  }

  .twc-footer-grid {
    width: min(100%, calc(100vw - 48px)) !important;
    gap: 42px !important;
  }

  .twc-footer-bottom {
    width: min(100%, calc(100vw - 48px)) !important;
  }
}

@media (max-width: 860px) {
  #twc-header.twc-site-header {
    height: auto !important;
    min-height: 86px !important;
    max-height: none !important;
    padding: 16px 0 !important;
  }

  #twc-header .twc-header-inner {
    width: min(100%, calc(100vw - 32px)) !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;

    display: flex !important;
    flex-wrap: wrap !important;
    gap: 18px !important;
  }

  #twc-header .twc-logo-img,
  #twc-header .twc-logo {
    height: 58px !important;
    min-height: 58px !important;
  }

  #twc-header .twc-logo-img img,
  #twc-header .twc-logo img {
    width: 190px !important;
    transform: translateX(0px) translateY(0px) scale(1.05) !important;
  }

  #twc-header .twc-main-nav {
    order: 3;
    width: 100%;
    height: auto !important;

    justify-content: flex-start !important;
    gap: 22px !important;

    overflow-x: auto !important;
    padding-bottom: 4px !important;
  }

  #twc-header .twc-header-whatsapp {
    margin-left: auto !important;
  }

  .twc-v2-container,
  .twc-v2-hero-inner,
  .twc-footer-cta-inner,
  .twc-footer-grid,
  .twc-footer-bottom {
    width: min(100%, calc(100vw - 32px)) !important;
  }

  .twc-v2-hero.twc-v2-hero-bg {
    background-position: 72% center !important;
  }

  .twc-v2-hero-inner {
    padding: 82px 0 64px !important;
  }

  .twc-v2-hero-copy {
    transform: none !important;
  }

  .twc-v2-hero-copy h1 {
    font-size: clamp(42px, 12vw, 58px) !important;
  }

  .twc-v2-actions {
    flex-direction: column;
  }

  .twc-v2-btn {
    width: 100%;
  }

  .twc-v2-meta {
    flex-wrap: wrap !important;
    row-gap: 10px !important;
    white-space: normal !important;
    line-height: 1.6 !important;
  }

  .twc-v2-system-section,
  .twc-v2-industries-section,
  .twc-v2-services-section,
  .twc-v2-concepts-section,
  .twc-v2-process-section,
  .twc-v2-approach-section {
    padding: 72px 0 !important;
  }

  .twc-v2-section-intro h2 {
    font-size: clamp(36px, 10vw, 54px) !important;
  }

  .twc-v2-services-index,
  .twc-v2-concepts-grid,
  .twc-v2-process-grid {
    grid-template-columns: 1fr !important;
  }

  .twc-v2-services-index article,
  .twc-v2-process-grid article {
    min-height: auto !important;
  }

  .twc-v2-concept-preview {
    height: 260px !important;
  }

  .twc-v2-concept-preview span {
    font-size: 1.55rem !important;
  }

  .twc-footer-bottom {
    flex-direction: column !important;
  }
}

@media (max-width: 640px) {
  .twc-footer-grid {
    width: min(100%, calc(100vw - 32px)) !important;
    grid-template-columns: 1fr !important;
    gap: 34px !important;
  }

  .twc-footer-bottom {
    width: min(100%, calc(100vw - 32px)) !important;
  }

  #twc-footer .twc-logo-img-footer img,
  #twc-footer .twc-logo-footer img,
  #twc-footer .twc-footer-brand .twc-logo-img img {
    transform: translateX(0) translateY(8px) scale(1.15) !important;
  }

  #twc-footer .twc-footer-brand .twc-footer-tagline-box {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    max-width: 360px !important;
    margin-top: 18px !important;
  }

  .twc-back-to-top {
    right: 18px;
    bottom: 18px;
    width: 44px;
    height: 44px;
  }

  .twc-back-to-top span {
    font-size: 1.2rem;
  }
}

@media (max-width: 520px) {
  .twc-v2-section-intro h2 {
    font-size: 34px !important;
  }

  .twc-v2-concept-preview {
    height: 240px !important;
    padding: 26px !important;
  }

  .twc-v2-concept-preview span {
    font-size: 1.55rem !important;
  }

  .twc-v2-concept-meta {
    padding: 22px 24px 26px !important;
  }
}