/* ============================================
   Clinica Mireia — Premium Beauty & SPA
   Color Palette:
   - White: #FFFFFF
   - Cream: #F5F0EB
   - Dark Grey: #2D2D2D
   - Gold Accent: #C9A96E
   - Rose Accent: #E8A598
   ============================================ */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Lato:wght@300;400;700&display=swap");

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  color: #2d2d2d;
  background-color: #ffffff;
  line-height: 1.7;
  font-size: 16px;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

/* ============================================ Typography */
h1,
h2,
h3,
h4,
h5 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  line-height: 1.2;
  color: #2d2d2d;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}
h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}
h3 {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
}
h4 {
  font-size: 1.2rem;
}

.section-label {
  font-family: "Lato", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c9a96e;
  display: block;
  margin-bottom: 0.75rem;
}

/* ============================================ Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section--cream {
  background-color: #f5f0eb;
}

.section__header {
  text-align: center;
  margin-bottom: 60px;
}

.section__header p {
  max-width: 600px;
  margin: 1rem auto 0;
  color: #6b6b6b;
  font-size: 1.05rem;
}

/* ============================================ Header / Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo__name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #2d2d2d;
  letter-spacing: 0.05em;
  line-height: 1;
}

.logo__tagline {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c9a96e;
  margin-top: 3px;
}

.nav__list {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav__link {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2d2d2d;
  position: relative;
  padding-bottom: 3px;
}

.nav__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #c9a96e;
  transition: width 0.3s ease;
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__link:hover,
.nav__link.active {
  color: #c9a96e;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  background: #c9a96e;
  color: #ffffff !important;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition:
    background 0.3s ease,
    transform 0.2s ease;
}

.nav__cta:hover {
  background: #b8945a;
  transform: translateY(-1px);
}

.nav__cta::after {
  display: none !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger span {
  display: block;
  height: 1.5px;
  background: #2d2d2d;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: #ffffff;
  padding: 24px;
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
  z-index: 999;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  color: #2d2d2d;
}

.mobile-nav a:hover {
  color: #c9a96e;
}

/* ============================================ Hero Banner */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 72px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("/images/banner.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 17, 14, 0.42);
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  padding: 0 24px;
  max-width: 800px;
}

.hero__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #c9a96e;
  display: block;
  margin-bottom: 1.2rem;
}

.hero__title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.hero__subtitle {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  font-family: "Lato", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 2px;
  text-decoration: none;
}

.btn--primary {
  background: #c9a96e;
  color: #ffffff;
}

.btn--primary:hover {
  background: #b8945a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 169, 110, 0.4);
}

.btn--outline {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
}

.btn--dark {
  background: #2d2d2d;
  color: #ffffff;
}

.btn--dark:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.4);
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(0.5);
  }
}

/* ============================================ Services Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: #ffffff;
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 4px;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.service-card__img {
  height: 220px;
  overflow: hidden;
  background: #f5f0eb;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.service-card:hover .service-card__img img {
  transform: scale(1.05);
}

.service-card__icon {
  font-size: 2.5rem;
  line-height: 1;
}

.service-card__body {
  padding: 24px;
}

.service-card__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #2d2d2d;
}

.service-card__text {
  font-size: 0.9rem;
  color: #6b6b6b;
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-card__link {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c9a96e;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-card__link:hover {
  color: #b8945a;
}

.service-card__link::after {
  content: "→";
  transition: transform 0.2s ease;
}

.service-card:hover .service-card__link::after {
  transform: translateX(4px);
}

/* ============================================ Why Us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

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

.why-item__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
}

.why-item__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.why-item__text {
  font-size: 0.92rem;
  color: #6b6b6b;
  line-height: 1.65;
}

/* ============================================ Booking Form */
.booking-section {
  background: linear-gradient(135deg, #2d2d2d 0%, #3d3530 100%);
  color: #ffffff;
}

.booking-section .section-label {
  color: #c9a96e;
}

.booking-section h2 {
  color: #ffffff;
}

.booking-section .section__header p {
  color: rgba(255, 255, 255, 0.65);
}

.booking-form {
  max-width: 680px;
  margin: 0 auto;
}

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

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

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

.form-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  color: #ffffff;
  font-family: "Lato", sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  transition:
    border-color 0.3s ease,
    background 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #c9a96e;
  background: rgba(255, 255, 255, 0.1);
}

.form-select {
  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='%23C9A96E' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}

.form-select option {
  background: #2d2d2d;
  color: #ffffff;
}

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

.form-submit {
  margin-top: 28px;
  text-align: center;
}

