:root {
  --color-primary: #0d47a1;
  --color-primary-dark: #0b3c8a;
  --color-text: #1f2430;
  --color-text-soft: #5d6470;
  --color-bg: #f7f4ee;
  --color-bg-soft: #fbf9f5;
  --color-white: #ffffff;
  --color-border: rgba(31, 36, 48, 0.1);
  --shadow-soft: 0 20px 40px rgba(0, 0, 0, 0.06);
  --radius: 18px;
  --transition: all 0.28s ease;
  --container: 1240px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg-soft);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

p {
  margin: 0 0 1.1rem;
  color: var(--color-text-soft);
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  line-height: 1.06;
  color: var(--color-text);
}

h1 {
  font-size: clamp(3rem, 6vw, 5.9rem);
}

h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

h3 {
  font-size: 1.8rem;
}

.container {
  width: min(92%, var(--container));
  margin: 0 auto;
}

.section {
  padding: 110px 0;
}

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

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-heading--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-label {
  margin-bottom: 12px;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.section-label--light {
  color: rgba(255, 255, 255, 0.75);
}

.eyebrow {
  margin-bottom: 18px;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.text-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--color-primary);
  font-weight: 600;
  position: relative;
}

.text-link::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-top: 4px;
  transition: var(--transition);
}

.text-link:hover {
  color: var(--color-primary-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
}

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

.btn--primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
}

.btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(4px);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

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

.btn--light:hover {
  transform: translateY(-1px);
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(251, 249, 245, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(31, 36, 48, 0.06);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 88px;
}

.site-logo {
  flex-shrink: 0;
}

.site-logo img {
    width: 170px !important;
    height: auto !important;
    display: block;
  }

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: 0.4px;
    color: var(--color-primary);
  }

  .site-nav a:hover {
    opacity: 0.7;
  }

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 0.92rem;
  font-weight: 600;
}

.header-cta:hover {
  background: var(--color-primary-dark);
}

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

.hero__media,
.hero__overlay {
  position: absolute;
  inset: 0;
}

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

.hero__overlay {
    background:
      linear-gradient(
        90deg,
        rgba(13, 21, 31, 0.78) 0%,
        rgba(13, 21, 31, 0.50) 50%,
        rgba(13, 21, 31, 0.25) 100%
      );
  }

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 120px 0;
}

.hero h1,
.hero .hero__lead {
  color: var(--color-white);
}

.hero__lead {
  max-width: 620px;
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* GRIDS */
.intro-grid,
.host-grid,
.identity-grid,
.location-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}

.intro-grid__image img,
.host-grid__image img,
.identity-grid__image img,
.location-grid__map img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.host-grid__image img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.intro-grid__image img,
.identity-grid__image img,
.location-grid__map img {
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

/* ROOMS */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.room-card {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(31, 36, 48, 0.04);
}

.room-card__image {
  display: block;
  overflow: hidden;
}

.room-card__image img {
  aspect-ratio: 5 / 4;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.room-card__body {
  padding: 26px 24px 28px;
}

.room-card__body p {
  margin-bottom: 0.8rem;
}

/* CTA */
.cta {
  padding: 110px 0;
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  color: var(--color-white);
}

.cta__inner {
  max-width: 760px;
  text-align: center;
}

.cta h2,
.cta p {
  color: var(--color-white);
}

.cta p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* FOOTER */
.site-footer {
  background: #14263a;
  color: rgba(255, 255, 255, 0.84);
  padding-top: 70px;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 40px;
}

.site-footer__brand img {
  width: 220px;
}

.site-footer__col h3 {
  margin-bottom: 14px;
  color: var(--color-white);
  font-size: 1.5rem;
}

.site-footer__col p,
.site-footer__col a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.96rem;
}

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

.site-footer__bottom {
  padding: 18px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__bottom p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

/* RESPONSIVE */
@media (max-width: 1080px) {
  .site-header__inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 16px 0;
  }

  .site-nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .intro-grid,
  .host-grid,
  .identity-grid,
  .location-grid,
  .site-footer__top {
    grid-template-columns: 1fr;
  }

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

  .hero {
    min-height: 80vh;
  }

  .hero__content {
    max-width: 100%;
  }
}

@media (max-width: 680px) {
  .section,
  .cta {
    padding: 80px 0;
  }

  .site-header__inner {
    min-height: auto;
  }

  .site-logo img {
    width: 150px;
  }

  .header-cta {
    display: none;
  }

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

  .btn,
  .btn--ghost,
  .btn--primary {
    width: 100%;
    max-width: 280px;
  }
}'.site-logo img {
    height: 48px;
    width: auto;
  }'
