/* ==========================================================================
   Βλαστός Βασίλειος – Ιατρείο Μικρών Ζώων
   Χρωματική παλέτα βάσει brand χρωμάτων: #F0F0D1 / #A7A342 / #3E3E14.
   ========================================================================== */

:root {
  /* Brand colours */
  --color-deep: #3E3E14;        /* σκούρο λαδί - header/footer/dark surfaces, κείμενο */
  --color-deep-2: #53521D;      /* ελαφρώς πιο ανοιχτό σκούρο λαδί, gradients */
  --color-sage: #A7A342;        /* μεσαίο λαδοπράσινο - χρώμα λογότυπου, accents */
  --color-sage-dark: #8D8A37;   /* πιο σκούρο λαδοπράσινο για κουμπιά / hover */
  --color-cream: #F0F0D1;       /* κρεμ χρώμα, χρήση σε dark bg */
  --color-white: #FFFFFF;       /* λευκό, για ομαλό πέρασμα ανάμεσα σε ενότητες */
  --color-bg: #F0F0D1;          /* γενικό φόντο σελίδας */
  --color-bg-alt: #E9E8C3;      /* εναλλασσόμενο φόντο ενοτήτων */
  --color-border: #D5D5B5;
  --color-text: #3E3E14;        /* βασικό κείμενο */
  --color-text-muted: #62623A;

  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;

  --shadow-sm: 0 1px 3px rgba(62, 62, 20, 0.08);
  --shadow-md: 0 8px 24px rgba(62, 62, 20, 0.12);
  --shadow-lg: 0 20px 48px rgba(62, 62, 20, 0.16);

  --header-height: 76px;
  --mobile-bar-height: 64px;

  --transition-fast: 0.18s ease;
  --transition-med: 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   Reset
   ========================================================================== */

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, p, figure {
  margin: 0;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

address {
  font-style: normal;
}

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

/* ==========================================================================
   Accessibility helpers
   ========================================================================== */

.skip-link {
  position: absolute;
  left: 0;
  top: -60px;
  background: var(--color-deep);
  color: var(--color-cream);
  padding: 12px 20px;
  border-radius: 0 0 var(--radius-sm) 0;
  z-index: 1000;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 0;
}

:focus-visible {
  outline: 3px solid var(--color-sage-dark);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ==========================================================================
   Layout helpers
   ========================================================================== */

.container {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 20px;
}

section {
  padding-block: 64px;
}

section[id] {
  scroll-margin-top: var(--header-height);
}

section h2 {
  font-size: clamp(1.6rem, 1.3rem + 1.2vw, 2.25rem);
  letter-spacing: -0.01em;
  color: var(--color-deep);
  margin-bottom: 20px;
}

#benefits-heading,
#services-heading,
#awards-heading {
  text-align: center;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  white-space: nowrap;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast);
}

.btn .icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}

.btn-primary {
  background: var(--color-sage-dark);
  color: #FFFFFF;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--color-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--color-deep);
  border: 2px solid var(--color-sage);
}

.btn-secondary:hover {
  background: var(--color-sage);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-lg {
  min-height: 52px;
  padding: 14px 28px;
  font-size: 1.05rem;
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: linear-gradient(180deg, var(--color-deep) 0%, var(--color-deep-2) 100%);
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--header-height);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.15;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-logo {
  height: 52px;
  width: 52px;
  object-fit: contain;
  flex-shrink: 0;
}

@media (min-width: 900px) {
  .brand-logo {
    height: 104px;
    width: 104px;
  }
}

.brand-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-cream);
  letter-spacing: 0.01em;
}

.brand-subtitle {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-sage);
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.main-nav {
  display: none;
}

.nav-list {
  display: flex;
  gap: 32px;
}

.nav-link {
  color: var(--color-cream);
  font-weight: 500;
  padding: 8px 2px;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--color-sage);
  transition: width var(--transition-fast);
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-header-call {
  display: none;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 36px;
  padding: 0 10px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(240, 240, 209, 0.35);
  color: var(--color-cream);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
}

.lang-toggle span[aria-hidden="true"] {
  font-size: 1rem;
}

.lang-toggle:hover,
.lang-toggle:focus-visible {
  border-color: var(--color-sage);
  background: rgba(167, 163, 66, 0.15);
}

.mobile-nav-lang {
  color: var(--color-cream);
}

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
}

.menu-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 24px;
}

.menu-icon span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--color-cream);
  border-radius: 2px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.menu-toggle[aria-expanded="true"] .menu-icon span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-icon span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-icon span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  background: var(--color-deep-2);
  border-top: 1px solid rgba(240, 240, 209, 0.12);
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  padding: 8px 20px 16px;
}

.mobile-nav-link {
  display: block;
  padding: 14px 4px;
  color: var(--color-cream);
  font-weight: 500;
  border-bottom: 1px solid rgba(240, 240, 209, 0.1);
  min-height: 44px;
}

