/* ==========================================================================
   Hosta Concierge — Main Stylesheet
   Palette: Teal #19ABBE · Navy #1C3068 · Off-white #F5FAFB
   Type: Cormorant Garamond (display) · Inter (body) · Montserrat (labels)
   ========================================================================== */

/* ---------------------------------------------------------------------------
   1. Custom Properties
   --------------------------------------------------------------------------- */
:root {
  --hc-teal:          #19ABBE;
  --hc-teal-dark:     #1390A0;
  --hc-teal-light:    #E4F4F7;
  --hc-teal-xlight:   #F0FAFB;
  --hc-navy:          #1C3068;
  --hc-navy-dark:     #101E44;
  --hc-white:         #FFFFFF;
  --hc-off-white:     #F5FAFB;
  --hc-text:          #1C3068;
  --hc-text-muted:    #506680;
  --hc-border:        #C0DDE3;

  --hc-font-display:  'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --hc-font-body:     'Inter', system-ui, -apple-system, sans-serif;
  --hc-font-label:    'Montserrat', system-ui, sans-serif;

  --hc-container:     1200px;
  --hc-container-narrow: 760px;
  --hc-radius:        6px;
  --hc-radius-lg:     16px;
  --hc-shadow-sm:     0 2px 8px rgba(28, 48, 104, 0.06);
  --hc-shadow:        0 6px 24px rgba(28, 48, 104, 0.10);
  --hc-shadow-lg:     0 16px 56px rgba(28, 48, 104, 0.16);
  --hc-ease:          cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --hc-dur:           280ms;
  --hc-section-py:    88px;
  --hc-header-h:      72px;
}

/* ---------------------------------------------------------------------------
   2. Reset & Base
   --------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--hc-header-h);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--hc-font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--hc-text);
  background: var(--hc-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }

a { color: var(--hc-teal); text-decoration: none; transition: color var(--hc-dur) var(--hc-ease); }
a:hover { color: var(--hc-teal-dark); }
a:focus-visible { outline: 2px solid var(--hc-teal); outline-offset: 3px; border-radius: 2px; }

ul, ol { list-style: none; }

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

/* ---------------------------------------------------------------------------
   3. Accessibility
   --------------------------------------------------------------------------- */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  clip: auto;
  background: var(--hc-navy);
  color: var(--hc-white);
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  height: auto; width: auto;
  left: 8px; top: 8px;
  padding: 12px 24px;
  z-index: 9999;
  border-radius: var(--hc-radius);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ---------------------------------------------------------------------------
   4. Layout Utilities
   --------------------------------------------------------------------------- */
.hc-container {
  width: min(var(--hc-container), 100% - 40px);
  margin-inline: auto;
}
.hc-container--narrow {
  width: min(var(--hc-container-narrow), 100% - 40px);
}

.hc-section {
  padding-block: var(--hc-section-py);
}

.hc-section-header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 56px;
}
.hc-section-header__lead {
  margin-top: 16px;
  font-size: 1.05rem;
  color: var(--hc-text-muted);
  line-height: 1.65;
}

/* ---------------------------------------------------------------------------
   5. Typography
   --------------------------------------------------------------------------- */
.hc-heading-display {
  font-family: var(--hc-font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--hc-navy);
  letter-spacing: -0.01em;
}
.hc-heading-display em {
  font-style: italic;
  font-weight: 300;
  color: var(--hc-teal);
}
.hc-heading-display--light,
.hc-heading-display--light em { color: var(--hc-white); }

.hc-eyebrow {
  display: inline-block;
  font-family: var(--hc-font-label);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hc-teal);
  margin-bottom: 12px;
}
.hc-eyebrow--light { color: rgba(255,255,255,0.75); }

.hc-text-teal { color: var(--hc-teal); }

/* ---------------------------------------------------------------------------
   6. Buttons
   --------------------------------------------------------------------------- */
.hc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--hc-font-label);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: var(--hc-radius);
  transition: all var(--hc-dur) var(--hc-ease);
  white-space: nowrap;
  border: 2px solid transparent;
}

.hc-btn--primary {
  background: var(--hc-navy);
  color: var(--hc-white);
  border-color: var(--hc-navy);
}
.hc-btn--primary:hover {
  background: var(--hc-navy-dark);
  border-color: var(--hc-navy-dark);
  color: var(--hc-white);
  transform: translateY(-1px);
  box-shadow: var(--hc-shadow);
}

