/* === GOOGLE FONTS === */
@import url("https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;1,300;1,400&family=Lora:ital,wght@0,400;0,600;0,700;1,400;1,600&display=swap");

/* === MOBILE-FIRST RESET === */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

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

ul {
  list-style: none;
}

/* === CSS VARIABLES === */
:root {
  --primary: #5c3d2e;
  --secondary: #8b6914;
  --accent: #c17f3e;
  --bg-light: #fdf6ec;
  --bg-dark: #2d1e0f;
  --text: #3a2512;
  --text-light: #6b4c2a;
  --green: #4a7c3f;
  --border: #d4b896;
  --white: #ffffff;
  --shadow: 0 2px 8px rgba(92, 61, 46, 0.15);
  --shadow-lg: 0 4px 20px rgba(92, 61, 46, 0.2);
  --radius: 4px;
  --transition: 0.3s ease;
}

/* === TYPOGRAPHY === */
body {
  font-family: "Lora", "Palatino Linotype", Georgia, serif;
  color: var(--text);
  background: var(--bg-light);
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Merriweather", Georgia, "Times New Roman", serif;
  color: var(--primary);
  line-height: 1.3;
  font-weight: 700;
}

h1 {
  font-size: 1.8rem;
}
h2 {
  font-size: 1.5rem;
}
h3 {
  font-size: 1.25rem;
}
h4 {
  font-size: 1.1rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text);
}

.text-light {
  color: var(--text-light);
}
.text-center {
  text-align: center;
}
.text-accent {
  color: var(--accent);
}

/* === LAYOUT === */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section {
  padding: 3rem 0;
}

.section-title {
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
  text-align: center;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 0.5rem auto 1.5rem;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 2rem;
}

/* === HEADER === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-light);
  border-bottom: 2px solid var(--border);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-lg);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--primary);
  font-family: "Merriweather", serif;
  font-weight: 700;
}

.site-logo svg {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

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

.logo-name {
  font-size: 1rem;
  line-height: 1.2;
}

.logo-tagline {
  font-size: 0.7rem;
  font-weight: 300;
  color: var(--text-light);
  font-style: italic;
}

/* === NAV === */
.site-nav {
  display: none;
}

.site-nav ul {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.site-nav a {
  font-family: "Merriweather", serif;
  font-size: 0.85rem;
  color: var(--text);
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition:
    color var(--transition),
    border-color var(--transition);
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--primary);
  border-bottom-color: var(--accent);
}

.header-cta {
  display: none;
}

/* Burger */
.burger-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}

.burger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  transition:
    transform var(--transition),
    opacity var(--transition);
}

.burger-btn.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger-btn.is-open span:nth-child(2) {
  opacity: 0;
}
.burger-btn.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

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

.mobile-nav a {
  font-family: "Merriweather", serif;
  font-size: 1.4rem;
  color: var(--bg-light);
  padding: 0.5rem 1rem;
  transition: color var(--transition);
}

.mobile-nav a:hover {
  color: var(--accent);
}

.mobile-nav-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--bg-light);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-family: "Merriweather", serif;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-align: center;
}

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

