/* ========================================
   TerrazzaPonente B&B — Style Sheet
   ======================================== */

/* --- CSS Variables --- */
:root {
  --primary: #4A5D23;
  --primary-light: #6B8A3F;
  --primary-dark: #364518;
  --secondary: #C4703F;
  --secondary-light: #D4915F;
  --accent: #B8943E;
  --accent-light: #D4B35A;
  --bg: #FAF6F0;
  --bg-alt: #F2EDE4;
  --text: #2C1810;
  --text-light: #5A4738;
  --white: #FFFFFF;
  --shadow: 0 4px 20px rgba(44, 24, 16, 0.08);
  --shadow-lg: 0 8px 40px rgba(44, 24, 16, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --nav-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

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

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

a {
  color: var(--secondary);
  text-decoration: none;
  transition: color var(--transition);
}

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

/* --- Skip to content --- */
.skip-to-content {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 0 0 var(--radius) var(--radius);
  z-index: 10000;
  font-weight: 500;
  transition: top var(--transition);
}

.skip-to-content:focus {
  top: 0;
  color: var(--white);
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
}

h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Sections --- */
section {
  padding: 80px 0;
}

section:nth-child(even) {
  background-color: var(--bg-alt);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(74, 93, 35, 0.08);
  z-index: 1000;
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.nav-logo:hover {
  color: var(--primary-dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width var(--transition);
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--bg-alt);
  border: 1px solid rgba(74, 93, 35, 0.15);
  border-radius: 8px;
  padding: 4px;
  cursor: pointer;
}

.lang-btn {
  padding: 4px 10px;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--transition);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

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

.btn-primary:hover {
  background: var(--secondary-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(196, 112, 63, 0.3);
}

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

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

.btn-large {
  padding: 16px 36px;
  font-size: 1.05rem;
  border-radius: 10px;
}

.btn-booking {
  background: linear-gradient(135deg, var(--secondary), #A85A2F);
  color: var(--white);
}

.btn-booking:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(196, 112, 63, 0.35);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}

.btn-whatsapp:hover {
  background: #20BA5A;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all var(--transition);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  background: var(--text);
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(44, 24, 16, 0.3) 0%,
    rgba(44, 24, 16, 0.15) 40%,
    rgba(44, 24, 16, 0.5) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--white);
  max-width: 800px;
  padding: 0 24px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  line-height: 1.1;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 400;
  opacity: 0.95;
  margin-bottom: 2rem;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 2rem;
  color: var(--white);
}

.hero-badge svg {
  color: var(--accent-light);
}

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

.hero-cta .btn {
  padding: 14px 32px;
  font-size: 1rem;
}

.hero-cta .btn-outline {
  border-color: var(--white);
  color: var(--white);
}

.hero-cta .btn-outline:hover {
  background: var(--white);
  color: var(--text);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--white);
  opacity: 0.7;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* --- Image utilities --- */
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-rounded {
  border-radius: var(--radius);
}

.img-placeholder {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-light), var(--secondary));
  color: var(--white);
  aspect-ratio: 16/10;
}

.img-placeholder span {
  font-style: italic;
  font-size: 0.9rem;
  opacity: 0.85;
  text-align: center;
  padding: 12px;
}

/* --- About / La Struttura --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-text p {
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.about-text .highlight {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--primary);
  border-left: 3px solid var(--accent);
  padding-left: 20px;
  margin: 1.5rem 0;
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-images .img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.about-images .img-wrap:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16/9;
}

.about-images .img-wrap:not(:first-child) {
  aspect-ratio: 4/3;
}

.about-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-images .img-wrap:hover img {
  transform: scale(1.05);
}

.img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(transparent, rgba(44, 24, 16, 0.7));
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
}

/* --- Room Cards --- */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}

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

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

.room-card-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

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

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

.room-card-body {
  padding: 28px;
}

.room-card-body h3 {
  font-family: var(--font-display);
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.room-capacity {
  font-size: 0.9rem;
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 16px;
}

.room-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.room-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-light);
}

.room-features li svg {
  flex-shrink: 0;
  color: var(--primary);
  margin-top: 2px;
}

/* --- Breakfast --- */
.breakfast-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
}