.hc-btn--teal {
  background: var(--hc-teal);
  color: var(--hc-white);
  border-color: var(--hc-teal);
}
.hc-btn--teal:hover {
  background: var(--hc-teal-dark);
  border-color: var(--hc-teal-dark);
  color: var(--hc-white);
  transform: translateY(-1px);
  box-shadow: var(--hc-shadow);
}

.hc-btn--whatsapp {
  background: #25D366;
  color: var(--hc-white);
  border-color: #25D366;
}
.hc-btn--whatsapp:hover {
  background: #1ebe5a;
  border-color: #1ebe5a;
  color: var(--hc-white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.hc-btn--outline {
  background: transparent;
  color: var(--hc-navy);
  border-color: var(--hc-navy);
}
.hc-btn--outline:hover {
  background: var(--hc-navy);
  color: var(--hc-white);
}

.hc-btn--ghost {
  background: rgba(255,255,255,0.12);
  color: var(--hc-white);
  border-color: rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
}
.hc-btn--ghost:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.7);
  color: var(--hc-white);
}

.hc-btn--ghost-light {
  background: transparent;
  color: var(--hc-white);
  border-color: rgba(255,255,255,0.5);
}
.hc-btn--ghost-light:hover {
  background: rgba(255,255,255,0.12);
  color: var(--hc-white);
  border-color: rgba(255,255,255,0.8);
}

.hc-btn--link {
  background: none;
  border-color: transparent;
  padding-inline: 0;
  color: var(--hc-teal);
  font-size: 0.8rem;
}
.hc-btn--link:hover {
  color: var(--hc-navy);
  gap: 12px;
}

.hc-btn--lg {
  padding: 16px 36px;
  font-size: 0.88rem;
}
.hc-btn--sm {
  padding: 9px 18px;
  font-size: 0.72rem;
}

/* ---------------------------------------------------------------------------
   7. Image Placeholder
   --------------------------------------------------------------------------- */
.hc-placeholder {
  background: var(--hc-teal-xlight);
  border: 2px dashed var(--hc-teal);
  border-radius: var(--hc-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.hc-placeholder__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px;
  text-align: center;
}

.hc-placeholder__icon {
  color: var(--hc-teal);
  opacity: 0.6;
}

.hc-placeholder__label {
  font-family: var(--hc-font-label);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hc-teal);
  opacity: 0.8;
  max-width: 160px;
  line-height: 1.4;
}

/* ---------------------------------------------------------------------------
   8. Section Divider
   --------------------------------------------------------------------------- */
.hc-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-block: 8px;
  max-width: 480px;
  margin-inline: auto;
}

.hc-divider__line {
  flex: 1;
  height: 1px;
  background: var(--hc-border);
}

.hc-divider__icon {
  color: var(--hc-teal);
  flex-shrink: 0;
  opacity: 0.75;
}

/* ---------------------------------------------------------------------------
   9. Header & Navigation
   --------------------------------------------------------------------------- */
.hc-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--hc-header-h);
  z-index: 900;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hc-border);
  transition: box-shadow var(--hc-dur) var(--hc-ease),
              background var(--hc-dur) var(--hc-ease);
}
.hc-header.is-scrolled {
  box-shadow: var(--hc-shadow);
}

.hc-header__container {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 100%;
  width: min(var(--hc-container), 100% - 40px);
  margin-inline: auto;
}

.hc-header__brand { flex-shrink: 0; }

.hc-header__logo-link {
  display: flex;
  align-items: center;
}
.hc-header__logo-img {
  width: auto;
  height: 48px;
  object-fit: contain;
}

/* nav */
.hc-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
.hc-nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
}
.hc-nav__list li a {
  font-family: var(--hc-font-label);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hc-text);
  padding: 8px 14px;
  border-radius: var(--hc-radius);
  transition: all var(--hc-dur) var(--hc-ease);
}
.hc-nav__list li a:hover,
.hc-nav__list li.current-menu-item > a {
  color: var(--hc-teal);
  background: var(--hc-teal-light);
}

/* CTA */
.hc-header__cta { flex-shrink: 0; }
.hc-header__cta .hc-btn { padding: 9px 18px; font-size: 0.72rem; }