.form-note {
  margin-top: 12px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================ Services Page */
.services-full {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}

.service-row:nth-child(even) .service-row__img {
  order: 2;
}

.service-row:nth-child(even) .service-row__content {
  order: 1;
}

.service-row__img {
  background: #f5f0eb;
  overflow: hidden;
  min-height: 420px;
}

.service-row__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-row__placeholder {
  width: 100%;
  height: 100%;
  min-height: 420px;
  background: linear-gradient(135deg, #f5f0eb 0%, #ede5da 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.service-row__content {
  padding: 60px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-row__price {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.price-amount {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 600;
  color: #c9a96e;
}

.price-duration {
  font-size: 0.85rem;
  color: #6b6b6b;
  font-weight: 300;
}

.service-row__features {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-row__features li {
  font-size: 0.9rem;
  color: #4d4d4d;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-row__features li::before {
  content: "";
  width: 18px;
  height: 1px;
  background: #c9a96e;
  flex-shrink: 0;
}

/* ============================================ About Page */
.about-hero {
  padding: 140px 0 80px;
  background: #f5f0eb;
  text-align: center;
}

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

.about-story__img {
  border-radius: 4px;
  overflow: hidden;
  height: 500px;
  background: #f5f0eb;
}

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

.about-story__placeholder {
  width: 100%;
  height: 500px;
  background: linear-gradient(135deg, #f5f0eb 0%, #ede5da 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  border-radius: 4px;
}

.about-story__text p {
  font-size: 1rem;
  color: #4d4d4d;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.value-card {
  background: #ffffff;
  padding: 36px 28px;
  border-radius: 4px;
  border-left: 3px solid #c9a96e;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.value-card__icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.value-card__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.value-card__text {
  font-size: 0.9rem;
  color: #6b6b6b;
  line-height: 1.65;
}

/* ============================================ Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-info__item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-info__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.contact-info__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 4px;
}

.contact-info__value {
  font-size: 0.95rem;
  color: #2d2d2d;
  line-height: 1.6;
}

.contact-form {
  background: #f5f0eb;
  padding: 44px 40px;
  border-radius: 4px;
}

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

.contact-form .form-label {
  color: #5a5a5a;
}

.contact-form .form-input,
.contact-form .form-select,
.contact-form .form-textarea {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.1);
  color: #2d2d2d;
}

.contact-form .form-input::placeholder,
.contact-form .form-textarea::placeholder {
  color: #a0a0a0;
}

.contact-form .form-input:focus,
.contact-form .form-select:focus,
.contact-form .form-textarea:focus {
  background: #ffffff;
  border-color: #c9a96e;
}

.contact-form .form-select {
  background-color: #ffffff;
  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='%23C9A96E' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.contact-form .form-select option {
  background: #ffffff;
  color: #2d2d2d;
}

.map-placeholder {
  margin-top: 60px;
  height: 360px;
  background: #f5f0eb;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: #8b8b8b;
  border: 1px solid rgba(201, 169, 110, 0.2);
}

.map-placeholder span:first-child {
  font-size: 2.5rem;
}

/* ============================================ Page Hero (inner pages) */
.page-hero {
  padding: 140px 0 72px;
  background: #f5f0eb;
  text-align: center;
}

.page-hero__breadcrumb {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #a0a0a0;
  margin-bottom: 1rem;
}

.page-hero__breadcrumb a:hover {
  color: #c9a96e;
}

/* ============================================ Legal Pages */
.legal-content {
  max-width: 860px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: #2d2d2d;
}

.legal-content h3 {
  font-size: 1.15rem;
  margin-top: 1.8rem;
  margin-bottom: 0.75rem;
}

.legal-content p {
  margin-bottom: 1rem;
  color: #4d4d4d;
  font-size: 0.95rem;
  line-height: 1.8;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content ul li {
  color: #4d4d4d;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 0.4rem;
}

.legal-content a {
  color: #c9a96e;
  text-decoration: underline;
}

.legal-date {
  font-size: 0.85rem;
  color: #a0a0a0;
  margin-bottom: 2.5rem;
}

/* ============================================ Footer */
.site-footer {
  background: #1e1c1a;
  color: rgba(255, 255, 255, 0.65);
  padding: 60px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand__name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.05em;
}

.footer-brand__tagline {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 16px;
}

.footer-brand__desc {
  font-size: 0.87rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 12px;
}

.footer-col__title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-col__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col__list a {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
}

.footer-col__list a:hover {
  color: #c9a96e;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.87rem;
}

.footer-contact-item span:first-child {
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom__copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom__links {
  display: flex;
  gap: 20px;
}

.footer-bottom__links a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.3s ease;
}

.footer-bottom__links a:hover {
  color: #c9a96e;
}

/* ============================================ Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #1e1c1a;
  color: rgba(255, 255, 255, 0.85);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 2px solid #c9a96e;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner__text {
  flex: 1;
  min-width: 260px;
  font-size: 0.88rem;
  line-height: 1.6;
}

.cookie-banner__text a {
  color: #c9a96e;
  text-decoration: underline;
}

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

.cookie-btn {
  padding: 10px 22px;
  font-family: "Lato", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn--accept {
  background: #c9a96e;
  color: #ffffff;
}

.cookie-btn--accept:hover {
  background: #b8945a;
}

.cookie-btn--reject {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.cookie-btn--reject:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
}

/* ============================================ Divider */
.divider {
  width: 48px;
  height: 1px;
  background: #c9a96e;
  margin: 16px auto;
}

.divider--left {
  margin-left: 0;
}

/* ============================================ Highlight Box */
.highlight-box {
  background: rgba(201, 169, 110, 0.08);
  border: 1px solid rgba(201, 169, 110, 0.25);
  border-radius: 4px;
  padding: 28px 32px;
  margin-top: 40px;
}

.highlight-box__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #2d2d2d;
}

.highlight-box__text {
  font-size: 0.9rem;
  color: #6b6b6b;
}

/* ============================================ Hours Table */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
}

.hours-table td {
  padding: 6px 0;
  font-size: 0.9rem;
  color: #4d4d4d;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.hours-table td:first-child {
  font-weight: 700;
  color: #2d2d2d;
  width: 140px;
}

/* ============================================ Alert / Success */
.form-success {
  display: none;
  background: rgba(201, 169, 110, 0.12);
  border: 1px solid rgba(201, 169, 110, 0.4);
  border-radius: 3px;
  padding: 16px 20px;
  font-size: 0.9rem;
  color: #2d2d2d;
  margin-top: 16px;
  text-align: center;
}

/* ============================================ Responsive */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .service-row {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .service-row:nth-child(even) .service-row__img,
  .service-row:nth-child(even) .service-row__content {
    order: unset;
  }

  .service-row__placeholder {
    min-height: 280px;
  }

  .service-row__content {
    padding: 40px 32px;
  }

  .about-story {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .nav__list {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .values-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .contact-form {
    padding: 32px 24px;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2.4rem;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.75rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }
}