.breakfast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 2rem;
}

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

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

.breakfast-card-body {
  padding: 28px;
}

.breakfast-card-body h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.price-tag {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--secondary);
  background: rgba(196, 112, 63, 0.1);
  padding: 4px 14px;
  border-radius: 20px;
}

.breakfast-card-body p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-top: 12px;
  line-height: 1.8;
}

.breakfast-note {
  text-align: center;
  font-style: italic;
  color: var(--text-light);
  background: var(--white);
  padding: 24px 32px;
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
  max-width: 800px;
  margin: 0 auto;
}

/* --- Info Grid --- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.info-item:hover {
  transform: translateY(-3px);
}

.info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(74, 93, 35, 0.08);
  border-radius: 12px;
  color: var(--primary);
}

.info-item h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.info-item p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* --- Dintorni --- */
.dintorni-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.dintorni-col h3 {
  font-family: var(--font-display);
  color: var(--primary-dark);
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

.dintorni-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dintorni-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-light);
}

.dintorni-list li svg {
  flex-shrink: 0;
  color: var(--secondary);
}

.dintorni-list a {
  color: var(--text-light);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}

.dintorni-list a:hover {
  color: var(--secondary);
  border-bottom-color: var(--secondary);
}

.dintorni-distance {
  font-weight: 600;
  color: var(--primary);
  margin-left: auto;
  white-space: nowrap;
}

.map-container {
  margin-top: 48px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16/9;
  background: var(--bg-alt);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--text-light);
  background: linear-gradient(135deg, var(--bg-alt), var(--bg));
}

.map-placeholder svg {
  color: var(--primary);
  opacity: 0.5;
}

/* --- Reviews --- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 2.5rem;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform var(--transition);
}

.review-card:hover {
  transform: translateY(-4px);
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 24px;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.25;
  line-height: 1;
}

.review-text {
  font-style: italic;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.review-author {
  font-weight: 700;
  color: var(--text);
  font-size: 0.9rem;
}

.review-stars {
  color: var(--accent);
  margin-bottom: 12px;
  display: flex;
  gap: 2px;
}

.reviews-badge {
  text-align: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 24px 40px;
  border-radius: var(--radius-lg);
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin: 0 auto;
  font-size: 1.1rem;
  font-weight: 600;
}

.reviews-badge-wrap {
  text-align: center;
}

.reviews-badge .score {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-item .info-icon {
  width: 44px;
  height: 44px;
}

.contact-item a {
  font-weight: 500;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-actions .btn {
  justify-content: center;
  font-size: 1rem;
  padding: 16px 32px;
}

/* --- Footer --- */
.footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.7);
  padding: 48px 0 24px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}

.footer-brand .nav-logo {
  color: var(--white);
  margin-bottom: 12px;
  display: block;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: 8px;
  transition: color var(--transition);
}

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

.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.8rem;
}

.footer-legal-codes {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-legal-codes span {
  opacity: 0.6;
}

/* --- Cookie Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--text);
  color: var(--white);
  padding: 20px 24px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

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

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-inner p {
  font-size: 0.9rem;
  flex: 1;
  min-width: 280px;
}

.cookie-inner a {
  color: var(--accent-light);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

/* --- Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* --- Responsive --- */

/* Tablet */
@media (max-width: 1024px) {
  .about-grid {
    gap: 32px;
  }

  .dintorni-layout {
    gap: 32px;
  }

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

/* Mobile */
@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  section {
    padding: 60px 0;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--bg);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px 32px;
    gap: 24px;
    transform: translateX(100%);
    transition: transform var(--transition);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 1.05rem;
  }

  .nav-cta-mobile {
    display: block !important;
  }

  .hamburger {
    display: flex;
  }

  .nav-right .btn {
    display: none;
  }

  .hero h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

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

  .about-images {
    order: -1;
  }

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

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

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

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

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

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

  .footer-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .footer-legal-codes {
    justify-content: center;
  }

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

  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* Focus states */
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Print */
@media print {
  .navbar, .cookie-banner, .hero-scroll {
    display: none;
  }

  .hero {
    height: auto;
    min-height: auto;
    padding: 40px 0;
  }

  section {
    padding: 24px 0;
    break-inside: avoid;
  }
}
