/* Pousada Marajó - Estilos */
:root {
  --green-dark: #1a3c34;
  --green-mid: #2d5a4a;
  --green-light: #4a7c6a;
  --cream: #f5f0e8;
  --cream-dark: #e8dfd0;
  --sand: #c4a77d;
  --sand-dark: #a68b5c;
  --white: #fff;
  --text: #2c2c2c;
  --text-muted: #5a5a5a;
  --shadow: 0 4px 20px rgba(26, 60, 52, 0.12);
  --radius: 8px;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Source Sans 3', -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--cream);
}

a {
  color: var(--green-mid);
  text-decoration: none;
}

a:hover {
  color: var(--green-dark);
  text-decoration: underline;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Header */
.header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 52px;
  width: auto;
  display: block;
}

.logo:hover {
  text-decoration: none;
  opacity: 0.9;
}

.nav {
  display: flex;
  gap: 1.5rem;
}

.nav a {
  color: var(--text);
  font-weight: 500;
  text-decoration: none;
}

.nav a:hover,
.nav a.active {
  color: var(--green-mid);
}

.nav a.active {
  font-weight: 600;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.header-phone {
  color: var(--text);
  font-weight: 500;
}

.header-phone:hover {
  color: var(--green-mid);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

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

.btn-whatsapp:hover {
  background: #20bd5a;
  text-decoration: none;
  color: var(--white);
}

.btn-cardapio {
  background: var(--beige);
  color: var(--green-dark);
  border: 1px solid var(--green-mid);
}

.btn-cardapio:hover {
  background: var(--green-mid);
  color: var(--white);
  text-decoration: none;
  border-color: var(--green-mid);
}

.btn-reserva {
  background: var(--green-mid);
  color: var(--white);
}

.btn-reserva:hover {
  background: var(--green-dark);
  text-decoration: none;
  color: var(--white);
}

.btn-primary {
  background: var(--green-mid);
  color: var(--white);
  padding: 0.65rem 1.25rem;
}

.btn-primary:hover {
  background: var(--green-dark);
  text-decoration: none;
  color: var(--white);
}

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

.btn-outline:hover {
  background: var(--green-mid);
  color: var(--white);
  text-decoration: none;
}

/* Menu toggle (mobile) */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 28px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  display: block;
  height: 3px;
  background: var(--green-dark);
  border-radius: 2px;
}

/* Hero (home) */
.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 3rem 1.5rem;
  overflow: hidden;
}

/* Slider de fotos no hero */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-slide--active {
  opacity: 1;
  z-index: 1;
}

/* Botões de navegação do hero */
.hero-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--green-dark);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}

.hero-nav-btn:hover {
  background: var(--white);
  transform: translateY(-50%) scale(1.08);
}

.hero-prev {
  left: 1.5rem;
}

.hero-next {
  right: 1.5rem;
}

.hero-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.5rem;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

.hero-dot.is-active {
  background: var(--white);
  transform: scale(1.2);
}

/* Galeria */
.gallery-section {
  padding: 3rem 0;
  background: var(--cream);
}

.gallery-section h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--green-dark);
  margin: 0 0 1.5rem;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-grid--three {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 768px) {
  .gallery-grid--three {
    grid-template-columns: 1fr;
  }
}

.ilha-gallery-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
  aspect-ratio: 4/3;
}

.gallery-item {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--green-dark);
  aspect-ratio: 4/3;
  transition: transform 0.2s, box-shadow 0.2s;
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow);
}

.gallery-item:focus {
  outline: 2px solid var(--green-mid);
  outline-offset: 2px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  vertical-align: middle;
}

/* Lightbox / slideshow */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  cursor: pointer;
}