/* Hamburger */
.hc-header__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  padding: 6px;
  border-radius: var(--hc-radius);
  transition: background var(--hc-dur);
}
.hc-header__toggle:hover { background: var(--hc-teal-light); }
.hc-header__toggle-bar {
  display: block;
  height: 2px;
  background: var(--hc-navy);
  border-radius: 2px;
  transition: transform var(--hc-dur) var(--hc-ease), opacity var(--hc-dur);
}
.hc-header__toggle[aria-expanded="true"] .hc-header__toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hc-header__toggle[aria-expanded="true"] .hc-header__toggle-bar:nth-child(2) { opacity: 0; }
.hc-header__toggle[aria-expanded="true"] .hc-header__toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hc-page-wrap { padding-top: var(--hc-header-h); }

/* ---------------------------------------------------------------------------
   10. Hero Section
   --------------------------------------------------------------------------- */
.hc-hero {
  position: relative;
  min-height: calc(100svh - var(--hc-header-h));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 80px 20px;
}

.hc-hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg,
      var(--hc-navy-dark)  0%,
      var(--hc-navy)       40%,
      #1a6e7a             75%,
      var(--hc-teal)      100%);
  z-index: 0;
}

/* Subtle pattern overlay */
.hc-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 70% 30%, rgba(25, 171, 190, 0.15) 0%, transparent 55%),
                    radial-gradient(circle at 20% 80%, rgba(28, 48, 104, 0.3) 0%, transparent 50%);
}

.hc-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  animation: hcFadeUp 0.9s var(--hc-ease) both;
}

.hc-hero__eyebrow {
  font-family: var(--hc-font-label);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--hc-teal);
  margin-bottom: 16px;
}

.hc-hero__title {
  font-family: var(--hc-font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--hc-white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.hc-hero__title em {
  display: block;
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
}

.hc-hero__tagline {
  font-family: var(--hc-font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: var(--hc-teal);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.hc-hero__desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hc-hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll indicator */
.hc-hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hc-hero__scroll-line {
  display: block;
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  margin: 0 auto;
  animation: hcScrollPulse 2s ease-in-out infinite;
}

/* ---------------------------------------------------------------------------
   11. About Section
   --------------------------------------------------------------------------- */
.hc-about {
  background: var(--hc-white);
}

.hc-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.hc-about__media { position: relative; }
.hc-about__img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  border-radius: var(--hc-radius-lg);
}
.hc-about__accent {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 60%;
  height: 60%;
  border: 2px solid var(--hc-teal);
  border-radius: var(--hc-radius-lg);
  z-index: -1;
  opacity: 0.3;
}

.hc-about__lead {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--hc-text);
  margin-top: 20px;
  margin-bottom: 16px;
  line-height: 1.65;
}
.hc-about__text {
  color: var(--hc-text-muted);
  margin-bottom: 24px;
}
.hc-about__distinction {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  padding-left: 16px;
  border-left: 3px solid var(--hc-teal);
}
.hc-about__distinction-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.hc-about__distinction-mark {
  color: var(--hc-teal);
  font-weight: 700;
  flex-shrink: 0;
}
.hc-about__distinction-item p {
  font-style: italic;
  color: var(--hc-text-muted);
  font-size: 0.95rem;
}
.hc-about__actions {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

/* ---------------------------------------------------------------------------
   12. Services Section
   --------------------------------------------------------------------------- */
.hc-services {
  background: var(--hc-off-white);
}

.hc-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.hc-service-card {
  background: var(--hc-white);
  border-radius: var(--hc-radius-lg);
  padding: 32px;
  border: 1px solid var(--hc-border);
  transition: all var(--hc-dur) var(--hc-ease);
}
.hc-service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--hc-shadow);
  border-color: var(--hc-teal);
}

.hc-service-card__icon {
  width: 56px; height: 56px;
  background: var(--hc-teal-light);
  border-radius: var(--hc-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hc-teal);
  margin-bottom: 20px;
}

.hc-service-card__title {
  font-family: var(--hc-font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--hc-navy);
  margin-bottom: 10px;
}

.hc-service-card__desc {
  font-size: 0.9rem;
  color: var(--hc-text-muted);
  line-height: 1.65;
}

.hc-services__cta {
  margin-top: 56px;
  text-align: center;
}
.hc-services__cta-text {
  font-family: var(--hc-font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--hc-text-muted);
  margin-bottom: 20px;
}

/* ---------------------------------------------------------------------------
   13. Explore Section
   --------------------------------------------------------------------------- */
.hc-explore {
  background: var(--hc-white);
}

.hc-explore__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.hc-explore-card {
  position: relative;
  border-radius: var(--hc-radius-lg);
  overflow: hidden;
  cursor: pointer;
}
.hc-explore-card__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  border-radius: var(--hc-radius-lg);
  transition: transform 0.5s var(--hc-ease);
}
.hc-explore-card:hover .hc-explore-card__img {
  transform: scale(1.04);
}