.btn-primary:hover {
  background: var(--bg-dark);
  border-color: var(--bg-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

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

.btn-accent {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn-accent:hover {
  background: var(--secondary);
  border-color: var(--secondary);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

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

/* === HERO BANNER === */
.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--bg-dark);
}

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

.hero-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--bg-dark) 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(45, 30, 15, 0.75) 0%,
    rgba(45, 30, 15, 0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 3rem 1rem;
  color: var(--white);
  max-width: 650px;
}

.hero-title {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  font-style: italic;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* === SECTIONS === */
.section-light {
  background: var(--bg-light);
}

.section-warm {
  background: #f5e8d0;
}

.section-dark {
  background: var(--bg-dark);
  color: var(--bg-light);
}

.section-dark h2,
.section-dark h3 {
  color: var(--bg-light);
}

.section-dark p {
  color: rgba(253, 246, 236, 0.85);
}

/* About section */
.about-grid {
  display: grid;
  gap: 2rem;
}

.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.img-placeholder {
  width: 100%;
  height: 300px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 3rem;
  border-radius: var(--radius);
}

/* === CARDS GRID === */
.cards-grid {
  display: grid;
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-image {
  height: 220px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.card-image-placeholder {
  width: 100%;
  height: 100%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2.5rem;
}

.card-body {
  padding: 1.25rem;
}

.card-title {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.card-text {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap var(--transition);
}

.card-link:hover {
  gap: 0.6rem;
}

/* === PRODUCT CARDS === */
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-image {
  height: 200px;
  overflow: hidden;
  background: var(--accent);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 3rem;
}

.product-body {
  padding: 1.25rem;
}

.product-name {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.product-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.product-price {
  font-family: "Merriweather", serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1rem;
}

.product-price small {
  font-size: 0.75rem;
  color: var(--text-light);
  display: block;
  font-weight: 400;
}

/* === ANIMALS GALLERY === */
.animals-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0.5rem 0 1.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.animals-scroll::-webkit-scrollbar {
  height: 4px;
}
.animals-scroll::-webkit-scrollbar-track {
  background: var(--border);
}
.animals-scroll::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 2px;
}

.animal-card {
  flex: 0 0 250px;
  scroll-snap-align: start;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
}

.animal-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.animal-card-placeholder {
  width: 100%;
  height: 180px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 3rem;
}

.animal-card-body {
  padding: 0.75rem;
}

.animal-name {
  font-family: "Merriweather", serif;
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.animal-desc {
  font-size: 0.8rem;
  color: var(--text-light);
  font-style: italic;
}

/* === GALLERY GRID === */
.gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item-placeholder {
  width: 100%;
  height: 200px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
}

/* === FORMS === */
.form-wrapper {
  background: var(--white);
  padding: 2rem 1.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-title {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  text-align: center;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.form-label .required {
  color: #c0392b;
  margin-left: 2px;
}

.form-control {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font-family: "Lora", serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
  appearance: none;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(193, 127, 62, 0.2);
}

.form-control.error {
  border-color: #c0392b;
}

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

select.form-control {
  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='%235c3d2e' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.5rem;
}

.form-error {
  font-size: 0.8rem;
  color: #c0392b;
  margin-top: 0.25rem;
  display: none;
}

.form-success {
  background: #d4edda;
  color: #155724;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  display: none;
  font-size: 0.9rem;
}

/* === CONTACT INFO === */
.contact-info {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

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

.contact-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-label {
  font-size: 0.75rem;
  color: var(--text-light);
  display: block;
  margin-bottom: 0.15rem;
}

.contact-value {
  font-size: 0.9rem;
  color: var(--text);
}

.map-placeholder {
  background: var(--accent);
  border-radius: var(--radius);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  font-style: italic;
}

/* === ANIMAL CARE PAGE === */
.care-section {
  margin-bottom: 3rem;
}

.care-section:last-child {
  margin-bottom: 0;
}

.care-header {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.care-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.care-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.care-image-placeholder {
  width: 100%;
  height: 250px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 4rem;
  border-radius: var(--radius);
}

.care-list {
  list-style: none;
  display: grid;
  gap: 0.5rem;
  margin-top: 1rem;
}

.care-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

.care-list li::before {
  content: "✓";
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* === EXPERIENCE BLOCKS === */
.experience-grid {
  display: grid;
  gap: 1rem;
}

.experience-item {
  background: var(--white);
  border-left: 4px solid var(--accent);
  padding: 1.25rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow);
}

.experience-number {
  font-family: "Merriweather", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.experience-label {
  font-size: 0.95rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.experience-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
}

/* === CTA SECTION === */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--bg-dark) 100%);
  padding: 3rem 1rem;
  text-align: center;
  color: var(--white);
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
}

/* === SCHEDULE TABLE === */
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.schedule-table th,
.schedule-table td {
  padding: 0.6rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.schedule-table th {
  background: var(--primary);
  color: var(--white);
  font-family: "Merriweather", serif;
  font-size: 0.8rem;
}

.schedule-table tr:nth-child(even) td {
  background: #faf0e4;
}

/* === FOOTER === */
.site-footer {
  background: var(--bg-dark);
  color: var(--bg-light);
  padding: 3rem 1rem 1rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col h4 {
  font-family: "Merriweather", serif;
  font-size: 0.95rem;
  color: var(--accent);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col ul {
  display: grid;
  gap: 0.5rem;
}

.footer-col a {
  color: rgba(253, 246, 236, 0.75);
  font-size: 0.875rem;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: rgba(253, 246, 236, 0.75);
}

.footer-contact-icon {
  flex-shrink: 0;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(253, 246, 236, 0.1);
  color: var(--bg-light);
  font-size: 1.1rem;
  transition:
    background var(--transition),
    transform var(--transition);
}

.social-link:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.footer-newsletter form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.footer-newsletter input[type="email"] {
  flex: 1;
  min-width: 0;
  padding: 0.6rem 0.75rem;
  font-size: 0.875rem;
  background: rgba(253, 246, 236, 0.1);
  border: 1px solid rgba(253, 246, 236, 0.2);
  border-radius: var(--radius);
  color: var(--bg-light);
  font-family: "Lora", serif;
}

.footer-newsletter input::placeholder {
  color: rgba(253, 246, 236, 0.5);
}

.footer-newsletter input:focus {
  outline: none;
  border-color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(253, 246, 236, 0.1);
  padding-top: 1.5rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(253, 246, 236, 0.5);
  margin-bottom: 0.5rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  font-size: 0.8rem;
}

.footer-legal a {
  color: rgba(253, 246, 236, 0.5);
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: var(--accent);
}

/* === COOKIE BANNER === */
.cookie-banner,
#cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-dark, #2d1e0f);
  color: #fdf6ec;
  padding: 1rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  flex-wrap: wrap;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
  flex: 1;
  color: rgba(253, 246, 236, 0.85);
}

.cookie-banner p a {
  color: var(--accent, #c17f3e);
  text-decoration: underline;
}

.cookie-btns {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cookie-btns button,
.btn-sm {
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  border-radius: var(--radius);
  font-family: "Merriweather", serif;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary,
#cookie-accept {
  background: var(--accent);
  color: var(--white);
  border: 2px solid var(--accent);
}

.btn-primary:hover,
#cookie-accept:hover {
  background: var(--secondary);
  border-color: var(--secondary);
}

.btn-outline,
#cookie-reject {
  background: transparent;
  color: rgba(253, 246, 236, 0.75);
  border: 2px solid rgba(253, 246, 236, 0.3);
}

.btn-outline:hover,
#cookie-reject:hover {
  border-color: rgba(253, 246, 236, 0.7);
  color: #fdf6ec;
}

/* Legacy .cookie-inner support */
.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* === PAGE HERO (inner pages) === */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--bg-dark) 100%);
  padding: 3rem 1rem;
  color: var(--white);
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.page-hero .breadcrumb {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

.page-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition);
}

.page-hero .breadcrumb a:hover {
  color: var(--accent);
}

/* === LEGAL PAGES === */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.legal-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

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

.legal-content ol {
  list-style: decimal;
}

.legal-content li {
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  color: var(--text);
}

/* === SCROLL REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* === BREADCRUMB === */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-light);
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--text-light);
  transition: color var(--transition);
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb-sep {
  color: var(--border);
}

/* ===========================
   BREAKPOINTS
   =========================== */

/* --- 768px --- */
@media (min-width: 768px) {
  h1 {
    font-size: 2.25rem;
  }
  h2 {
    font-size: 1.85rem;
  }
  h3 {
    font-size: 1.4rem;
  }

  .hero-title {
    font-size: 2.6rem;
  }

  .about-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .about-image img {
    height: 380px;
  }

  .img-placeholder {
    height: 380px;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .care-header {
    grid-template-columns: 1fr 1.5fr;
    align-items: start;
  }

  .experience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item img,
  .gallery-item-placeholder {
    height: 280px;
  }

  .cookie-inner {
    flex-direction: row;
    align-items: center;
  }

  .cookie-text {
    flex: 1;
  }
}

/* --- 1024px --- */
@media (min-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }

  .burger-btn {
    display: none;
  }
  .site-nav {
    display: block;
  }
  .header-cta {
    display: inline-block;
  }

  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .experience-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item img,
  .gallery-item-placeholder {
    height: 320px;
  }

  .map-placeholder {
    height: 320px;
  }
}

@media (min-width: 1200px) {
  .container {
    padding: 0 2rem;
  }
}