.lightbox-content {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  z-index: 3;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lightbox-close {
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
}

.lightbox-close::after {
  content: '×';
}

.lightbox-prev {
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev::after {
  content: '‹';
  font-size: 2.5rem;
  line-height: 1;
}

.lightbox-next {
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next::after {
  content: '›';
  font-size: 2.5rem;
  line-height: 1;
}

@media (max-width: 640px) {
  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
    left: 0.5rem;
    right: 0.5rem;
    font-size: 1.25rem;
  }
}

/* Slider de acomodações */
.acomodacoes-slider-section {
  padding: 2rem 0 3rem;
  background: var(--cream);
}

.acomodacoes-slider {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 3rem;
}

.acomodacoes-track {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.acomodacoes-slide {
  display: none;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
}

.acomodacoes-slide.is-active {
  display: block;
  animation: acomodacoes-fade 0.4s ease;
}

@keyframes acomodacoes-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.acomodacoes-slide-img {
  width: 100%;
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.acomodacoes-slide-content {
  padding: 1.5rem;
}

.acomodacoes-slide-content h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--green-dark);
  margin: 0 0 0.5rem;
}

.acomodacoes-slide-content p {
  margin: 0 0 1rem;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.5;
}

.acomodacoes-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: var(--white);
  color: var(--green-dark);
  cursor: pointer;
  box-shadow: var(--shadow);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  line-height: 1;
  transition: background 0.2s, color 0.2s;
}

.acomodacoes-slider-btn:hover {
  background: var(--green-mid);
  color: var(--white);
}

.acomodacoes-prev {
  left: 0.5rem;
}

.acomodacoes-prev::after {
  content: '‹';
}

.acomodacoes-next {
  right: 0.5rem;
}

.acomodacoes-next::after {
  content: '›';
}

.acomodacoes-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.acomodacoes-dots button {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 50%;
  background: var(--cream-dark);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.acomodacoes-dots button:hover {
  background: var(--green-light);
}

.acomodacoes-dots button.is-active {
  background: var(--green-mid);
  transform: scale(1.2);
}

@media (max-width: 640px) {
  .acomodacoes-slider {
    padding: 0 2.5rem;
  }

  .acomodacoes-slider-btn {
    width: 40px;
    height: 40px;
    left: 0.25rem;
    right: 0.25rem;
  }

  .acomodacoes-prev { left: 0.25rem; }
  .acomodacoes-next { right: 0.25rem; }
}

/* Contact section (home) */
.contact-section {
  padding: 3rem 0;
  background: var(--white);
}

.contact-section h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--green-dark);
  margin: 0 0 1.5rem;
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.contact-item {
  text-align: center;
  padding: 1rem;
  background: var(--cream);
  border-radius: var(--radius);
}

.contact-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}

.contact-item a,
.contact-item p {
  margin: 0;
  color: var(--text);
}

.contact-item a:hover {
  color: var(--green-mid);
}

.social-links {
  text-align: center;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.social-links a {
  font-weight: 500;
}

/* Page hero (internal pages) */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  color: var(--white);
  padding: 2.5rem 1rem;
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin: 0 0 0.25rem;
}

.page-hero p {
  margin: 0;
  opacity: 0.9;
  font-size: 1.05rem;
}

/* Content section */
.content-section {
  padding: 2rem 0 3rem;
}

.content-section h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--green-dark);
  margin: 2rem 0 1rem;
}

.content-section h2:first-child {
  margin-top: 0;
}

.content-section h3 {
  font-size: 1.2rem;
  color: var(--green-mid);
  margin: 1.5rem 0 0.5rem;
}

.content-section p {
  margin: 0 0 1rem;
}

/* Ilha de Marajó: duas colunas (texto + como chegar) */
.ilha-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.ilha-col-text h2:first-child,
.ilha-col-transport h2 {
  margin-top: 0;
}

.ilha-col-transport .transport-block {
  margin-bottom: 1.25rem;
}

.ilha-text-img {
  margin: 1.25rem 0;
  padding: 0;
}

.ilha-text-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.ilha-text-img--left {
  float: left;
  width: 45%;
  margin-right: 1.25rem;
  margin-bottom: 0.75rem;
}

.ilha-text-img--right {
  float: right;
  width: 45%;
  margin-left: 1.25rem;
  margin-bottom: 0.75rem;
}

.content-section--ilha .ilha-col-text::after {
  content: "";
  display: table;
  clear: both;
}

@media (max-width: 900px) {
  .ilha-two-col {
    grid-template-columns: 1fr;
  }

  .ilha-col-transport h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
  }

  .ilha-text-img--left,
  .ilha-text-img--right {
    float: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

.transport-block {
  background: var(--white);
  padding: 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--green-light);
}

.transport-block h3 {
  margin-top: 0;
}

.cta-box {
  background: var(--cream-dark);
  padding: 1.5rem;
  border-radius: var(--radius);
  margin-top: 1.5rem;
  text-align: center;
}

.cta-box .btn {
  margin: 0.5rem;
}

