*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --gold: #55e0ff;
  --gold-light: #a0d995;
  --cream: #f5f0e8;
  --dark: #0d0c0a;
  --deep: #1a1814;
  --muted: #6b6459;
  --white: #fdfcfa;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Jost", sans-serif;
  background: var(--dark);
  color: var(--cream);
  overflow-x: hidden;
  cursor: none;
}

/* CURSOR */
.cursor {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}
.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(85, 224, 255, 0.5);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition:
    transform 0.18s ease,
    width 0.3s,
    height 0.3s,
    border-color 0.3s;
}
body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring {
  width: 56px;
  height: 56px;
  border-color: var(--gold);
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 4rem;
  background: linear-gradient(
    to bottom,
    rgba(13, 12, 10, 0.95) 0%,
    transparent 100%
  );
  animation: fadeDown 1.2s ease both;
}
.nav-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--gold-light);
  text-decoration: none;
}
.nav-logo span {
  font-style: italic;
  color: var(--gold);
}
.nav-links {
  display: flex;
  gap: 3rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  font-weight: 300;
  opacity: 0.8;
  transition:
    opacity 0.3s,
    color 0.3s;
}
.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
  color: var(--gold);
}
.nav-cta {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--gold);
  border: none;
  padding: 0.75rem 1.75rem;
  font-family: "Jost", sans-serif;
  cursor: none;
  transition:
    background 0.3s,
    transform 0.2s;
}
.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* HERO */
.page-hero {
  height: 72vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 0 4rem 5rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url("/images/calathea_inn.png") center/cover;
  transform: scale(1.06);
  animation: slowZoom 20s ease-in-out infinite alternate;
}
@keyframes slowZoom {
  from {
    transform: scale(1.06);
  }
  to {
    transform: scale(1);
  }
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    160deg,
    rgba(13, 12, 10, 0.15) 0%,
    rgba(13, 12, 10, 0.5) 60%,
    rgba(13, 12, 10, 0.9) 100%
  );
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(13, 12, 10, 1) 0%, transparent 55%);
}
.hero-content {
  position: relative;
  z-index: 2;
  animation: heroReveal 1.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}
@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.breadcrumb {
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: 0.8;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.breadcrumb span {
  opacity: 0.4;
}
.page-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 7vw, 6.5rem);
  font-weight: 300;
  line-height: 1;
  color: var(--white);
}
.page-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.45);
  margin-top: 1rem;
}

/* CONTACT INFO STRIP */
.info-strip {
  background: var(--gold);
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.info-strip-item {
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  border-right: 1px solid rgba(13, 12, 10, 0.15);
  transition: background 0.3s;
}
.info-strip-item:last-child {
  border-right: none;
}
.info-strip-item:hover {
  background: rgba(13, 12, 10, 0.06);
}
.is-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(13, 12, 10, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--dark);
}
.is-text {
}
.is-label {
  font-size: 0.5rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(13, 12, 10, 0.55);
  margin-bottom: 0.25rem;
}
.is-value {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  color: var(--dark);
  font-weight: 300;
}
.is-value a {
  color: var(--dark);
  text-decoration: none;
}

/* MAIN GRID */
.contact-main {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 0;
  background: var(--dark);
}

/* FORM SIDE */
.form-side {
  padding: 7rem 5rem 7rem 4rem;
}
.section-label {
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.section-label::after {
  content: "";
  flex: 0 0 30px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.section-title em {
  font-style: italic;
  color: var(--gold-light);
}
.form-intro {
  font-size: 0.82rem;
  line-height: 1.85;
  color: rgba(245, 240, 232, 0.45);
  font-weight: 300;
  max-width: 52ch;
  margin-bottom: 3rem;
}

/* TABS */
.form-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 3rem;
  border-bottom: 1px solid rgba(85, 224, 255, 0.12);
}
.form-tab {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.4);
  padding: 0.75rem 1.75rem 0.75rem 0;
  background: none;
  border: none;
  cursor: none;
  font-family: "Jost", sans-serif;
  transition: color 0.3s;
  position: relative;
  margin-right: 1.5rem;
}
.form-tab::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.form-tab.active {
  color: var(--gold);
}
.form-tab.active::after {
  transform: scaleX(1);
}
.form-tab:hover {
  color: var(--cream);
}

/* FORM PANELS */
.form-panel {
  display: none;
}
.form-panel.active {
  display: block;
}

