/* ==========================================================================
   Aine Beaute — Unified Stylesheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Font Faces
   -------------------------------------------------------------------------- */

@font-face {
  font-family: 'Albert Sans';
  src: url('/fonts/albert-sans-latin.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Libre Baskerville';
  src: url('/fonts/libre-baskerville-latin.woff2') format('woff2');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Libre Baskerville';
  src: url('/fonts/libre-baskerville-italic-latin.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* --------------------------------------------------------------------------
   2. Custom Properties
   -------------------------------------------------------------------------- */

:root {
  /* Brand colors */
  --color-navy: #0f1458;
  --color-navy-dark: #00003a;
  --color-navy-bg: #070d27;
  --color-purple-navy: #525389;
  --color-purple-navy-hover: #424379;

  /* Secondary / accent */
  --color-steel-blue: #8daebe;
  --color-sage: #5f879a;
  --color-teal: #7ebec5;
  --color-ice-blue: #e7eef1;
  --color-sage-light: #aec4cd;
  --color-lavender-gray: #acadc0;

  /* Greens (services pricing) */
  --color-forest: #013624;
  --color-forest-light: #00472e;
  --color-forest-dark: #00281a;

  /* Neutrals */
  --color-white: #ffffff;
  --color-body-text: #252525;
  --color-dark-gray: #222222;

  /* Error */
  --color-error: #ee0000;
  --color-error-bg: #fff9f9;

  /* Typography */
  --font-body: 'Albert Sans', Helvetica, Arial, Lucida, sans-serif;
  --font-display: 'Libre Baskerville', Georgia, 'Times New Roman', serif;

  /* Layout */
  --content-width: 1200px;
  --transition-speed: 300ms;
}

/* --------------------------------------------------------------------------
   3. Reset & Base
   -------------------------------------------------------------------------- */

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

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-body-text);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--color-steel-blue);
  text-decoration: none;
  transition: color var(--transition-speed) ease;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--color-navy);
  line-height: 1.2;
}

h1 {
  font-size: 80px;
  letter-spacing: -1px;
}

h2 {
  font-size: 60px;
  letter-spacing: -1px;
}

h3 {
  font-size: 45px;
  font-family: var(--font-display);
}

h4 {
  font-size: 30px;
  letter-spacing: -1px;
}

h5 {
  font-size: 25px;
}

