/*
Theme Name: Hospilicious
Theme URI: https://hospilicious.com
Description: Boutique hospitality design — websites & brands for the places people never forget.
Author: Hospilicious
Author URI: https://hospilicious.com
Template: twentytwentyfour
Version: 1.0.0
Requires at least: 6.4
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hospilicious
*/

/* ═══════════════════════════════════════════════════
   0. RESET & BASE
   ═══════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; overflow-x: hidden; }


/* ═══════════════════════════════════════════════════
   1. FILM GRAIN OVERLAY
   Applied via .hosp-grain — a fixed pseudo-layer.
   ═══════════════════════════════════════════════════ */
.hosp-grain::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: var(--wp--custom--grain);
  background-repeat: repeat;
}


/* ═══════════════════════════════════════════════════
   2. SECTION LABEL (small caps gold rule)
   ═══════════════════════════════════════════════════ */
.hosp-label {
  font-family: var(--wp--preset--font-family--mono);
  font-size: var(--wp--preset--font-size--2xs);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--wp--preset--color--gold-core);
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.hosp-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--wp--preset--color--gold-core);
}
.hosp-label--center {
  justify-content: center;
}
.hosp-label--center::before { display: none; }


/* ═══════════════════════════════════════════════════
   3. SECTION FOUNDATIONS
   Dark / light alternation via utility classes.
   ═══════════════════════════════════════════════════ */
.hosp-section {
  padding: var(--wp--preset--spacing--60) var(--wp--preset--spacing--40);
  position: relative;
}
.hosp-section--dark {
  background: var(--wp--preset--color--ink);
  color: var(--wp--preset--color--cream);
}
.hosp-section--teal {
  background: var(--wp--preset--color--teal-deep);
  color: var(--wp--preset--color--cream);
}
.hosp-section--light {
  background: var(--wp--preset--color--blush-pale);
  color: var(--wp--preset--color--ink);
}
.hosp-section--cream {
  background: var(--wp--preset--color--cream);
  color: var(--wp--preset--color--ink);
}

/* Radial glow accents */
.hosp-section--teal::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 50% at 80% 80%, rgba(232,180,160,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.hosp-section--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 50%, rgba(26,60,60,0.4) 0%, transparent 70%);
  pointer-events: none;
}

.hosp-section__inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}


/* ═══════════════════════════════════════════════════
   4. HERO
   ═══════════════════════════════════════════════════ */
.hosp-hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  background: var(--wp--preset--color--ink);
}
.hosp-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 12s ease-out;
}
.hosp-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(26,26,24,0.45) 0%,
    rgba(26,26,24,0.55) 30%,
    rgba(26,26,24,0.8) 65%,
    var(--wp--preset--color--ink) 100%);
}
.hosp-hero__bg.loaded { transform: scale(1); }
.hosp-hero__content {
  position: relative;
  z-index: 2;
  padding: 0 var(--wp--preset--spacing--40) var(--wp--preset--spacing--50);
  max-width: 900px;
}
.hosp-hero__content > * {
  opacity: 0;
  transform: translateY(30px);
  animation: hospFadeUp 1s ease forwards;
}
.hosp-hero__content > *:nth-child(1) { animation-delay: 0.3s; }
.hosp-hero__content > *:nth-child(2) { animation-delay: 0.6s; }
.hosp-hero__content > *:nth-child(3) { animation-delay: 0.9s; }


/* ═══════════════════════════════════════════════════
   5. BUTTONS
   ═══════════════════════════════════════════════════ */
.hosp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--wp--preset--font-family--mono);
  font-size: var(--wp--preset--font-size--xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  text-decoration: none;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.hosp-btn--primary {
  color: var(--wp--preset--color--ink);
  background: var(--wp--preset--color--blush-core);
}
.hosp-btn--primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--wp--preset--color--blush-mid);
  transform: translateX(-101%);
  transition: transform 0.4s ease;
}
.hosp-btn--primary:hover::after { transform: translateX(0); }
.hosp-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232,180,160,0.25);
}
.hosp-btn--primary span { position: relative; z-index: 1; }

.hosp-btn--ghost {
  color: var(--wp--preset--color--blush-core);
  background: transparent;
  padding: 0;
  padding-bottom: 2px;
}
.hosp-btn--ghost::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--wp--preset--color--gold-core);
  transition: width 0.4s ease;
}
.hosp-btn--ghost:hover::after { width: 100%; }
.hosp-btn--ghost:hover { color: var(--wp--preset--color--gold-core); }


/* ═══════════════════════════════════════════════════
   6. NAV
   ═══════════════════════════════════════════════════ */