.mobile-nav-link:last-child {
  border-bottom: none;
}

.mobile-nav-call {
  color: var(--color-sage);
  font-weight: 700;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(62, 62, 20, 0.65) 0%,
    rgba(62, 62, 20, 0.35) 45%,
    rgba(62, 62, 20, 0.7) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-block: 32px;
}

@media (min-width: 480px) {
  .hero-inner {
    padding-block: 64px;
  }
}

.hero-text {
  max-width: 560px;
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  color: var(--color-cream);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.8rem;
  margin-bottom: 14px;
}

.hero h1 {
  font-size: clamp(2rem, 1.6rem + 2vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--color-cream);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.hero-lead {
  margin-top: 20px;
  font-size: 1.1rem;
  color: var(--color-cream);
  opacity: 0.92;
  max-width: 46ch;
  margin-inline: auto;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.hero-actions .btn {
  width: 100%;
  max-width: 320px;
}

.hero .btn-secondary {
  color: var(--color-cream);
  border-color: var(--color-cream);
}

.hero .btn-secondary:hover {
  background: var(--color-sage);
  border-color: var(--color-sage);
  color: var(--color-deep);
}

/* ==========================================================================
   About
   ========================================================================== */

.about {
  background: #F3F0E6;
}

.about-inner {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.about p {
  font-size: 1.1rem;
  color: var(--color-text-muted);
}

/* ==========================================================================
   Benefits
   ========================================================================== */

.benefits {
  background: var(--color-bg-alt);
}

.benefit-card {
  text-align: center;
}

.benefit-card .benefit-icon {
  margin-inline: auto;
}

.benefits-grid,
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.benefit-card,
.service-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: transform var(--transition-med), box-shadow var(--transition-med);
}

.benefit-card:hover,
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.benefit-icon,
.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-sage);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.benefit-icon svg,
.service-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #FFFFFF;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-icon-img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.benefit-card h3,
.service-card h3 {
  font-size: 1.1rem;
  color: var(--color-deep);
  margin-bottom: 8px;
}

.benefit-card p,
.service-card p {
  color: var(--color-text-muted);
  font-size: 0.98rem;
}

/* ==========================================================================
   Υπηρεσίες
   ========================================================================== */

.services {
  background: #F3F0E6;
}

.service-card {
  text-align: center;
}

.service-card .service-icon {
  margin-inline: auto;
}

/* ==========================================================================
   Διακρίσεις
   ========================================================================== */

.awards {
  background: var(--color-bg-alt);
}

.awards-carousel {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.awards-track {
  display: flex;
  overflow: hidden;
  flex: 1 1 100%;
  scroll-behavior: smooth;
  touch-action: pan-y;
}

.awards-slide {
  flex: 0 0 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  transition: transform var(--transition-med);
}

.awards-slide img {
  height: 180px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(var(--shadow-sm));
  -webkit-user-drag: none;
  user-select: none;
  touch-action: pan-y;
}

.awards-nav {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.awards-nav:hover {
  background: var(--color-sage);
}

.awards-nav svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--color-deep);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.awards-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.awards-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-border);
  transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.awards-dot.is-active {
  background: var(--color-sage-dark);
  transform: scale(1.2);
}

/* ==========================================================================
   Διαχωριστικό
   ========================================================================== */

.section-divider {
  background: #F3F0E6;
  display: flex;
  justify-content: center;
  padding-block: 12px;
}

.section-divider-img {
  width: 100%;
  max-width: 640px;
  height: auto;
}

/* ==========================================================================
   Ωράριο Λειτουργίας
   ========================================================================== */

.hours {
  background: var(--color-bg-alt);
}

.hours-inner {
  max-width: 560px;
  margin-inline: auto;
  text-align: center;
}

.hours-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 24px;
  border-bottom: 1px solid var(--color-border);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-day {
  font-weight: 600;
  color: var(--color-deep);
}

.hours-time {
  color: var(--color-text-muted);
  font-variant-numeric: tabular-nums;
}

.hours-closed {
  color: var(--color-sage-dark);
  font-weight: 600;
}

.hours-row.is-today {
  background: var(--color-sage);
}

.hours-row.is-today .hours-day,
.hours-row.is-today .hours-time {
  color: #FFFFFF;
}

.hours-row.is-today .hours-closed {
  color: var(--color-deep);
}

/* ==========================================================================
   Location / Map
   ========================================================================== */

.location {
  background: #F3F0E6;
}

.location-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.location-text {
  text-align: center;
}

.location-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--color-sage-dark);
  font-weight: 600;
  margin-bottom: 16px;
}

.icon-inline {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}

.location address {
  color: var(--color-text-muted);
  margin-bottom: 24px;
  font-size: 1.05rem;
}

.map-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

.map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==========================================================================
   Contact
   ========================================================================== */