h6 {
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.5;
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* --------------------------------------------------------------------------
   4. Utility / Layout
   -------------------------------------------------------------------------- */

.container {
  max-width: var(--content-width);
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.container--narrow {
  max-width: 800px;
}

.container--full {
  max-width: 2560px;
  width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.4;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  text-decoration: none;
}

.btn::after {
  content: '→';
  margin-left: 0.5em;
  display: inline-block;
  transition: transform var(--transition-speed) ease;
}

.btn:hover::after {
  transform: translateX(4px);
}

/* Primary CTA — hero */
.btn--primary {
  background: var(--color-sage-light);
  color: var(--color-navy);
  padding: 0.7em 2em 0.7em 0.7em;
  font-size: 24px;
}

.btn--primary:hover {
  background: var(--color-navy);
  color: var(--color-white);
}

/* Secondary — services CTA, etc. */
.btn--secondary {
  background: var(--color-ice-blue);
  color: var(--color-sage);
  padding: 0.7em 60px;
}

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

/* Header CTA */
.btn--header {
  background: var(--color-purple-navy);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 20px;
}

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

.btn--header:hover {
  background: var(--color-purple-navy-hover);
  color: var(--color-white);
}

/* Form submit */
.btn--submit {
  background: var(--color-navy);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.3em 1em;
  width: 100%;
}

.btn--submit::after {
  display: none;
}

.btn--submit:hover {
  background: var(--color-navy-dark);
  letter-spacing: 4px;
}

/* Instagram link */
.btn--instagram {
  background: var(--color-ice-blue);
  color: var(--color-sage);
  padding: 0.7em 60px;
}

.btn--instagram::after {
  display: none;
}

.btn--instagram:hover {
  background: var(--color-sage);
  color: var(--color-white);
}

/* --------------------------------------------------------------------------
   6. Header
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-navy);
  transition: padding var(--transition-speed) ease;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  padding-bottom: 15px;
}

.site-header__logo img {
  width: 280px;
  transition: width var(--transition-speed) ease;
}

.site-header.is-scrolled .site-header__logo img {
  width: 200px;
}

/* Desktop nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav__list {
  display: flex;
  gap: 25px;
}

.main-nav__link {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-white);
  transition: color var(--transition-speed) ease;
}

.main-nav__link:hover {
  color: var(--color-purple-navy);
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  flex-direction: column;
  gap: 5px;
}

.mobile-menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--color-white);
  transition: all var(--transition-speed) ease;
}

.mobile-menu-toggle.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.mobile-menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* --------------------------------------------------------------------------
   7. Hero Section
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  padding: 80px 0;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: var(--content-width);
  margin: 0 auto;
}

.hero__title {
  color: var(--color-white);
  margin-bottom: 40px;
}

/* --------------------------------------------------------------------------
   8. Section Dividers
   -------------------------------------------------------------------------- */

.divider {
  display: block;
  width: 100%;
  height: 100px;
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center top;
  margin-top: -1px;
}

.divider--top {
  background-image: url('/images/divider-top.png');
}

.divider--bottom {
  background-image: url('/images/divider-bottom.png');
}

/* --------------------------------------------------------------------------
   9. Content Sections
   -------------------------------------------------------------------------- */

.section {
  padding: 80px 0;
}

.section--white {
  background: var(--color-white);
}

.section--parallax {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.section__icon {
  width: auto;
  max-height: 30px;
  margin: 0 auto 20px;
}

.section__title {
  margin-bottom: 40px;
}

.section__subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 30px;
  color: var(--color-steel-blue);
  margin-bottom: 30px;
}

/* White fade overlays for parallax sections */
.section--fade-top::before,
.section--fade-bottom::after {
  content: '';
  display: block;
  height: 150px;
  width: 100%;
  position: absolute;
  left: 0;
  pointer-events: none;
}

.section--fade-top {
  position: relative;
}

.section--fade-top::before {
  top: 0;
  background: linear-gradient(180deg, var(--color-white) 0%, rgba(255, 255, 255, 0) 100%);
}

.section--fade-bottom {
  position: relative;
}

.section--fade-bottom::after {
  bottom: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, var(--color-white) 100%);
}

/* --------------------------------------------------------------------------
   10. Services Grid (homepage)
   -------------------------------------------------------------------------- */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

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

.service-card__image {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 500px;
  border: 10px solid var(--color-white);
  box-shadow: 0 12px 18px -6px rgba(0, 0, 0, 0.3);
  margin: 0 auto 20px;
}

.service-card__title {
  margin-bottom: 15px;
}

.service-card__text {
  max-width: 550px;
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   11. About / Intro Section (homepage)
   -------------------------------------------------------------------------- */

.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.about-intro__image-col {
  overflow: hidden;
}

.about-intro__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-intro__content {
  background: var(--color-steel-blue);
  color: var(--color-white);
  padding: 80px 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-intro__title {
  color: var(--color-white);
  margin-bottom: 20px;
}

.about-intro__text {
  margin-bottom: 30px;
  line-height: 1.6;
}

.about-intro .btn--secondary {
  align-self: flex-start;
}

/* --------------------------------------------------------------------------
   12. Testimonials
   -------------------------------------------------------------------------- */

.testimonials {
  position: relative;
  padding: 80px 0;
}

.testimonials__heading {
  color: var(--color-white);
  font-family: var(--font-display);
  font-style: italic;
  text-align: center;
  margin-bottom: 10px;
}

.testimonials__quotes-icon {
  display: block;
  max-width: 60px;
  margin: 0 auto 30px;
}

/* CSS-only scroll-snap carousel */
.testimonial-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 0;
}

.testimonial-carousel::-webkit-scrollbar {
  display: none;
}

.testimonial-slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  padding: 0 10%;
  text-align: center;
}

.testimonial-slide__text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--color-white);
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-slide__author {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 24px;
  color: var(--color-steel-blue);
}

/* Carousel navigation dots */
.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.testimonial-nav__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: background var(--transition-speed) ease;
  padding: 0;
}

.testimonial-nav__dot.is-active,
.testimonial-nav__dot:hover {
  background: var(--color-white);
}

