﻿/*--------------------------------------------------------------
# Taycan RE Investment - brand overrides and additions
# Loaded after theme.css
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 10000;
  padding: 12px 20px;
  background-color: var(--taycan-black);
  color: var(--taycan-white);
  font-weight: 600;
  border-radius: 0 0 4px 4px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
  color: var(--taycan-white);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--taycan-base);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/*--------------------------------------------------------------
# Typography refinements
--------------------------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  letter-spacing: 0.2px;
}

.section-title__tagline {
  letter-spacing: 2.5px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.main-menu__logo img {
  max-height: 48px;
  width: auto;
}

.main-header {
  background-color: rgba(22, 40, 60, 0.55);
  backdrop-filter: blur(4px);
}

.main-header--solid {
  position: relative;
  background-color: var(--taycan-black);
}

.main-menu__cta {
  margin-left: 30px;
}

.main-menu__cta .thm-btn {
  padding: 12px 28px 11px;
  font-size: 14px;
  letter-spacing: 0.4px;
}

.main-menu .main-menu__list>li.current>a,
.stricky-header .main-menu__list>li.current>a {
  color: var(--taycan-base);
}

@media (max-width: 1199px) {
  .main-menu__cta {
    display: none;
  }
}

/*--------------------------------------------------------------
# Hero
--------------------------------------------------------------*/
.taycan-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 92vh;
  padding: 200px 0 130px;
  z-index: 1;
}

.taycan-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
}

.taycan-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(13, 25, 38, 0.88) 15%, rgba(13, 25, 38, 0.62) 55%, rgba(13, 25, 38, 0.42) 100%);
  z-index: -1;
}

.taycan-hero__content {
  max-width: 720px;
}

.taycan-hero__tagline {
  display: inline-block;
  color: var(--taycan-base);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.taycan-hero__title {
  color: var(--taycan-white);
  font-size: 58px;
  line-height: 1.15;
  font-weight: 600;
  margin-bottom: 24px;
}

.taycan-hero__text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 40px;
  max-width: 620px;
}

.taycan-hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.thm-btn--outline {
  background-color: transparent;
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.65);
  color: var(--taycan-white);
}

.thm-btn--outline:before,
.thm-btn--outline:after {
  display: none;
}

.thm-btn--outline:hover {
  background-color: var(--taycan-white);
  color: var(--taycan-black);
}

@media (max-width: 767px) {
  .taycan-hero {
    min-height: 0;
    padding: 150px 0 90px;
  }

  .taycan-hero__title {
    font-size: 36px;
  }
}

/*--------------------------------------------------------------
# Page header
--------------------------------------------------------------*/
.page-header {
  padding: 150px 0 110px;
}

.page-header-bg:after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(13, 25, 38, 0.82) 0%, rgba(13, 25, 38, 0.68) 100%);
}

.page-header__inner h1 {
  font-size: 52px;
  color: var(--taycan-white);
  line-height: 1.15;
  font-weight: 600;
}

.page-header__inner p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  font-weight: 400;
  line-height: 28px;
  max-width: 660px;
  margin: 0 auto;
  padding-top: 18px;
}

.page-header .thm-breadcrumb {
  position: static;
  margin-top: 26px;
}

.page-header .thm-breadcrumb li,
.page-header .thm-breadcrumb li a,
.page-header .thm-breadcrumb li span {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.page-header .thm-breadcrumb li a:hover {
  color: var(--taycan-base);
}

.page-header .thm-breadcrumb li span[aria-current] {
  color: var(--taycan-white);
}

@media (max-width: 767px) {
  .page-header {
    padding: 130px 0 80px;
  }

  .page-header__inner h1 {
    font-size: 34px;
  }
}

/*--------------------------------------------------------------
# Cards
--------------------------------------------------------------*/
.taycan-card {
  position: relative;
  height: 100%;
  background-color: var(--taycan-white);
  border: 1px solid rgba(22, 40, 60, 0.08);
  border-radius: var(--taycan-bdr-radius);
  padding: 38px 32px;
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.taycan-card:hover {
  border-color: rgba(150, 120, 75, 0.4);
  box-shadow: 0 14px 40px rgba(22, 40, 60, 0.08);
  transform: translateY(-4px);
}

.taycan-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(150, 120, 75, 0.45);
  border-radius: var(--taycan-bdr-radius);
  color: var(--taycan-base);
  font-size: 26px;
  margin-bottom: 24px;
}

.taycan-card__step {
  display: inline-block;
  font-family: var(--taycan-font-two);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--taycan-base);
  margin-bottom: 14px;
}