.contact {
  background: var(--color-deep);
  color: var(--color-cream);
}

.contact-inner {
  text-align: center;
}

.contact h2 {
  color: var(--color-cream);
}

.contact-lead {
  color: rgba(240, 240, 209, 0.85);
  font-size: 1.1rem;
  max-width: 50ch;
  margin-inline: auto;
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 1.05rem;
}

.contact-item .icon {
  width: 22px;
  height: 22px;
  fill: var(--color-sage);
  flex-shrink: 0;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.contact .btn-secondary {
  color: var(--color-cream);
  border-color: var(--color-sage);
}

.contact .btn-secondary:hover {
  background: var(--color-sage);
  color: var(--color-deep);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--color-deep-2);
  color: rgba(240, 240, 209, 0.85);
  padding-block: 28px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(240, 240, 209, 0.3);
  color: var(--color-cream);
  transition: background-color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  background: var(--color-sage);
  border-color: var(--color-sage);
  color: var(--color-deep);
  transform: translateY(-2px);
}

.footer-social-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-copy {
  font-size: 0.85rem;
  color: rgba(240, 240, 209, 0.6);
}

.footer-copy a {
  color: rgba(240, 240, 209, 0.85);
  font-weight: 600;
}

.footer-copy a:hover {
  color: var(--color-sage);
}

/* ==========================================================================
   Mobile sticky action bar
   ========================================================================== */

.mobile-action-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 950;
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: var(--mobile-bar-height);
  background: rgba(62, 62, 20, 0.32);
  backdrop-filter: blur(28px) saturate(220%);
  -webkit-backdrop-filter: blur(28px) saturate(220%);
  border-top: 1px solid rgba(240, 240, 209, 0.32);
  box-shadow: 0 -8px 32px rgba(20, 20, 8, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.mobile-action-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--color-cream);
  font-weight: 600;
  font-size: 0.95rem;
  min-height: 44px;
  backdrop-filter: blur(28px) saturate(220%);
  -webkit-backdrop-filter: blur(28px) saturate(220%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

.mobile-action-btn:first-child {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 55%),
    rgba(141, 138, 55, 0.4);
}

.mobile-action-btn:last-child {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 55%),
    rgba(83, 82, 29, 0.3);
  border-left: 1px solid rgba(240, 240, 209, 0.22);
}

.mobile-action-btn .icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Only show on small screens; keep page content from being covered */
body.has-mobile-bar {
  padding-bottom: var(--mobile-bar-height);
}

@media (min-width: 769px) {
  .mobile-action-bar {
    display: none;
  }
  body.has-mobile-bar {
    padding-bottom: 0;
  }
}

/* ==========================================================================
   Scroll reveal (progressive enhancement via JS)
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Responsive breakpoints
   ========================================================================== */

/* Tablet and up */
@media (min-width: 640px) {
  .benefits-grid,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero-actions .btn {
    width: auto;
  }
}

/* Desktop nav appears; hamburger + mobile call button hide */
@media (min-width: 900px) {
  :root {
    --header-height: 118px;
  }

  .main-nav {
    display: block;
  }

  .btn-header-call {
    display: inline-flex;
  }

  .menu-toggle,
  .mobile-nav {
    display: none;
  }

  .hero-text {
    text-align: left;
    margin-inline: 0;
  }

  .hero-lead {
    margin-inline: 0;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .hero-overlay {
    background: linear-gradient(
      90deg,
      rgba(62, 62, 20, 0.8) 0%,
      rgba(62, 62, 20, 0.5) 45%,
      rgba(62, 62, 20, 0.15) 75%,
      rgba(62, 62, 20, 0) 100%
    );
  }


  .benefits-grid,
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .awards-track {
    overflow: visible;
    flex-wrap: wrap;
    justify-content: center;
  }

  .awards-slide {
    flex: 0 1 auto;
    padding: 8px 20px;
  }

  .awards-slide img {
    height: 70px;
  }

  .awards-nav,
  .awards-dots {
    display: none;
  }

  .location-inner {
    flex-direction: row;
    align-items: stretch;
  }

  .location-text {
    flex: 1 1 380px;
    text-align: left;
  }

  .location-note {
    justify-content: flex-start;
  }

  .map-frame {
    flex: 1 1 480px;
    aspect-ratio: 16 / 11;
  }

  .contact-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 48px;
    text-align: left;
  }

  .contact-lead {
    margin-inline: 0;
    margin-bottom: 0;
  }

  .contact-details {
    align-items: flex-start;
  }

  .contact-item,
  .contact-actions {
    justify-content: flex-start;
  }

}

@media (min-width: 1100px) {
  section {
    padding-block: 96px;
  }
}

/* Small phones: tighten up spacing slightly */
@media (max-width: 380px) {
  .container {
    padding-inline: 16px;
  }

  .btn-lg {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }
}