.hc-explore-card__overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(28,48,104,0.8) 0%, transparent 100%);
  padding: 24px 18px 18px;
  border-radius: 0 0 var(--hc-radius-lg) var(--hc-radius-lg);
}
.hc-explore-card__name {
  font-family: var(--hc-font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--hc-white);
}

/* ---------------------------------------------------------------------------
   14. Hidden Mexico Section
   --------------------------------------------------------------------------- */
.hc-hidden {
  background: var(--hc-navy);
  padding-block: calc(var(--hc-section-py) * 1.2);
}

.hc-hidden__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hc-hidden__lead {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  margin-top: 20px;
  margin-bottom: 20px;
  line-height: 1.7;
}

.hc-hidden__highlight {
  font-family: var(--hc-font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--hc-teal);
  margin-bottom: 32px;
}

.hc-hidden__media { position: relative; }
.hc-hidden__img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  border-radius: var(--hc-radius-lg);
}

.hc-hidden__badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: var(--hc-teal);
  color: var(--hc-white);
  padding: 16px 20px;
  border-radius: var(--hc-radius-lg);
  text-align: center;
  box-shadow: var(--hc-shadow-lg);
}
.hc-hidden__badge-number {
  display: block;
  font-family: var(--hc-font-label);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
}
.hc-hidden__badge-label {
  display: block;
  font-family: var(--hc-font-label);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 4px;
}

/* ---------------------------------------------------------------------------
   15. Why Hosta Section
   --------------------------------------------------------------------------- */
.hc-why {
  background: var(--hc-teal-xlight);
}

.hc-why__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.hc-why-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--hc-white);
  border-radius: var(--hc-radius-lg);
  border: 1px solid var(--hc-border);
  transition: all var(--hc-dur) var(--hc-ease);
}
.hc-why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--hc-shadow);
  border-color: var(--hc-teal);
}

.hc-why-card__icon {
  color: var(--hc-teal);
  margin-inline: auto;
  margin-bottom: 16px;
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hc-why-card__title {
  font-family: var(--hc-font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--hc-navy);
  margin-bottom: 10px;
  line-height: 1.25;
}

.hc-why-card__desc {
  font-size: 0.85rem;
  color: var(--hc-text-muted);
  line-height: 1.6;
}

/* ---------------------------------------------------------------------------
   16. Experiences Section
   --------------------------------------------------------------------------- */
.hc-experiences {
  background: var(--hc-white);
}

.hc-experiences__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.hc-exp-card {
  border-radius: var(--hc-radius-lg);
  overflow: hidden;
  border: 1px solid var(--hc-border);
  background: var(--hc-white);
  transition: all var(--hc-dur) var(--hc-ease);
}
.hc-exp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--hc-shadow-lg);
  border-color: var(--hc-teal);
}

.hc-exp-card__img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
}

.hc-exp-card__body {
  padding: 24px;
}

.hc-exp-card__title {
  font-family: var(--hc-font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--hc-navy);
  margin-bottom: 8px;
}

.hc-exp-card__desc {
  font-size: 0.875rem;
  color: var(--hc-text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.hc-exp-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--hc-font-label);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hc-teal);
  transition: gap var(--hc-dur), color var(--hc-dur);
}
.hc-exp-card__link:hover {
  color: var(--hc-navy);
  gap: 10px;
}

/* ---------------------------------------------------------------------------
   17. Contact CTA Section
   --------------------------------------------------------------------------- */