.hosp-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.5s ease, backdrop-filter 0.5s ease;
}
.hosp-nav.scrolled {
  background: rgba(26,26,24,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.hosp-nav__logo {
  font-family: var(--wp--preset--font-family--display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--wp--preset--color--cream);
  text-decoration: none;
}
.hosp-nav__links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.hosp-nav__links a {
  font-family: var(--wp--preset--font-family--mono);
  font-size: var(--wp--preset--font-size--2xs);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--wp--preset--color--stone);
  text-decoration: none;
  transition: color 0.3s ease;
}
.hosp-nav__links a:hover { color: var(--wp--preset--color--gold-core); }
.hosp-nav__cta {
  color: var(--wp--preset--color--ink) !important;
  background: var(--wp--preset--color--blush-core);
  padding: 0.6rem 1.5rem;
  transition: background 0.3s ease;
}
.hosp-nav__cta:hover {
  background: var(--wp--preset--color--blush-mid);
}

@media (max-width: 900px) {
  .hosp-nav__links { display: none; }
  .hosp-nav { padding: 1rem 1.5rem; }
}


/* ═══════════════════════════════════════════════════
   7. PORTFOLIO CARDS
   ═══════════════════════════════════════════════════ */
.hosp-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.hosp-portfolio-card {
  background: rgba(255,252,248,0.03);
  border: 1px solid rgba(201,168,76,0.1);
  overflow: hidden;
  transition: all 0.5s ease;
}
.hosp-portfolio-card:first-child { grid-column: 1 / -1; }
.hosp-portfolio-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.hosp-portfolio-card__img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.hosp-portfolio-card:first-child .hosp-portfolio-card__img {
  aspect-ratio: 21/9;
}
.hosp-portfolio-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.hosp-portfolio-card:hover .hosp-portfolio-card__img img {
  transform: scale(1.03);
}
.hosp-portfolio-card__body { padding: 1.75rem 2rem; }
.hosp-portfolio-card__meta {
  font-family: var(--wp--preset--font-family--mono);
  font-size: var(--wp--preset--font-size--2xs);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--wp--preset--color--blush-core);
  margin-bottom: 0.5rem;
}
.hosp-portfolio-card__title {
  font-family: var(--wp--preset--font-family--heading);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--wp--preset--color--cream);
  margin-bottom: 0.5rem;
}
.hosp-portfolio-card__link {
  font-family: var(--wp--preset--font-family--mono);
  font-size: var(--wp--preset--font-size--2xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wp--preset--color--gold-core);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}
.hosp-portfolio-card__link:hover { gap: 0.8rem; }

@media (max-width: 900px) {
  .hosp-portfolio-grid { grid-template-columns: 1fr; }
  .hosp-portfolio-card:first-child .hosp-portfolio-card__img { aspect-ratio: 16/9; }
}


/* ═══════════════════════════════════════════════════
   8. SERVICE CARDS (How We Work grid)
   ═══════════════════════════════════════════════════ */