/* --------------------------------------------------------------------------
   13. Instagram Section
   -------------------------------------------------------------------------- */

.instagram-section {
  padding: 80px 0;
  text-align: center;
}

.instagram-section .section__title {
  margin-bottom: 30px;
}

/* --------------------------------------------------------------------------
   14. Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--color-white);
  padding: 60px 0 30px;
  text-align: center;
}

.site-footer__logo {
  max-width: 280px;
  margin: 0 auto 30px;
}

.site-footer__contact {
  margin-bottom: 30px;
  line-height: 1.8;
}

.site-footer__contact a {
  color: var(--color-white);
}

.site-footer__contact a:hover {
  color: var(--color-steel-blue);
}

/* Social icons */
.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 100px;
  background: var(--color-white);
  color: var(--color-navy-bg);
  transition: all var(--transition-speed) ease;
}

.social-link:hover {
  background: var(--color-steel-blue);
  color: var(--color-white);
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.site-footer__credits {
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.6;
}

.site-footer__credits a {
  color: var(--color-white);
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   15. About Page
   -------------------------------------------------------------------------- */

.about-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 100px 0;
  text-align: center;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}

.about-content__image {
  border-radius: 500px;
  border: 10px solid var(--color-white);
  box-shadow: 0 12px 18px -6px rgba(0, 0, 0, 0.3);
}

.about-content__text p {
  margin-bottom: 20px;
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   16. Services Page
   -------------------------------------------------------------------------- */

.services-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 100px 0;
  text-align: center;
}

/* Service detail blocks */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
}

.service-detail--reverse {
  direction: rtl;
}

.service-detail--reverse > * {
  direction: ltr;
}

.service-detail__image {
  border-radius: 500px;
  border: 10px solid var(--color-white);
  box-shadow: 0 12px 18px -6px rgba(0, 0, 0, 0.3);
  max-width: 400px;
  margin: 0 auto;
}

.service-detail__content h3 {
  margin-bottom: 15px;
}

.service-detail__content p {
  margin-bottom: 20px;
  line-height: 1.7;
}

/* Price list */
.price-section {
  background-color: var(--color-forest);
  background-image: radial-gradient(circle at center, var(--color-forest-light) 0%, var(--color-forest-dark) 100%);
  padding: 80px 0;
}

.price-section__title {
  color: var(--color-white);
  text-align: center;
  margin-bottom: 10px;
}

.price-section__subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 30px;
  color: var(--color-steel-blue);
  text-align: center;
  margin-bottom: 50px;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.price-column__title {
  color: var(--color-white);
  text-align: center;
  margin-bottom: 30px;
}

.price-column__icon {
  display: block;
  max-width: 40px;
  margin: 0 auto 20px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-white);
}

.price-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.price-item__name {
  font-size: 20px;
}

.price-item__price {
  font-weight: 800;
  font-size: 20px;
  white-space: nowrap;
  margin-left: 20px;
}

/* --------------------------------------------------------------------------
   17. Contact Page
   -------------------------------------------------------------------------- */