.hc-contact-cta {
  background: linear-gradient(135deg, var(--hc-navy-dark) 0%, var(--hc-navy) 60%, #1a5e70 100%);
  padding-block: calc(var(--hc-section-py) * 1.3);
}

.hc-contact-cta__inner {
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
}

.hc-contact-cta__services {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-block: 28px;
}
.hc-contact-cta__services span {
  font-family: var(--hc-font-label);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 5px 14px;
  border-radius: 100px;
}

.hc-contact-cta__tagline {
  font-family: var(--hc-font-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--hc-teal);
  margin-bottom: 32px;
}

.hc-contact-cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hc-contact-cta__info {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.hc-contact-cta__info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
}
.hc-contact-cta__info-item svg { color: var(--hc-teal); flex-shrink: 0; }
.hc-contact-cta__info-item a { color: rgba(255,255,255,0.65); }
.hc-contact-cta__info-item a:hover { color: var(--hc-white); }

/* ---------------------------------------------------------------------------
   18. Social Icons
   --------------------------------------------------------------------------- */
.hc-social {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.hc-social__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--hc-border);
  color: var(--hc-text-muted);
  transition: all var(--hc-dur) var(--hc-ease);
  background: var(--hc-white);
}
.hc-social__icon:hover {
  background: var(--hc-teal);
  border-color: var(--hc-teal);
  color: var(--hc-white);
  transform: translateY(-2px);
  box-shadow: var(--hc-shadow-sm);
}

/* ---------------------------------------------------------------------------
   19. Contact Page
   --------------------------------------------------------------------------- */
.hc-page-banner {
  background: var(--hc-off-white);
  padding-block: 56px;
  border-bottom: 1px solid var(--hc-border);
}
.hc-page-banner--teal {
  background: linear-gradient(135deg, var(--hc-navy) 0%, var(--hc-teal-dark) 100%);
  border-bottom: none;
}
.hc-page-banner__title {
  font-family: var(--hc-font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  color: var(--hc-navy);
  line-height: 1.1;
}
.hc-page-banner--teal .hc-page-banner__title { color: var(--hc-white); }
.hc-page-banner__sub {
  font-family: var(--hc-font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--hc-teal);
  margin-top: 8px;
}
.hc-page-banner--teal .hc-page-banner__sub { color: rgba(255,255,255,0.75); }

.hc-contact-page__grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
  align-items: start;
}

/* Form */
.hc-contact-page__form-title {
  font-family: var(--hc-font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--hc-navy);
  margin-bottom: 8px;
}
.hc-contact-page__form-sub {
  color: var(--hc-text-muted);
  margin-bottom: 32px;
}

.hc-form { display: flex; flex-direction: column; gap: 20px; }

.hc-form__row--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.hc-form__field { display: flex; flex-direction: column; gap: 6px; }

.hc-form__label {
  font-family: var(--hc-font-label);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hc-text);
}
.hc-form__required { color: var(--hc-teal); margin-left: 2px; }

.hc-form__input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--hc-border);
  border-radius: var(--hc-radius);
  font-family: var(--hc-font-body);
  font-size: 0.95rem;
  color: var(--hc-text);
  background: var(--hc-white);
  transition: border-color var(--hc-dur), box-shadow var(--hc-dur);
  outline: none;
}
.hc-form__input:focus {
  border-color: var(--hc-teal);
  box-shadow: 0 0 0 3px rgba(25,171,190,0.12);
}
.hc-form__input::placeholder { color: var(--hc-border); }
.hc-form__textarea { resize: vertical; min-height: 140px; }
.hc-form__select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2319ABBE' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer; }

.hc-form__submit-row { margin-top: 4px; }

.hc-form__response {
  font-size: 0.9rem;
  padding: 12px 16px;
  border-radius: var(--hc-radius);
  display: none;
}
.hc-form__response.is-success {
  display: block;
  background: #e8f8f0;
  color: #1a7a4a;
  border: 1px solid #b2dfcc;
}
.hc-form__response.is-error {
  display: block;
  background: #fdf0f0;
  color: #c0392b;
  border: 1px solid #f5c6c6;
}