.hosp-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(26,60,60,0.1);
  border: 1px solid rgba(26,60,60,0.1);
}
.hosp-service-card {
  background: var(--wp--preset--color--cream);
  padding: 2.5rem;
  transition: background 0.4s ease;
}
.hosp-service-card:hover { background: var(--wp--preset--color--blush-pale); }
.hosp-service-card__icon {
  width: 40px; height: 40px;
  border: 1px solid var(--wp--preset--color--teal-core);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--wp--preset--color--teal-core);
  font-size: 1rem;
  transition: all 0.3s ease;
}
.hosp-service-card:hover .hosp-service-card__icon {
  background: var(--wp--preset--color--teal-core);
  color: var(--wp--preset--color--cream);
}
.hosp-service-card h3 {
  font-family: var(--wp--preset--font-family--display);
  font-size: var(--wp--preset--font-size--lg);
  color: var(--wp--preset--color--teal-deep);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.hosp-service-card p {
  font-size: var(--wp--preset--font-size--sm);
  line-height: 1.7;
  color: var(--wp--preset--color--graphite);
}

@media (max-width: 900px) {
  .hosp-services-grid { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════
   9. PRICING / SERVICES GATEWAY CARDS
   ═══════════════════════════════════════════════════ */
.hosp-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.hosp-pricing-card {
  background: rgba(255,252,248,0.03);
  border: 1px solid rgba(201,168,76,0.12);
  padding: 2.5rem;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}
.hosp-pricing-card:hover {
  border-color: rgba(201,168,76,0.35);
  background: rgba(255,252,248,0.05);
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.25);
}
.hosp-pricing-card__icon { font-size: 1.5rem; margin-bottom: 1.25rem; }
.hosp-pricing-card__badge {
  font-family: var(--wp--preset--font-family--mono);
  font-size: var(--wp--preset--font-size--2xs);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--wp--preset--color--blush-core);
  margin-bottom: 0.5rem;
}
.hosp-pricing-card h3 {
  font-family: var(--wp--preset--font-family--display);
  font-style: italic;
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
  color: var(--wp--preset--color--cream);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.hosp-pricing-card p {
  font-size: var(--wp--preset--font-size--sm);
  line-height: 1.7;
  color: var(--wp--preset--color--teal-pale);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.hosp-pricing-card__price {
  font-family: var(--wp--preset--font-family--heading);
  font-size: 1.1rem;
  color: var(--wp--preset--color--gold-core);
  margin-bottom: 1.5rem;
}

@media (max-width: 900px) {
  .hosp-pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
}


/* ═══════════════════════════════════════════════════
   10. TRUST / TESTIMONIAL
   ═══════════════════════════════════════════════════ */
.hosp-quote {
  font-family: var(--wp--preset--font-family--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  line-height: 1.4;
  color: var(--wp--preset--color--cream);
  max-width: 750px;
  margin: 2rem auto;
  position: relative;
  text-align: center;
}
.hosp-quote::before {
  content: '\201C';
  font-family: var(--wp--preset--font-family--display);
  font-size: 5rem;
  color: var(--wp--preset--color--gold-core);
  opacity: 0.3;
  position: absolute;
  top: -2.5rem; left: -1rem;
  line-height: 1;
}
.hosp-attrib {
  font-family: var(--wp--preset--font-family--mono);
  font-size: var(--wp--preset--font-size--2xs);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--wp--preset--color--stone);
  text-align: center;
}
.hosp-divider {
  width: 40px; height: 1px;
  background: var(--wp--preset--color--gold-core);
  margin: 2rem auto;
  opacity: 0.5;
}


/* ═══════════════════════════════════════════════════
   11. FOUNDER SECTION
   ═══════════════════════════════════════════════════ */
.hosp-founders {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.hosp-founders__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.hosp-founders__photo {
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center;
  position: relative;
}
.hosp-founders__photo:first-child { margin-top: 2rem; }
.hosp-founders__photo-name {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(26,26,24,0.7), transparent);
}
.hosp-founders__photo-name span {
  display: block;
  font-family: var(--wp--preset--font-family--mono);
  font-size: var(--wp--preset--font-size--2xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wp--preset--color--cream);
}
.hosp-founders__photo-name a {
  font-family: var(--wp--preset--font-family--mono);
  font-size: 0.5rem;
  letter-spacing: 0.15em;
  color: var(--wp--preset--color--blush-core);
  text-decoration: none;
}
.hosp-founders__photo-name a:hover {
  color: var(--wp--preset--color--gold-core);
}

@media (max-width: 900px) {
  .hosp-founders { grid-template-columns: 1fr; }
  .hosp-founders__photos { max-width: 400px; }
}


/* ═══════════════════════════════════════════════════
   12. EMPATHY (2-col image + text)
   ═══════════════════════════════════════════════════ */
.hosp-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.hosp-split__img {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
}
.hosp-split__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(26,60,60,0.15));
}
.hosp-accent-text {
  font-family: var(--wp--preset--font-family--editorial);
  font-style: italic;
  color: var(--wp--preset--color--teal-core);
  font-size: 1rem;
}

@media (max-width: 900px) {
  .hosp-split { grid-template-columns: 1fr; }
  .hosp-split__img { aspect-ratio: 16/9; max-height: 400px; }
}


/* ═══════════════════════════════════════════════════
   13. FOOTER
   ═══════════════════════════════════════════════════ */
.hosp-footer {
  background: var(--wp--preset--color--charcoal);
  padding: 3rem var(--wp--preset--spacing--40);
}
.hosp-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.hosp-footer__logo {
  font-family: var(--wp--preset--font-family--display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--wp--preset--color--cream);
}
.hosp-footer__links {
  display: flex;
  gap: 2rem;
  list-style: none;
  flex-wrap: wrap;
  margin: 0; padding: 0;
}
.hosp-footer__links a {
  font-family: var(--wp--preset--font-family--mono);
  font-size: var(--wp--preset--font-size--2xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wp--preset--color--stone);
  text-decoration: none;
  transition: color 0.3s ease;
}
.hosp-footer__links a:hover { color: var(--wp--preset--color--gold-core); }
.hosp-footer__copy {
  font-family: var(--wp--preset--font-family--mono);
  font-size: var(--wp--preset--font-size--2xs);
  letter-spacing: 0.15em;
  color: var(--wp--preset--color--graphite);
}


/* ═══════════════════════════════════════════════════
   14. ANIMATIONS
   ═══════════════════════════════════════════════════ */
@keyframes hospFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll reveal — visible by default; JS opts in */
.hosp-reveal,
.hosp-reveal-stagger > * {
  opacity: 1;
  transform: none;
}
.hosp-reveal.will-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.hosp-reveal.will-animate.visible {
  opacity: 1;
  transform: translateY(0);
}
.hosp-reveal-stagger.will-animate > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.hosp-reveal-stagger.will-animate.visible > *:nth-child(1) { transition-delay: 0s; }
.hosp-reveal-stagger.will-animate.visible > *:nth-child(2) { transition-delay: 0.1s; }
.hosp-reveal-stagger.will-animate.visible > *:nth-child(3) { transition-delay: 0.15s; }
.hosp-reveal-stagger.will-animate.visible > *:nth-child(4) { transition-delay: 0.2s; }
.hosp-reveal-stagger.will-animate.visible > *:nth-child(5) { transition-delay: 0.25s; }
.hosp-reveal-stagger.will-animate.visible > *:nth-child(6) { transition-delay: 0.3s; }
.hosp-reveal-stagger.will-animate.visible > *:nth-child(7) { transition-delay: 0.35s; }
.hosp-reveal-stagger.will-animate.visible > *:nth-child(8) { transition-delay: 0.4s; }
.hosp-reveal-stagger.will-animate.visible > * {
  opacity: 1;
  transform: translateY(0);
}


/* ═══════════════════════════════════════════════════
   15. PRICING PAGE CARDS (for detail pages)
   ═══════════════════════════════════════════════════ */
.hosp-tier-card {
  background: #fff;
  padding: 36px 28px 32px;
  border: 1px solid rgba(26,60,60,0.06);
  box-shadow: 0 1px 4px rgba(0,0,0,0.03);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.hosp-tier-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(26,60,60,0.08);
}
.hosp-tier-card--featured {
  border: 2px solid var(--wp--preset--color--teal-deep);
  box-shadow: 0 4px 24px rgba(26,60,60,0.1);
}
.hosp-tier-card__badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--wp--preset--font-family--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--wp--preset--color--teal-deep);
  color: var(--wp--preset--color--cream);
  padding: 5px 16px;
  white-space: nowrap;
}
.hosp-tier-card .hosp-cta-primary {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 24px;
  background: var(--wp--preset--color--blush-core);
  color: var(--wp--preset--color--ink);
  text-decoration: none;
  font-weight: 500;
  transition: background 0.25s;
}
.hosp-tier-card .hosp-cta-primary:hover { background: #dfa590; }
.hosp-tier-card .hosp-cta-secondary {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 24px;
  background: var(--wp--preset--color--teal-deep);
  color: var(--wp--preset--color--cream);
  text-decoration: none;
  font-weight: 500;
  transition: background 0.25s;
}
.hosp-tier-card .hosp-cta-outline {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 24px;
  background: transparent;
  color: var(--wp--preset--color--teal-deep);
  border: 1.5px solid rgba(26,60,60,0.15);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.25s;
}
.hosp-tier-card .hosp-cta-outline:hover {
  border-color: var(--wp--preset--color--teal-deep);
  background: rgba(26,60,60,0.03);
}

/* Feature list */
.hosp-feature-list {
  list-style: none;
  margin: 0 0 24px; padding: 0;
}
.hosp-feature-list li {
  font-size: 13.5px;
  color: var(--wp--preset--color--charcoal);
  padding: 6px 0 6px 20px;
  position: relative;
  line-height: 1.45;
}
.hosp-feature-list li::before {
  content: '✦';
  position: absolute;
  left: 0; top: 6px;
  font-size: 8px;
  color: var(--wp--preset--color--gold-core);
}
.hosp-feature-list li.off {
  color: rgba(46,46,44,0.28);
}
.hosp-feature-list li.off::before {
  content: '—';
  color: rgba(46,46,44,0.2);
  font-size: 12px;
  top: 5px;
}


/* ═══════════════════════════════════════════════════
   16. FAQ ACCORDION
   ═══════════════════════════════════════════════════ */
.hosp-faq-item { border-bottom: 1px solid rgba(250,246,240,0.08); }
.hosp-faq-q {
  font-family: var(--wp--preset--font-family--body);
  font-size: 16px;
  font-weight: 500;
  color: var(--wp--preset--color--cream);
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
}
.hosp-faq-q:hover { color: var(--wp--preset--color--blush-core); }
.hosp-faq-ico {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(250,246,240,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  color: var(--wp--preset--color--gold-core);
  transition: transform 0.3s;
}
.hosp-faq-item.open .hosp-faq-ico { transform: rotate(45deg); }
.hosp-faq-a {
  font-size: 14px;
  font-weight: 300;
  color: rgba(250,246,240,0.65);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s, padding 0.3s;
  padding-bottom: 0;
}
.hosp-faq-item.open .hosp-faq-a { max-height: 300px; padding-bottom: 24px; }