/* FORM FIELDS */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group.full {
  grid-column: span 2;
}
.f-label {
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.65rem;
}
.f-label .req {
  color: rgba(85, 224, 255, 0.5);
}
.f-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: none;
  border-bottom: 1px solid rgba(85, 224, 255, 0.2);
  padding: 0.85rem 0;
  color: var(--cream);
  font-family: "Jost", sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s;
  cursor: text;
}
.f-input:focus {
  border-bottom-color: var(--gold);
}
.f-input::placeholder {
  color: rgba(245, 240, 232, 0.2);
}
.f-select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(85, 224, 255, 0.2);
  padding: 0.85rem 0;
  color: var(--cream);
  font-family: "Jost", sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  outline: none;
  cursor: none;
  transition: border-color 0.3s;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23C9A96E' opacity='.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.25rem center;
}
.f-select:focus {
  border-bottom-color: var(--gold);
}
.f-select option {
  background: var(--deep);
  color: var(--cream);
}
.f-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: none;
  border-bottom: 1px solid rgba(85, 224, 255, 0.2);
  padding: 0.85rem 0;
  color: var(--cream);
  font-family: "Jost", sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s;
  cursor: text;
  resize: none;
  line-height: 1.7;
  min-height: 90px;
}
.f-textarea:focus {
  border-bottom-color: var(--gold);
}
.f-textarea::placeholder {
  color: rgba(245, 240, 232, 0.2);
}

/* RADIO GROUP */
.radio-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.radio-opt {
  position: relative;
}
.radio-opt input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.radio-opt label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.45);
  cursor: none;
  padding: 0.55rem 1.1rem;
  border: 1px solid rgba(85, 224, 255, 0.18);
  transition: all 0.3s;
}
.radio-opt input:checked + label {
  color: var(--gold);
  border-color: rgba(85, 224, 255, 0.55);
  background: rgba(85, 224, 255, 0.05);
}
.radio-opt label:hover {
  color: var(--cream);
  border-color: rgba(85, 224, 255, 0.35);
}

/* CHECKBOX */
.checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.checkbox-wrap input {
  margin-top: 0.15rem;
  accent-color: var(--gold);
  cursor: none;
  flex-shrink: 0;
}
.checkbox-wrap label {
  font-size: 0.7rem;
  line-height: 1.6;
  color: rgba(245, 240, 232, 0.4);
  cursor: none;
}
.checkbox-wrap a {
  color: var(--gold);
  text-decoration: none;
}

/* SUBMIT */
.f-submit {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.btn-submit {
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 1.1rem 3rem;
  font-family: "Jost", sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: none;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.btn-submit::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold-light);
  transform: scaleX(0);
  transition: transform 0.4s;
  transform-origin: left;
  z-index: 0;
}
.btn-submit span {
  position: relative;
  z-index: 1;
}
.btn-submit:hover::after {
  transform: scaleX(1);
}
.f-note {
  font-size: 0.62rem;
  color: rgba(245, 240, 232, 0.3);
  line-height: 1.6;
  max-width: 30ch;
}

/* SUCCESS MESSAGE */
.success-msg {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}
.success-msg.show {
  display: block;
}
.success-icon {
  width: 60px;
  height: 60px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--gold);
}
.success-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.success-body {
  font-size: 0.8rem;
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.5);
  max-width: 40ch;
  margin: 0 auto;
}