/* Contact Info sidebar */
.hc-contact-info {
  background: var(--hc-off-white);
  border-radius: var(--hc-radius-lg);
  padding: 32px;
  border: 1px solid var(--hc-border);
  margin-bottom: 24px;
}
.hc-contact-info__title {
  font-family: var(--hc-font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--hc-navy);
  margin-bottom: 24px;
}
.hc-contact-info__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.hc-contact-info__icon {
  width: 44px; height: 44px;
  background: var(--hc-teal-light);
  border-radius: var(--hc-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hc-teal);
  flex-shrink: 0;
}
.hc-contact-info__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 4px;
}
.hc-contact-info__text strong {
  font-family: var(--hc-font-label);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hc-text);
}
.hc-contact-info__text a,
.hc-contact-info__text span { font-size: 0.9rem; color: var(--hc-text-muted); }
.hc-contact-info__text em { font-style: italic; font-size: 0.8rem; color: var(--hc-teal); }

.hc-contact-info__social { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--hc-border); }
.hc-contact-info__social-label {
  font-family: var(--hc-font-label);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hc-text-muted);
  margin-bottom: 12px;
}

.hc-contact-page__img-wrap .hc-placeholder { border-radius: var(--hc-radius-lg); }

/* ---------------------------------------------------------------------------
   20. Footer
   --------------------------------------------------------------------------- */
.hc-footer__main {
  background: var(--hc-navy-dark);
  padding-block: 64px;
}

.hc-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
}

.hc-footer__logo { width: auto; height: 52px; object-fit: contain; filter: brightness(10); opacity: 0.9; }
.hc-footer__tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-top: 12px;
  line-height: 1.5;
}
.hc-footer__social { margin-top: 20px; }
.hc-footer__social .hc-social__icon { border-color: rgba(255,255,255,0.15); background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.5); }
.hc-footer__social .hc-social__icon:hover { background: var(--hc-teal); border-color: var(--hc-teal); color: var(--hc-white); }

.hc-footer__heading {
  font-family: var(--hc-font-label);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}

.hc-footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hc-footer__links li,
.hc-footer__links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
}
.hc-footer__links a:hover { color: var(--hc-teal); }

.hc-footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hc-footer__contact-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
}
.hc-footer__contact-list svg { color: var(--hc-teal); flex-shrink: 0; margin-top: 2px; }
.hc-footer__contact-list a { color: rgba(255,255,255,0.65); }
.hc-footer__contact-list a:hover { color: var(--hc-teal); }

.hc-footer__bar {
  background: var(--hc-navy-dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-block: 20px;
}
.hc-footer__copyright {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
}

/* ---------------------------------------------------------------------------
   21. Blog / Archive
   --------------------------------------------------------------------------- */
.hc-page-content { background: var(--hc-white); }
.hc-entry-content { font-size: 1.0rem; line-height: 1.8; color: var(--hc-text); }
.hc-entry-content h2, .hc-entry-content h3 { font-family: var(--hc-font-display); color: var(--hc-navy); margin-block: 1.5em 0.5em; }
.hc-entry-content p { margin-bottom: 1.25em; }
.hc-entry-content a { color: var(--hc-teal); text-decoration: underline; }
.hc-entry-content ul, .hc-entry-content ol { margin-bottom: 1.25em; padding-left: 1.5em; list-style: revert; }

.hc-page-header { padding-block: 40px 0; }
.hc-page-header__title { font-family: var(--hc-font-display); font-size: 2.5rem; font-weight: 600; color: var(--hc-navy); }

.hc-posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding-top: 40px; }
.hc-post-card { border-radius: var(--hc-radius-lg); overflow: hidden; border: 1px solid var(--hc-border); transition: all var(--hc-dur); }
.hc-post-card:hover { transform: translateY(-4px); box-shadow: var(--hc-shadow); }
.hc-post-card__thumb { aspect-ratio: 16/9; overflow: hidden; }
.hc-post-card__img { width: 100%; height: 100%; object-fit: cover; }
.hc-post-card__body { padding: 20px; }
.hc-post-card__title { font-family: var(--hc-font-display); font-size: 1.2rem; font-weight: 600; color: var(--hc-navy); margin-bottom: 6px; }
.hc-post-card__title a { color: inherit; }
.hc-post-card__title a:hover { color: var(--hc-teal); }
.hc-post-card__meta { font-size: 0.78rem; color: var(--hc-text-muted); margin-bottom: 10px; }
.hc-post-card__excerpt { font-size: 0.875rem; color: var(--hc-text-muted); margin-bottom: 16px; }