.taycan-card__title {
  font-size: 21px;
  line-height: 30px;
  margin-bottom: 12px;
}

.taycan-card__title a {
  color: var(--taycan-black);
  transition: color 0.3s ease;
}

.taycan-card__title a:hover {
  color: var(--taycan-base);
}

.taycan-card__text {
  font-size: 15.5px;
  line-height: 26px;
}

.taycan-card--dark {
  background-color: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
}

.taycan-card--dark:hover {
  border-color: rgba(150, 120, 75, 0.6);
  box-shadow: none;
}

.taycan-card--dark .taycan-card__title,
.taycan-card--dark .taycan-card__title a {
  color: var(--taycan-white);
}

.taycan-card--dark .taycan-card__text {
  color: rgba(255, 255, 255, 0.72);
}

/*--------------------------------------------------------------
# Sector cards
--------------------------------------------------------------*/
.sector-card {
  position: relative;
  height: 100%;
  background-color: var(--taycan-white);
  border: 1px solid rgba(22, 40, 60, 0.08);
  border-radius: var(--taycan-bdr-radius);
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.sector-card:hover {
  box-shadow: 0 16px 44px rgba(22, 40, 60, 0.1);
  transform: translateY(-4px);
}

.sector-card__img {
  position: relative;
  overflow: hidden;
}

.sector-card__img img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.sector-card:hover .sector-card__img img {
  transform: scale(1.04);
}

.sector-card__content {
  padding: 30px 30px 34px;
}

.sector-card__title {
  font-size: 21px;
  margin-bottom: 10px;
}

.sector-card__title a {
  color: var(--taycan-black);
  transition: color 0.3s ease;
}

.sector-card__title a:hover {
  color: var(--taycan-base);
}

.sector-card__text {
  font-size: 15.5px;
  line-height: 26px;
}

.sector-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--taycan-base);
}

.sector-card__link:hover {
  color: var(--taycan-black);
}

/*--------------------------------------------------------------
# Insight cards
--------------------------------------------------------------*/
.insight-card {
  position: relative;
  height: 100%;
  background-color: var(--taycan-white);
  border: 1px solid rgba(22, 40, 60, 0.08);
  border-radius: var(--taycan-bdr-radius);
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.insight-card:hover {
  box-shadow: 0 16px 44px rgba(22, 40, 60, 0.1);
  transform: translateY(-4px);
}

.insight-card__img {
  overflow: hidden;
}

.insight-card__img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.insight-card:hover .insight-card__img img {
  transform: scale(1.04);
}

.insight-card__content {
  padding: 28px 30px 32px;
}

.insight-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-bottom: 14px;
  font-size: 13px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.insight-card__category {
  color: var(--taycan-base);
  font-weight: 600;
}

.insight-card__title {
  font-size: 20px;
  line-height: 29px;
  margin-bottom: 12px;
}

.insight-card__title a {
  color: var(--taycan-black);
  transition: color 0.3s ease;
}

.insight-card__title a:hover {
  color: var(--taycan-base);
}

.insight-card__excerpt {
  font-size: 15px;
  line-height: 25px;
}

/*--------------------------------------------------------------
# Insight article
--------------------------------------------------------------*/
.insight-article {
  padding: 110px 0;
}

.insight-article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-bottom: 28px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.insight-article__meta span {
  color: var(--taycan-gray);
}

.insight-article__meta .category {
  color: var(--taycan-base);
  font-weight: 600;
}

.insight-article__hero-img img {
  width: 100%;
  height: auto;
  border-radius: var(--taycan-bdr-radius);
  margin-bottom: 40px;
}

.insight-article__body h2 {
  font-size: 28px;
  margin: 38px 0 16px;
}

.insight-article__body p {
  margin-bottom: 18px;
  font-size: 16.5px;
  line-height: 29px;
}

.insight-article__body ul {
  margin: 0 0 22px;
  padding-left: 0;
  list-style: none;
}

.insight-article__body ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 27px;
}

.insight-article__body ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 12px;
  height: 2px;
  background-color: var(--taycan-base);
}

/*--------------------------------------------------------------
# Legal disclaimer / legal pages
--------------------------------------------------------------*/
.legal-disclaimer {
  margin-top: 40px;
  padding: 22px 26px;
  border-left: 3px solid var(--taycan-base);
  background-color: var(--taycan-primary);
  border-radius: 0 var(--taycan-bdr-radius) var(--taycan-bdr-radius) 0;
  font-size: 14.5px;
  line-height: 24px;
  color: var(--taycan-gray);
}

.legal-page {
  padding: 110px 0;
}