.lang-switch {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(13, 71, 161, 0.2);
  border-radius: 999px;
  overflow: hidden;
  margin-left: 1rem;
}

.lang-switch a {
  padding: 0.35rem 0.7rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-decoration: none;
  color: #0d47a1;
  background: #fff;
  transition: all 0.2s ease;
  border-radius: 6px;
}

.lang-switch a:hover {
  background: rgba(13, 71, 161, 0.08);
}

.lang-switch a.active {
  background: #0d47a1;
  color: #fff;
}
  .site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(251, 249, 245, 0.94);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(31, 36, 48, 0.06);
  }
  
  .site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    min-height: 88px;
  }
  
  .site-logo {
    display: inline-block;
    flex-shrink: 0;
  }
  
  .site-logo img {
    height: 58px;
    width: auto;
    display: block;
  }
  
  .site-nav {
    margin-left: auto;
  }
  
  .site-nav ul {
    display: flex;
    align-items: center;
    gap: 34px;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  .site-nav a {
    font-size: 0.98rem;
    font-weight: 500;
    color: var(--color-text);
  }
  
  .site-nav a:hover {
    color: var(--color-primary);
  }
  
  .lang-switch {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 10px;
    font-size: 0.9rem;
  }
  
  .header-cta,
  .mobile-cta a {
    display: inline-block;
    width: auto;
    padding: 12px 18px;
    border-radius: 6px;
    background: var(--color-primary);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
  }
  .mobile-cta {
    padding-top: 20px;
  }
  
  .header-cta:hover,
  .mobile-cta a:hover {
    background: var(--color-primary-dark);
  }
  
  .mobile-cta {
    display: none;
  }
  
  .nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
  }
  
  .nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 0 auto;
    background: var(--color-text);
    border-radius: 2px;
    transition: 0.25s ease;
  }
  
  @media (max-width: 980px) {
    .site-header__inner {
      min-height: 78px;
    }
  
    .site-logo img {
      height: 48px;
    }
  
    .header-cta {
      display: none;
    }
  
    .nav-toggle {
      display: flex;
      margin-left: auto;
    }
  
    .site-nav {
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background: #fbf9f5;
      border-bottom: 1px solid rgba(31, 36, 48, 0.08);
      box-shadow: 0 18px 30px rgba(0, 0, 0, 0.06);
      padding: 10px 0 20px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-8px);
      transition: 0.25s ease;
    }
  
    .site-nav ul {
      flex-direction: column;
      align-items: flex-start;
      gap: 0;
      padding: 0 24px;
    }
  
    .site-nav li {
      width: 100%;
      border-bottom: 1px solid rgba(31, 36, 48, 0.06);
    }
  
    .site-nav li:last-child {
      border-bottom: 0;
    }
  
    .site-nav a {
      display: block;
      width: 100%;
      padding: 14px 0;
    }
  
    .lang-switch {
      display: flex;
      gap: 8px;
      padding: 14px 0;
      margin-left: 0;
    }
  
    .lang-switch a {
      width: auto;
      padding: 0;
    }
  
    .mobile-cta {
      display: block;
      padding-top: 14px;
    }
  
    .mobile-cta a {
      width: 100%;
    }
  
    .site-header.menu-open .site-nav {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
  
    .site-header.menu-open .nav-toggle span:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
    }
  
    .site-header.menu-open .nav-toggle span:nth-child(2) {
      opacity: 0;
    }
  
    .site-header.menu-open .nav-toggle span:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
    }
  }.mobile-cta a {
    display: inline-block !important;
    width: auto !important;
    padding: 10px 16px !important;
    border-radius: 6px !important;
    background: var(--color-primary) !important;
    color: #fff !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
  }.mobile-cta {
    padding-top: 20px;
  }.hero {
    position: relative;
  }
  
  .hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: var(--color-primary);
  }.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.2px;
    text-decoration: none;
    transition: all 0.28s ease;
    cursor: pointer;
  }
  
  .btn--primary {
    background: var(--color-primary);
    color: #fff;
    border: 1px solid var(--color-primary);
    box-shadow: 0 10px 24px rgba(47, 93, 139, 0.18);
  }
  
  .btn--primary:hover {
    transform: translateY(-1px);
    background: #24496d;
    border-color: #24496d;
  }
  
  .btn--secondary {
    background: rgba(255, 255, 255, 0.72);
    color: var(--color-primary);
    border: 1px solid rgba(47, 93, 139, 0.28);
    backdrop-filter: blur(6px);
  }
  
  .btn--secondary:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.9);
    border-color: var(--color-primary);
  }
  
  .btn--text {
    min-height: auto;
    padding: 0 0 6px 0;
    border: 0;
    border-radius: 0;
    background: none;
    color: var(--color-primary);
    box-shadow: none;
    position: relative;
  }
  
  .btn--text::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 42%;
    height: 1px;
    background: currentColor;
    transition: width 0.28s ease;
  }
  
  .btn--text:hover::after {
    width: 100%;
  }/* =========================
   PAGE HERO INTERNO
========================= */
.page-hero {
    position: relative;
    min-height: 58vh;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  
  .page-hero__media {
    position: absolute;
    inset: 0;
  }
  
  .page-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10, 18, 32, 0.28), rgba(10, 18, 32, 0.48));
  }
  
  .page-hero__content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding-top: 7rem;
    padding-bottom: 5rem;
    max-width: 760px;
  }
  
  .page-hero__eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: 0.9;
  }
  
  .page-hero h1 {
    text-shadow: 0 3px 16px rgba(0,0,0,0.5);
  }
  
  .page-hero__lead {
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
  }
  
  /* =========================
     BLOQUES EDITORIALES
  ========================= */
  .editorial-block {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
  
  .editorial-block--reverse .editorial-block__text {
    order: 2;
  }
  
  .editorial-block--reverse .editorial-block__image {
    order: 1;
  }
  
  .editorial-block__text h2 {
    margin-bottom: 1.2rem;
  }
  
  .editorial-block__text p {
    margin-bottom: 1rem;
    line-height: 1.8;
  }
  
  .editorial-block__image img {
    width: 100%;
    display: block;
    border-radius: 18px;
    object-fit: cover;
  }
  
  /* =========================
     FRANJA DESTACADA
  ========================= */
  .feature-band {
    background: #f3f5f8;
    padding: 5.5rem 0;
    text-align: center;
  }
  
  .feature-band__inner {
    max-width: 820px;
  }
  
  .feature-band h2 {
    margin-bottom: 1rem;
  }
  
  .feature-band p {
    line-height: 1.8;
    margin: 0 auto;
  }
  
  /* =========================
     CTA INTERNO
  ========================= */
  .inner-cta {
    padding: 6rem 0;
  }
  
  .inner-cta__inner {
    background: #0f2747;
    color: #fff;
    border-radius: 22px;
    padding: 3rem;
    text-align: center;
  }
  
  .inner-cta__inner h2 {
    color: #fff;
    margin-bottom: 1rem;
  }
  
  .inner-cta__inner p {
    max-width: 680px;
    margin: 0 auto 1.5rem;
    line-height: 1.8;
  }
  
  .inner-cta__actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  /* =========================
     RESPONSIVE
  ========================= */
  @media (max-width: 900px) {
    .editorial-block {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  
    .editorial-block--reverse .editorial-block__text,
    .editorial-block--reverse .editorial-block__image {
      order: initial;
    }
  
    .page-hero {
      min-height: 48vh;
    }
  
    .inner-cta__inner {
      padding: 2rem 1.5rem;
    }
  }.page-hero__content,
  .page-hero h1,
  .page-hero__lead,
  .page-hero__eyebrow {
    color: #ffffff;
  }.btn-room {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.65rem 1.4rem;
    font-size: 0.9rem;
    border-radius: 6px;
    background-color: #2f4e6f;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.25s ease;
  }
  
  .btn-room:hover {
    background-color: #243c56;
  }.room-detail {
    margin-bottom: 4rem;
  }
  
  .room-detail__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
  }
  
  .room-detail__image img {
    width: 100%;
    border-radius: 10px;
  }
  
  .room-detail__content h2 {
    margin-bottom: 1rem;
  }
  
  .room-detail__content ul {
    margin: 1rem 0;
    padding-left: 1rem;
  }.room-detail {
    margin-bottom: 4rem;
  }
  
  .room-detail__grid--reverse .room-detail__image-group {
    order: 2;
  }
  
  .room-detail__grid--reverse .room-detail__content {
    order: 1;
  }
  
  .room-detail__content p {
    line-height: 1.8;
    margin-bottom: 1rem;
  }
  
  .room-features {
    margin: 1.2rem 0 1.5rem;
    padding-left: 1.2rem;
  }
  
  .room-features li {
    margin-bottom: 0.5rem;
  }
  
  @media (max-width: 900px) {
    .room-detail__grid {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  
    .room-detail__grid--reverse .room-detail__image,
    .room-detail__grid--reverse .room-detail__content {
      order: initial;
    }
  }.room-detail__image-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .room-detail__image--main img {
    width: 100%;
    display: block;
    border-radius: 10px;
  }
  
  .room-detail__thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  
  .room-detail__thumbs img {
    width: 100%;
    display: block;
    border-radius: 10px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }
  
  .lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 2rem;
  }
  
  .lightbox__img {
    max-width: 90%;
    max-height: 90%;
    display: block;
  }
  
  .lightbox__close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
  }
  
  @media (max-width: 900px) {
    .room-detail__thumbs {
      grid-template-columns: 1fr;
    }
  }.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 2rem;
  }
  
  .lightbox__img {
    max-width: 90%;
    max-height: 90%;
    width: auto;
    height: auto;
    object-fit: contain;
  }
  
  .lightbox__close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #ffffff;
    font-size: 2.5rem;
    line-height: 1;
    cursor: pointer;
    z-index: 10000;
  }.hotel-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
  }
  .hotel-feature i {
    width: 26px;
    height: 26px;
    stroke: #2f4e6f;
    stroke-width: 1.3;
    fill: none;
    margin-bottom: 0.6rem;
  }.hotel-feature i {
    width: 24px;
    height: 24px;
    stroke: #2f4e6f;
    stroke-width: 1.2;
    fill: none;
    margin-bottom: 0.6rem;
  }.footer-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
  }
  
  .footer-item i {
    width: 16px;
    height: 16px;
    stroke: #ffffff;
    stroke-width: 1.5;
    flex-shrink: 0;
  }.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1rem;
  }
  
  .gallery-card {
    display: block;
    overflow: hidden;
    border-radius: 16px;
    grid-column: span 4;
    background: #f4f4f4;
  }
  
  .gallery-card--wide {
    grid-column: span 8;
  }
  
  .gallery-card--tall {
    grid-row: span 2;
  }
  
  .gallery-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.35s ease;
  }
  
  .gallery-card:hover img {
    transform: scale(1.03);
  }
  
  @media (max-width: 900px) {
    .gallery-grid {
      grid-template-columns: 1fr 1fr;
    }
  
    .gallery-card,
    .gallery-card--wide,
    .gallery-card--tall {
      grid-column: auto;
      grid-row: auto;
    }
  }
  
  @media (max-width: 600px) {
    .gallery-grid {
      grid-template-columns: 1fr;
    }
  }.site-footer a i {
    width: 16px;
    height: 16px;
    margin-right: 6px;
    vertical-align: middle;
    stroke: #fff;
  }.map-actions {
    margin-top: 1.5rem;
    text-align: center;
  }
  
  .map-actions .btn i {
    width: 18px;
    height: 18px;
    margin-right: 6px;
    vertical-align: middle;
  }.form-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  }
  
  .form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  
  .form-group label {
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
    color: #555;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.7rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
  }
  
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: #0d47a1;
  }
  
  .form-actions {
    margin-top: 1.5rem;
    text-align: center;
  }
  
  /* responsive */
  @media (max-width: 768px) {
    .form-row {
      flex-direction: column;
    }
  }.form-card {
    background: #ffffff;
    padding: 2.8rem;
    border-radius: 12px;
    max-width: 820px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
  }
  
  .form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.6rem;
  }
  
  .form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  
  .form-group label {
    font-size: 0.8rem;
    margin-bottom: 0.4rem;
    color: #6b6b6b;
    letter-spacing: 0.5px;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.85rem;
    border: 1px solid #e2e2e2;
    border-radius: 6px;
    font-size: 0.95rem;
    background: #fafafa;
    transition: all 0.2s ease;
  }
  
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: #0d47a1;
    background: #fff;
  }
  
  .form-actions {
    margin-top: 2rem;
    text-align: center;
  }
  
  .form-actions .btn {
    padding: 0.9rem 2.2rem;
    font-size: 0.95rem;
  }
  
  /* mobile */
  @media (max-width: 768px) {
    .form-row {
      flex-direction: column;
    }
  
    .form-card {
      padding: 2rem 1.4rem;
    }
  
    .form-actions .btn {
      width: 100%;
    }
  }