/* ---------------------------------------------------------------------------
   22. 404 Page
   --------------------------------------------------------------------------- */
.hc-404 { background: var(--hc-white); }
.hc-404__inner { text-align: center; padding-block: 40px; }
.hc-404__icon { margin: 0 auto 24px; color: var(--hc-teal); opacity: 0.7; }
.hc-404__title { font-family: var(--hc-font-display); font-size: clamp(4rem, 12vw, 8rem); font-weight: 300; color: var(--hc-teal); line-height: 1; margin-bottom: 8px; }
.hc-404__subtitle { font-family: var(--hc-font-display); font-size: 1.75rem; font-weight: 600; color: var(--hc-navy); margin-bottom: 16px; }
.hc-404__desc { color: var(--hc-text-muted); max-width: 400px; margin: 0 auto 32px; }
.hc-404__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------------------------------------------------------------------------
   23. Scroll-reveal Animations
   --------------------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--hc-ease), transform 0.65s var(--hc-ease);
}
[data-reveal="left"]  { transform: translateX(-28px); }
[data-reveal="right"] { transform: translateX(28px); }

[data-reveal].is-revealed {
  opacity: 1;
  transform: translate(0, 0);
}

@keyframes hcFadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes hcScrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
  50%       { opacity: 0.8; transform: scaleY(1);   transform-origin: top; }
}

/* ---------------------------------------------------------------------------
   24. Responsive — Tablet (≤ 1024px)
   --------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  :root { --hc-section-py: 64px; }

  .hc-why__grid { grid-template-columns: repeat(3, 1fr); }
  .hc-footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* ---------------------------------------------------------------------------
   25. Responsive — Mobile (≤ 768px)
   --------------------------------------------------------------------------- */
@media (max-width: 768px) {
  :root {
    --hc-section-py: 48px;
    --hc-header-h: 64px;
  }

  /* Header */
  .hc-nav {
    position: fixed;
    top: var(--hc-header-h);
    left: 0; right: 0;
    background: var(--hc-white);
    border-bottom: 1px solid var(--hc-border);
    padding: 16px 20px 24px;
    transform: translateY(-110%);
    transition: transform var(--hc-dur) var(--hc-ease);
    box-shadow: var(--hc-shadow);
    z-index: 899;
  }
  .hc-nav.is-open { transform: translateY(0); }

  .hc-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }
  .hc-nav__list li a { padding: 12px 16px; font-size: 0.8rem; }

  .hc-header__toggle { display: flex; }
  .hc-header__cta { display: none; }

  /* Hero */
  .hc-hero__actions { flex-direction: column; align-items: center; }
  .hc-hero__scroll { display: none; }

  /* About */
  .hc-about__grid { grid-template-columns: 1fr; gap: 40px; }
  .hc-about__media { order: -1; }
  .hc-about__accent { display: none; }

  /* Services */
  .hc-services__grid { grid-template-columns: 1fr; }

  /* Explore */
  .hc-explore__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  /* Hidden Mexico */
  .hc-hidden__grid { grid-template-columns: 1fr; gap: 40px; }
  .hc-hidden__badge { position: static; display: inline-block; margin-top: 16px; }

  /* Why Hosta */
  .hc-why__grid { grid-template-columns: repeat(2, 1fr); }

  /* Experiences */
  .hc-experiences__grid { grid-template-columns: 1fr; }

  /* Contact CTA */
  .hc-contact-cta__actions { flex-direction: column; align-items: center; }
  .hc-contact-cta__info { flex-direction: column; align-items: center; gap: 16px; }

  /* Contact Page */
  .hc-contact-page__grid { grid-template-columns: 1fr; gap: 40px; }
  .hc-form__row--2col { grid-template-columns: 1fr; }
  .hc-form__input { font-size: 1rem; } /* prevent iOS auto-zoom on focus */

  /* Footer */
  .hc-footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .hc-footer__col--brand { text-align: center; }
  .hc-footer__social { justify-content: center; }
  .hc-footer__social .hc-social { justify-content: center; }

  /* Blog */
  .hc-posts-grid { grid-template-columns: 1fr; }

  /* 404 */
  .hc-404__actions { flex-direction: column; align-items: center; }
}