/* INFO SIDEBAR */
.info-side {
  background: var(--deep);
  padding: 7rem 3rem 7rem 3rem;
  border-left: 1px solid rgba(85, 224, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* CONTACT CARDS */
.contact-card {
  padding: 2rem;
  border: 1px solid rgba(85, 224, 255, 0.1);
  transition:
    border-color 0.3s,
    background 0.3s;
}
.contact-card:hover {
  border-color: rgba(85, 224, 255, 0.35);
  background: rgba(85, 224, 255, 0.03);
}
.cc-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(85, 224, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.cc-title {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.cc-value {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.35rem;
}
.cc-note {
  font-size: 0.68rem;
  color: rgba(245, 240, 232, 0.35);
  line-height: 1.6;
}
.cc-value a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}
.cc-value a:hover {
  color: var(--gold);
}

/* HOURS */
.hours-block {
  padding: 2rem;
  background: rgba(85, 224, 255, 0.04);
  border: 1px solid rgba(85, 224, 255, 0.1);
}
.hours-title {
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(85, 224, 255, 0.07);
  font-size: 0.72rem;
}
.hours-row:last-child {
  border-bottom: none;
}
.hours-day {
  color: rgba(245, 240, 232, 0.45);
}
.hours-time {
  color: var(--cream);
}
.hours-time.open {
  color: var(--gold);
}

/* SOCIAL */
.social-block {
}
.social-title {
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.soc-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(85, 224, 255, 0.1);
  transition: all 0.3s;
}
.soc-link:hover {
  border-color: rgba(85, 224, 255, 0.4);
  background: rgba(85, 224, 255, 0.04);
}
.soc-icon {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(85, 224, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--gold);
  flex-shrink: 0;
}
.soc-name {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.55);
}
.soc-handle {
  font-size: 0.6rem;
  color: var(--muted);
  margin-top: 0.1rem;
}

/* MAP SECTION */
.map-section {
  background: var(--dark);
}
.map-wrapper {
  position: relative;
  height: 480px;
  overflow: hidden;
}
.map-placeholder {
  width: 100%;
  height: 100%;
  background: var(--deep);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
/* Decorative map-like grid */
.map-grid {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    linear-gradient(rgba(85, 224, 255, 1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(85, 224, 255, 1) 1px, transparent 1px);
  background-size: 60px 60px;
}
.map-pin-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.map-pin {
  width: 64px;
  height: 64px;
  background: var(--gold);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(85, 224, 255, 0.3);
}
.map-pin svg {
  transform: rotate(45deg);
  color: var(--dark);
}
.map-pin-pulse {
  position: absolute;
  width: 100px;
  height: 100px;
  border: 1px solid rgba(85, 224, 255, 0.3);
  border-radius: 50%;
  animation: pulse 2s ease-out infinite;
}
.map-pin-pulse2 {
  animation-delay: 0.6s;
  width: 140px;
  height: 140px;
}
@keyframes pulse {
  0% {
    transform: scale(0.8);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}
.map-label {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--white);
  text-align: center;
}
.map-sublabel {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.map-info-bar {
  background: var(--deep);
  padding: 2rem 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  border-top: 1px solid rgba(85, 224, 255, 0.1);
}
.mib-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.mib-icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.mib-label {
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.3rem;
}
.mib-value {
  font-size: 0.8rem;
  color: var(--cream);
  line-height: 1.5;
}

/* FAQ */
.faq-section {
  background: var(--deep);
  padding: 7rem 4rem;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(85, 224, 255, 0.08);
  margin-top: 4rem;
}
.faq-item {
  background: var(--deep);
  padding: 0;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: none;
  text-align: left;
  border-bottom: 1px solid rgba(85, 224, 255, 0.08);
  transition: background 0.3s;
}
.faq-q:hover {
  background: rgba(85, 224, 255, 0.03);
}
.faq-q-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1.3;
}
.faq-arrow {
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.35s;
  font-size: 1rem;
}
.faq-item.open .faq-arrow {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-a-inner {
  padding: 1.5rem 2rem 2rem;
  font-size: 0.78rem;
  line-height: 1.85;
  color: rgba(245, 240, 232, 0.45);
  font-weight: 300;
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.12s;
}
.reveal-delay-2 {
  transition-delay: 0.24s;
}
.reveal-delay-3 {
  transition-delay: 0.36s;
}
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* FOOTER */
footer {
  background: #080807;
  padding: 5rem 4rem 2.5rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  border-bottom: 1px solid rgba(85, 224, 255, 0.1);
  padding-bottom: 4rem;
}
.footer-brand .brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--gold-light);
  margin-bottom: 1rem;
}
.footer-brand .brand-name span {
  font-style: italic;
  color: var(--gold);
}
.footer-brand p {
  font-size: 0.78rem;
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.35);
  font-weight: 300;
  max-width: 28ch;
}
.footer-col h4 {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 400;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 0.75rem;
}
.footer-col ul li a {
  font-size: 0.78rem;
  color: rgba(245, 240, 232, 0.4);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 300;
}
.footer-col ul li a:hover {
  color: var(--gold);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 0.65rem;
  color: rgba(245, 240, 232, 0.2);
  letter-spacing: 0.1em;
}
.footer-social {
  display: flex;
  gap: 1.25rem;
}
.social-link-f {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(85, 224, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.75rem;
  transition: all 0.3s;
}
.social-link-f:hover {
  border-color: var(--gold);
  color: var(--gold);
}

@media (max-width: 960px) {
  nav {
    padding: 1.5rem 2rem;
  }
  .nav-links {
    display: none;
  }
  .page-hero {
    padding: 0 2rem 3.5rem;
  }
  .info-strip {
    grid-template-columns: 1fr 1fr;
  }
  .contact-main {
    grid-template-columns: 1fr;
  }
  .form-side {
    padding: 4rem 2rem;
  }
  .info-side {
    padding: 4rem 2rem;
    border-left: none;
    border-top: 1px solid rgba(85, 224, 255, 0.08);
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .form-group.full {
    grid-column: span 1;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .map-info-bar {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}