.legal-page__content h2 {
  font-size: 26px;
  margin: 40px 0 14px;
}

.legal-page__content h3 {
  font-size: 20px;
  margin: 28px 0 10px;
}

.legal-page__content p {
  margin-bottom: 16px;
  line-height: 27px;
}

.legal-page__content ul {
  margin: 0 0 18px;
  padding-left: 0;
  list-style: none;
}

.legal-page__content ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  line-height: 26px;
}

.legal-page__content ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 10px;
  height: 2px;
  background-color: var(--taycan-base);
}

.legal-page__notice {
  margin-bottom: 36px;
  padding: 18px 22px;
  background-color: rgba(150, 120, 75, 0.08);
  border: 1px solid rgba(150, 120, 75, 0.35);
  border-radius: var(--taycan-bdr-radius);
  font-size: 14.5px;
  line-height: 24px;
  color: var(--taycan-black);
}

/*--------------------------------------------------------------
# Contact form
--------------------------------------------------------------*/
.taycan-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--taycan-black);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.taycan-form .required {
  color: var(--taycan-base);
}

.taycan-form input[type="text"],
.taycan-form input[type="email"],
.taycan-form input[type="tel"],
.taycan-form select,
.taycan-form textarea {
  width: 100%;
  height: 56px;
  padding: 0 20px;
  background-color: var(--taycan-primary);
  border: 1px solid transparent;
  border-radius: var(--taycan-bdr-radius);
  font-size: 15px;
  color: var(--taycan-black);
  margin-bottom: 6px;
  outline: none;
  transition: border-color 0.3s ease;
}

.taycan-form textarea {
  height: 160px;
  padding-top: 16px;
  resize: vertical;
}

.taycan-form select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a6470' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
}

.taycan-form input:focus,
.taycan-form select:focus,
.taycan-form textarea:focus {
  border-color: var(--taycan-base);
}

.taycan-form .field-group {
  margin-bottom: 20px;
}

.taycan-form .field-error input,
.taycan-form .field-error select,
.taycan-form .field-error textarea {
  border-color: #b0413e;
}

.taycan-form .error-message {
  display: block;
  color: #b0413e;
  font-size: 13.5px;
  margin-top: 2px;
}

.taycan-form .consent-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.taycan-form .consent-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--taycan-base);
}

.taycan-form .consent-group label {
  font-weight: 400;
  font-size: 14px;
  line-height: 23px;
  color: var(--taycan-gray);
  margin-bottom: 0;
}

.form-status {
  margin-top: 20px;
  padding: 16px 20px;
  border-radius: var(--taycan-bdr-radius);
  font-size: 15px;
  line-height: 24px;
}

.form-status--success {
  background-color: #eef5ee;
  border: 1px solid #4e7a4e;
  color: #2d4e2d;
}

.form-status--error {
  background-color: #f9efee;
  border: 1px solid #b0413e;
  color: #7d2f2d;
}

/*--------------------------------------------------------------
# Company information block
--------------------------------------------------------------*/
.company-info {
  background-color: var(--taycan-primary);
  border: 1px solid rgba(22, 40, 60, 0.08);
  border-radius: var(--taycan-bdr-radius);
  padding: 40px 42px;
}

.company-info__title {
  font-size: 24px;
  margin-bottom: 22px;
}

.company-info dl {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 12px 24px;
  margin: 0;
}

.company-info dt {
  font-weight: 600;
  color: var(--taycan-black);
  font-size: 15px;
}

.company-info dd {
  margin: 0;
  font-size: 15px;
  color: var(--taycan-gray);
}

@media (max-width: 575px) {
  .company-info dl {
    grid-template-columns: 1fr;
    gap: 2px 0;
  }

  .company-info dd {
    margin-bottom: 14px;
  }
}

/*--------------------------------------------------------------
# Cookie consent
--------------------------------------------------------------*/
.cookie-consent {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  max-width: 560px;
  margin: 0 auto;
  background-color: var(--taycan-white);
  border: 1px solid rgba(22, 40, 60, 0.12);
  border-radius: var(--taycan-bdr-radius);
  box-shadow: 0 20px 60px rgba(22, 40, 60, 0.22);
  padding: 28px 30px;
}

.cookie-consent__title {
  font-size: 19px;
  margin-bottom: 10px;
}

.cookie-consent__text {
  font-size: 14.5px;
  line-height: 24px;
  margin-bottom: 20px;
}

.cookie-consent__text a {
  color: var(--taycan-base);
  text-decoration: underline;
}

.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-consent__actions .thm-btn {
  padding: 11px 22px 10px;
  font-size: 14px;
}