.contact-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 100px 0;
  text-align: center;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.contact-info {
  background: var(--color-steel-blue);
  color: var(--color-white);
  padding: 80px 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info h3 {
  color: var(--color-white);
  margin-bottom: 20px;
}

.contact-info p {
  line-height: 1.8;
  margin-bottom: 20px;
}

.contact-info a {
  color: var(--color-white);
}

.contact-info a:hover {
  opacity: 0.8;
}

.contact-info__hours {
  width: 50%;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  margin-top: 10px;
}

.contact-info__map {
  margin-top: 20px;
  border-radius: 8px;
  overflow: hidden;
}

.contact-info__map img {
  width: 100%;
}

/* Contact form */
.contact-form-section {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form-section h3 {
  margin-bottom: 30px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-group label {
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  border: 2px solid var(--color-navy);
  background: rgba(141, 174, 190, 0.2);
  color: var(--color-navy);
  padding: 16px;
  font-size: 16px;
  transition: background var(--transition-speed) ease;
}

.form-group input:focus,
.form-group textarea:focus {
  background: transparent;
  outline: none;
  border-color: var(--color-sage);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-navy);
  opacity: 0.6;
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

/* Honeypot — visually hidden */
.form-group--hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.contact-form .btn--submit {
  grid-column: 1 / -1;
  margin-top: 10px;
}

/* Form messages */
.form-message {
  grid-column: 1 / -1;
  padding: 15px;
  text-align: center;
  font-weight: 600;
}

.form-message--success {
  background: var(--color-ice-blue);
  color: var(--color-sage);
}

.form-message--error {
  background: var(--color-error-bg);
  color: var(--color-error);
}

/* --------------------------------------------------------------------------
   18. Animations
   -------------------------------------------------------------------------- */

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate {
  opacity: 0;
}

.animate.is-visible {
  animation: fadeUp 0.8s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

/* --------------------------------------------------------------------------
   19. Responsive — Tablet (max-width: 980px)
   -------------------------------------------------------------------------- */

@media (max-width: 980px) {
  h1 { font-size: 60px; }
  h2 { font-size: 50px; }
  h3 { font-size: 40px; }
  h4 { font-size: 30px; }

  .btn--primary { font-size: 22px; }
  .btn--secondary,
  .btn--instagram { padding: 0.7em 50px; }

  /* Header — mobile */
  .main-nav__list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-navy);
    flex-direction: column;
    padding: 20px 0;
    text-align: center;
    gap: 0;
  }

  .main-nav__list.is-open {
    display: flex;
  }

  .main-nav__list li {
    padding: 12px 0;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .site-header__logo img {
    width: 200px;
  }

  /* Hero */
  .hero {
    padding: 75px 0;
    background-attachment: scroll;
  }

  /* Services grid */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  /* About intro */
  .about-intro {
    grid-template-columns: 1fr;
  }

  .about-intro__content {
    padding: 80px;
  }

  /* Testimonials */
  .testimonial-slide {
    padding: 0 5%;
  }

  /* Service details */
  .service-detail {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .service-detail--reverse {
    direction: ltr;
  }

  .service-detail__image {
    max-width: 300px;
    margin: 0 auto;
  }

  /* Price grid */
  .price-grid {
    grid-template-columns: 1fr;
  }

  /* Contact */
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-info {
    padding: 80px;
  }

  .contact-info__hours {
    width: 60%;
  }

  .contact-form-section {
    padding: 60px 40px;
  }

  /* Parallax fallback for mobile */
  .section--parallax,
  .site-footer,
  .about-hero,
  .services-hero,
  .contact-hero {
    background-attachment: scroll;
  }

  /* About page */
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-content__image {
    max-width: 350px;
    margin: 0 auto;
  }

  .section__subtitle {
    font-size: 26px;
  }
}

/* --------------------------------------------------------------------------
   20. Responsive — Phone (max-width: 767px)
   -------------------------------------------------------------------------- */

@media (max-width: 767px) {
  h1 { font-size: 50px; }
  h2 { font-size: 40px; }
  h3 { font-size: 35px; }
  h4 { font-size: 25px; }

  .btn--primary { font-size: 16px; }
  .btn--secondary,
  .btn--instagram { padding: 0.7em 30px; font-size: 16px; }
  .btn--submit { font-size: 22px; }

  .section {
    padding: 60px 0;
  }

  .hero {
    padding: 60px 0;
    min-height: 60vh;
  }

  .divider {
    height: 80px;
  }

  /* About intro */
  .about-intro__content {
    padding: 40px;
  }

  /* Testimonials */
  .testimonial-slide__author {
    font-size: 20px;
  }

  /* Contact */
  .contact-info {
    padding: 40px;
  }

  .contact-info__hours {
    width: 90%;
  }

  .contact-form-section {
    padding: 40px 20px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  /* Price items */
  .price-item {
    flex-direction: column;
    gap: 5px;
  }

  .price-item__price {
    margin-left: 0;
  }

  .section__subtitle {
    font-size: 22px;
  }

  .site-footer__logo {
    max-width: 200px;
  }
}

/* --------------------------------------------------------------------------
   21. Responsive — Small Phone (max-width: 479px)
   -------------------------------------------------------------------------- */

@media (max-width: 479px) {
  .container {
    width: 95%;
  }

  .about-intro__content {
    padding: 30px 20px;
  }

  .contact-info {
    padding: 30px 20px;
  }
}