/* Small mobile (≤ 480px) */
@media (max-width: 480px) {
  .hc-explore__grid { grid-template-columns: 1fr; }
  .hc-why__grid     { grid-template-columns: 1fr; }
  .hc-hero          { padding: 60px 20px; }
}

/* ---------------------------------------------------------------------------
   26. Responsive — Micro-mobile (< 420px)
   Covers: iPhone SE, Galaxy A-series, narrow Android
   --------------------------------------------------------------------------- */
@media (max-width: 419px) {
  :root {
    --hc-section-py: 40px;
    --hc-header-h:   58px;
  }

  /* Tighter horizontal breathing room */
  .hc-container,
  .hc-container--narrow {
    width: min(var(--hc-container), 100% - 24px);
  }

  /* -- Buttons ------------------------------------------------------------ */
  /* Remove nowrap so text can break if truly needed */
  .hc-btn {
    white-space: normal;
    text-align: center;
    padding: 12px 18px;
    font-size: 0.76rem;
    letter-spacing: 0.04em;
  }

  .hc-btn--lg {
    padding: 13px 20px;
    font-size: 0.8rem;
  }

  /* Full-width + centered in every stacked action group */
  .hc-hero__actions .hc-btn,
  .hc-about__actions .hc-btn,
  .hc-contact-cta__actions .hc-btn,
  .hc-404__actions .hc-btn,
  .hc-form__submit-row .hc-btn {
    width: 100%;
    justify-content: center;
  }

  /* About "View services" link-button doesn't need full width */
  .hc-about__actions .hc-btn--link {
    width: auto;
  }

  /* -- Typography ---------------------------------------------------------- */
  .hc-hero__title   { font-size: 2rem; }
  .hc-hero__tagline { font-size: 1rem; }
  .hc-hero__desc    { font-size: 0.875rem; }
  .hc-hero          { padding: 48px 12px 56px; }

  .hc-section-header       { margin-bottom: 32px; }
  .hc-section-header__lead { font-size: 0.95rem; }

  /* -- About --------------------------------------------------------------- */
  /* Change portrait 3/4 → landscape 4/3 so the image
     doesn't tower over the text on a narrow screen       */
  .hc-about__img  { aspect-ratio: 4/3; }
  .hc-about__actions { flex-direction: column; align-items: stretch; gap: 12px; }

  /* -- Services ------------------------------------------------------------ */
  .hc-service-card { padding: 22px 18px; }
  .hc-service-card__icon { width: 48px; height: 48px; }

  /* -- Explore ------------------------------------------------------------- */
  .hc-explore-card__name { font-size: 1rem; }

  /* -- Hidden Mexico ------------------------------------------------------- */
  /* Same portrait → landscape swap */
  .hc-hidden__img    { aspect-ratio: 4/3; }
  .hc-hidden__badge  { width: 100%; text-align: center; margin-top: 12px; }

  /* -- Why Hosta ----------------------------------------------------------- */
  .hc-why-card { padding: 22px 16px; }

  /* -- Experiences --------------------------------------------------------- */
  .hc-exp-card__body  { padding: 18px 16px; }
  .hc-exp-card__title { font-size: 1.1rem; }

  /* -- Contact CTA --------------------------------------------------------- */
  .hc-contact-cta__services span {
    font-size: 0.62rem;
    padding: 4px 10px;
  }
  .hc-contact-cta__tagline  { font-size: 1.1rem; }
  .hc-contact-cta__info-item { font-size: 0.8rem; }

  /* -- Contact page form --------------------------------------------------- */
  .hc-form__input   { font-size: 1rem; } /* Avoids iOS auto-zoom on focus */
  .hc-contact-info  { padding: 24px 18px; }

  /* -- Footer -------------------------------------------------------------- */
  .hc-footer__main  { padding-block: 44px 36px; }
  .hc-footer__grid  { gap: 28px; }

  /* -- Header ---------------------------------------------- */
  .hc-header__logo-img { height: 38px; }

  /* -- Page banner --------------------------------------------------------- */
  .hc-page-banner   { padding-block: 36px; }

  /* -- 404 ----------------------------------------------------------------- */
  .hc-404__title    { font-size: 4.5rem; }
  .hc-404__subtitle { font-size: 1.4rem; }
  .hc-404__actions  { flex-direction: column; align-items: stretch; }
}