.thm-btn--ghost {
  background-color: transparent;
  box-shadow: inset 0 0 0 1.5px rgba(22, 40, 60, 0.35);
  color: var(--taycan-black);
}

.thm-btn--ghost:before,
.thm-btn--ghost:after {
  display: none;
}

.thm-btn--ghost:hover {
  background-color: var(--taycan-black);
  color: var(--taycan-white);
}

.cookie-consent__prefs {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.cookie-consent__prefs li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid rgba(22, 40, 60, 0.08);
}

.cookie-consent__prefs input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--taycan-base);
}

.cookie-consent__prefs label {
  font-size: 14px;
  line-height: 22px;
  color: var(--taycan-gray);
}

.cookie-consent__prefs strong {
  display: block;
  color: var(--taycan-black);
}

/*--------------------------------------------------------------
# Footer refinements
--------------------------------------------------------------*/
.site-footer__legal {
  margin-top: 18px;
  font-size: 13.5px;
  line-height: 22px;
  color: rgba(255, 255, 255, 0.55);
}

.site-footer__bottom-inner {
  flex-wrap: wrap;
  gap: 8px 20px;
}

.site-footer__bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__bottom-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  transition: color 0.3s ease;
}

.site-footer__bottom-links a:hover {
  color: var(--taycan-base);
}

/*--------------------------------------------------------------
# Misc sections
--------------------------------------------------------------*/
.taycan-section {
  padding: 110px 0;
}

.taycan-section--light {
  background-color: var(--taycan-primary);
}

.taycan-section--dark {
  background-color: var(--taycan-black);
}

.taycan-section--dark .section-title__title {
  color: var(--taycan-white);
}

.taycan-section--dark .section-title__text,
.taycan-section--dark p {
  color: rgba(255, 255, 255, 0.72);
}

.taycan-section--pt-0 {
  padding-top: 0;
}

.taycan-split__img img {
  width: 100%;
  height: auto;
  border-radius: var(--taycan-bdr-radius);
}

.taycan-split__content {
  padding: 10px 0 0;
}

.taycan-checklist {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.taycan-checklist li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 27px;
  color: var(--taycan-black);
}

.taycan-checklist li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--taycan-base);
  font-size: 14px;
}

.taycan-cta {
  position: relative;
  padding: 110px 0;
  z-index: 1;
}

.taycan-cta__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
}

.taycan-cta__bg:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 25, 38, 0.9) 0%, rgba(13, 25, 38, 0.72) 100%);
}

.taycan-cta__inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  z-index: 1;
}

.taycan-cta__title {
  color: var(--taycan-white);
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 18px;
}

.taycan-cta__text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
  line-height: 29px;
  margin-bottom: 34px;
}

@media (max-width: 767px) {
  .taycan-section {
    padding: 80px 0;
  }

  .taycan-cta__title {
    font-size: 30px;
  }
}

/*--------------------------------------------------------------
# Contact page
--------------------------------------------------------------*/
.contact-details__list {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.contact-details__list li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.contact-details__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  border: 1px solid rgba(150, 120, 75, 0.45);
  border-radius: var(--taycan-bdr-radius);
  color: var(--taycan-base);
  font-size: 18px;
}

.contact-details__label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--taycan-gray);
  margin-bottom: 4px;
}

.contact-details__value {
  font-size: 16px;
  color: var(--taycan-black);
  line-height: 26px;
}

.contact-details__value a {
  color: var(--taycan-black);
  transition: color 0.3s ease;
}

.contact-details__value a:hover {
  color: var(--taycan-base);
}

.contact-map {
  position: relative;
}

.contact-map img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--taycan-bdr-radius);
}

.contact-map__caption {
  margin-top: 14px;
  font-size: 14px;
  color: var(--taycan-gray);
  text-align: center;
}

/*--------------------------------------------------------------
# Preloader (replaces template image loader)
--------------------------------------------------------------*/
.preloader {
  background-color: var(--taycan-black);
}

.preloader__image {
  background-image: none !important;
  animation: none;
  width: 44px;
  height: 44px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top-color: var(--taycan-base);
  border-radius: 50%;
  animation: taycan-spin 0.9s linear infinite;
}

@keyframes taycan-spin {
  to {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.thm-breadcrumb li a:hover {
  color: var(--taycan-base);
}


/*--------------------------------------------------------------
# Mobile nav toggler gold
--------------------------------------------------------------*/
.main-menu .mobile-nav__toggler,
.main-menu .mobile-nav__toggler:hover {
  color: var(--taycan-base);
}