/* Footer */
.footer {
  background: #1a1a1a;
  color: var(--white);
  padding: 2.5rem 0 0;
  margin-top: auto;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr 1fr 1fr;
  gap: 2.5rem 3rem;
  align-items: start;
  padding-bottom: 2rem;
  max-width: 1100px;
}

.footer-col {
  min-width: 0;
}

.footer-logo-col {
  padding-top: 0.25rem;
}

.footer-logo-link {
  display: inline-block;
}

.footer-logo-link:hover {
  text-decoration: none;
  opacity: 0.9;
}

.footer-logo-link img {
  height: 90px;
  width: auto;
  display: block;
}

.footer-title {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 1rem;
}

.footer-contact-list,
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-contact-list li,
.footer-links li {
  margin: 0 0 0.6rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer-contact-list li:last-child,
.footer-links li:last-child {
  margin-bottom: 0;
}

.footer-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  background-color: var(--green-light);
  -webkit-mask-size: 14px 14px;
  mask-size: 14px 14px;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.footer-icon-phone {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M22 16.92v3a2 2 0 01-2.18 2 19.79 19.79 0 01-8.63-3.07 19.5 19.5 0 01-6-6 19.79 19.79 0 01-3.07-8.67A2 2 0 014.11 2h3a2 2 0 012 1.72 12.84 12.84 0 00.7 2.81 2 2 0 01-.45 2.11L8.09 9.91a16 16 0 006 6l1.27-1.27a2 2 0 012.11-.45 12.84 12.84 0 002.81.7A2 2 0 0122 16.92z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M22 16.92v3a2 2 0 01-2.18 2 19.79 19.79 0 01-8.63-3.07 19.5 19.5 0 01-6-6 19.79 19.79 0 01-3.07-8.67A2 2 0 014.11 2h3a2 2 0 012 1.72 12.84 12.84 0 00.7 2.81 2 2 0 01-.45 2.11L8.09 9.91a16 16 0 006 6l1.27-1.27a2 2 0 012.11-.45 12.84 12.84 0 002.81.7A2 2 0 0122 16.92z'/%3E%3C/svg%3E");
}

.footer-icon-whatsapp {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E");
}

.footer-icon-email {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'/%3E%3Cpolyline points='22,6 12,13 2,6'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'/%3E%3Cpolyline points='22,6 12,13 2,6'/%3E%3C/svg%3E");
}

.footer-icon-pin {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0118 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0118 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
}

.footer-contact-list a,
.footer-address,
.footer-links a {
  color: var(--white);
  font-size: 0.95rem;
  text-decoration: none;
}

.footer-contact-list a:hover,
.footer-links a:hover {
  color: var(--cream);
  text-decoration: underline;
}

.footer-address {
  line-height: 1.4;
}

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

.footer-social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  color: var(--green-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}

.footer-social-btn:hover {
  opacity: 0.9;
  transform: scale(1.05);
  text-decoration: none;
  color: var(--green-dark);
}

.footer-social-btn svg {
  width: 22px;
  height: 22px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1rem 1.25rem;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.85;
  color: var(--white);
}

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-logo-col {
    grid-column: 1 / -1;
    text-align: center;
  }

  .footer-logo-link img {
    height: 80px;
    margin: 0 auto;
  }
}

@media (max-width: 500px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }

  .footer-logo-col {
    text-align: center;
  }

  .footer-contact-list li,
  .footer-links li {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }
}

/* Layout */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.page-main {
  flex: 1;
}

/* Mobile */
@media (max-width: 768px) {
  .nav,
  .header-contact {
    display: none;
  }

  .nav.open,
  .header-contact.open {
    display: flex;
  }

  .header-inner {
    flex-direction: row;
  }

  .nav {
    width: 100%;
    flex-direction: column;
    order: 4;
    padding: 1rem 0 0;
    border-top: 1px solid var(--cream-dark);
    margin-top: 0.5rem;
  }

  .header-contact {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    order: 5;
    padding-bottom: 0.5rem;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    min-height: 60vh;
  }
}

@media (max-width: 640px) {
  .hero-nav-btn {
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
  }

  .hero-prev { left: 0.75rem; }
  .hero-next { right: 0.75rem; }

  .hero-dots {
    bottom: 1rem;
  }

  .hero-dot {
    width: 10px;
    height: 10px;
  }
}
