:root {
  --primary: #980000;
  --primary-dark: #760000;
  --primary-soft: #b81d1d;
  --background: #f4efed;
  --surface: #ffffff;
  --surface-alt: #f8f3f1;
  --text: #1e1e1e;
  --text-soft: #5d5d5d;
  --border: #ead9d5;
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--background);
  color: var(--text);
  line-height: 1.6;
}

img,
video {
  display: block;
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.hero-shell {
  padding: 6px 6px 0;
  background: var(--background);
}

.hero-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.12) 0 18%, transparent 19%),
    radial-gradient(circle at 75% 20%, rgba(255,255,255,0.1) 0 16%, transparent 17%),
    radial-gradient(circle at 85% 60%, rgba(255,255,255,0.08) 0 10%, transparent 11%),
    linear-gradient(135deg, #9d0000 0%, #b10b0b 35%, #d33d2e 100%);
  color: white;
}

.floating-circles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.floating-circles .circle {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.05);
  animation: floatCircle 18s ease-in-out infinite alternate;
}

.floating-circles .circle-1 {
  width: 520px;
  height: 520px;
  top: 40px;
  left: -120px;
  animation-duration: 20s;
}

.floating-circles .circle-2 {
  width: 280px;
  height: 280px;
  bottom: 40px;
  left: 120px;
  animation-duration: 16s;
}

.floating-circles .circle-3 {
  width: 620px;
  height: 620px;
  top: -80px;
  right: -40px;
  animation-duration: 22s;
}

.floating-circles .circle-4 {
  width: 360px;
  height: 360px;
  bottom: -40px;
  right: 180px;
  animation-duration: 17s;
}

.floating-circles .circle-5 {
  width: 160px;
  height: 160px;
  top: 180px;
  right: 420px;
  animation-duration: 13s;
}

.floating-circles .circle-6 {
  width: 130px;
  height: 130px;
  bottom: 120px;
  left: 420px;
  animation-duration: 15s;
}

@keyframes floatCircle {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(18px, -14px) scale(1.03);
  }
  100% {
    transform: translate(-20px, 16px) scale(0.97);
  }
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0 10px;
  margin-top: 32px;
  padding-right: 40px;
  position: relative;
  z-index: 3;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 68px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text span:first-child {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.brand-text span:last-child {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.15em;
}

.nav-links {
  display: flex;
  gap: 34px;
  align-items: center;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
}

.nav-cta {
  background: white;
  color: var(--primary);
  font-weight: 700;
  padding: 14px 26px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 24px;
  min-height: 560px;
  padding: 36px 0 40px;
  position: relative;
  z-index: 3;
}

.hero-copy {
  max-width: 700px;
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 20px;
  opacity: 0.92;
}

.hero h1 {
  font-size: clamp(1.8rem, 6vw, 6rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  margin-bottom: 24px;
}

.hero-text {
  max-width: 660px;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 22px;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.96);
  font-size: 0.92rem;
  font-weight: 600;
  backdrop-filter: blur(3px);
}

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

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: white;
  color: var(--primary);
  padding: 16px 34px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1.05rem;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
}

.hero-visual {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  overflow: visible;
  z-index: 2;
}

.hero-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 230, 230, 0.12);
  z-index: 1;
  pointer-events: none;
}

.hero-circle-1 {
  width: 520px;
  height: 520px;
  right: 20px;
  top: 10px;
}

.hero-circle-2 {
  width: 620px;
  height: 620px;
  right: -70px;
  bottom: -40px;
  background: rgba(255, 235, 235, 0.16);
}

.hero-dog,
.hero-dog-main,
.hero-dog-secondary,
.hero-dog-extra {
  position: absolute;
  display: block;
  height: auto;
  max-width: none;
  object-fit: contain;
  object-position: bottom;
  pointer-events: none;
}

.hero-dog-main {
  width: 500px;
  right: -70px;
  bottom: 0;
  z-index: 3;
}

.hero-dog-brown {
  width: 450px;
  right: 250px;
  bottom: 0;
  z-index: 2;
  opacity: 0.98;
}

.hero-dog-secondary {
  width: 300px;
  right: -60px;
  bottom: 0;
  z-index: 5;
}

.hero-dog-black {
  width: 300px;
  right: 120px;
  bottom: 0;
  z-index: 4;
  opacity: 0.98;
}

.dogs-home-section {
  position: relative;
  padding: 70px 0 94px;
  background: linear-gradient(to bottom, #f4efed 0%, #f8f4f2 100%);
  overflow: hidden;
}

.dogs-bg-circles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.dogs-bg-circles .bg-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(152, 0, 0, 0.08);
  animation: floatDogsCircle 18s ease-in-out infinite alternate;
}

.bg-circle-1 {
  width: 280px;
  height: 280px;
  top: 60px;
  left: -80px;
}

.bg-circle-2 {
  width: 180px;
  height: 180px;
  top: 40px;
  right: 120px;
}

.bg-circle-3 {
  width: 340px;
  height: 340px;
  bottom: -60px;
  right: -100px;
}

.bg-circle-4 {
  width: 140px;
  height: 140px;
  bottom: 180px;
  left: 200px;
}

.bg-circle-5 {
  width: 220px;
  height: 220px;
  bottom: -40px;
  left: 45%;
}

.dogs-home-section .container {
  position: relative;
  z-index: 2;
}

@keyframes floatDogsCircle {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(16px, -12px);
  }
  100% {
    transform: translate(-18px, 18px);
  }
}

.dogs-home-heading {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px;
}

.section-kicker {
  color: var(--primary);
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  margin-bottom: 10px;
}

.dogs-home-heading h2,
.retreat-heading h2,
.detail-hero-copy h1 {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.dogs-home-heading p,
.retreat-heading p,
.detail-hero-copy p,
.detail-card p,
.detail-list li,
.contact-cta-copy p {
  color: var(--text-soft);
}

.pets-filter-wrap {
  display: flex;
  justify-content: center;
  margin: 0 0 28px;
}

.pets-filter {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(152, 0, 0, 0.08);
  border-radius: 999px;
  padding: 8px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(6px);
}

.filter-btn {
  border: none;
  background: transparent;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.98rem;
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover {
  background: rgba(152, 0, 0, 0.08);
}

.filter-btn.active {
  background: linear-gradient(180deg, #d33232 0%, #a10000 100%);
  color: #fff;
  box-shadow: 0 8px 18px rgba(152, 0, 0, 0.18);
}

.dogs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
}

.dog-card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(152, 0, 0, 0.08);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.dog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 38px rgba(0, 0, 0, 0.12);
}

.dog-card-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
}

img[src*="zeyna"] {
  object-position: 50% 50%;
}

img[src*="sans"] {
  object-position: 50% 35%;
}

img[src*="can"] {
  object-position: 50% 35%;
}

img[src*="leo"] {
  object-position: center top;
}

.dog-card-content {
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.dog-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  margin-bottom: 12px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.dog-status.available {
  background: #e8f7ec;
  color: #1c7c3d;
}

.dog-status.reserved {
  background: #fff3d9;
  color: #9a6a00;
}

.dog-status.adopted {
  background: #ececec;
  color: #666666;
}

.dog-card-title-row {
  display: block;
  margin-bottom: 8px;
}

.dog-card h3 {
  color: var(--primary);
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 6px;
}

.dog-meta {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 12px;
  min-height: 3.2em;
}

.meta-pill {
  display: inline;
  background: none;
  padding: 0;
  font-size: 0.95rem;
  color: var(--primary);
  font-weight: 700;
  margin-right: 10px;
}

.card-summary {
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.5;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 6em;
}

.card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: linear-gradient(180deg, #d33232 0%, #a10000 100%);
  color: white;
  padding: 13px 18px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-top: auto;
}

.card-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(152, 0, 0, 0.18);
}

.all-dogs-wrap {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.all-dogs-button {
  background: linear-gradient(180deg, #d33232 0%, #a10000 100%);
  color: white;
  padding: 16px 44px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 14px 30px rgba(152, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.all-dogs-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(152, 0, 0, 0.24);
}

.retreat-section,
.detail-page-section {
  position: relative;
  padding: 88px 0;
  background:
    radial-gradient(circle at top left, rgba(211, 50, 50, 0.06), transparent 30%),
    linear-gradient(180deg, #fffaf9 0%, #f6efec 100%);
}

.retreat-heading,
.detail-page-heading {
  max-width: 820px;
  margin: 0 auto 40px;
  text-align: center;
}

.adoption-options-simple {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.adoption-option-card,
.detail-hero-card,
.detail-card,
.contact-form-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(152, 0, 0, 0.08);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.05);
}

.retreat-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.86rem;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.adoption-option-card h3,
.detail-card h3,
.contact-cta-copy h2 {
  color: #4a0000;
  margin-bottom: 12px;
}

.adoption-option-card h3 {
  font-size: 2rem;
  line-height: 1.05;
}

.adoption-option-card p:not(.retreat-eyebrow),
.detail-card p,
.detail-list li {
  color: var(--text-soft);
}

.option-card-actions {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.contact-cta-section {
  padding: 10px 0 82px;
  background: linear-gradient(180deg, #f3ebea 0%, #f4efed 100%);
}

.contact-cta-card {
  background: linear-gradient(135deg, #fff 0%, #fff8f7 100%);
  border: 1px solid rgba(152, 0, 0, 0.08);
  border-radius: 30px;
  box-shadow: var(--shadow);
  padding: 34px;
  display: grid;
  gap: 24px;
  align-items: start;
}

.form-layout {
  grid-template-columns: 1fr;
}

.contact-direct-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
  max-width: 360px;
}

.contact-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  border-radius: 999px;
  font-weight: 800;
  background: linear-gradient(180deg, #d33232 0%, #a10000 100%);
  color: white;
  box-shadow: 0 12px 26px rgba(152, 0, 0, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: none;
  cursor: pointer;
}

.contact-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(152, 0, 0, 0.22);
}

.contact-cta-button-secondary {
  background: white;
  color: var(--primary);
  border: 1px solid rgba(152, 0, 0, 0.12);
  box-shadow: none;
}

.contact-cta-button-secondary:hover {
  background: #fff6f4;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.95rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 16px;
  padding: 14px 16px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(152, 0, 0, 0.4);
  box-shadow: 0 0 0 4px rgba(152, 0, 0, 0.08);
}

.form-field textarea {
  resize: vertical;
  min-height: 130px;
}

.form-submit-button {
  width: 100%;
  margin-top: 4px;
}

.form-success-message {
  min-height: 1.5em;
  color: #1c7c3d;
  font-weight: 700;
  margin-top: 4px;
}

.subpage-header {
  padding: 22px 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.back-link {
  color: var(--primary);
  font-weight: 700;
}

.detail-page-main,
.dog-page-main {
  padding: 34px 0 72px;
}

.detail-hero-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 28px;
}

.detail-hero-copy h1 {
  margin-bottom: 14px;
}

.detail-hero-image {
  overflow: hidden;
  border-radius: 24px;
  min-height: 360px;
  background: #f4f1ef;
  border: 1px solid rgba(152, 0, 0, 0.08);
}

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

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.detail-list {
  padding-left: 18px;
}

.detail-bottom-cta {
  margin-top: 34px;
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(152, 0, 0, 0.08);
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.05);
}

.detail-bottom-cta h3 {
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 1.8rem;
}

.dog-profile-layout {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 36px;
}

.dog-main-image {
  width: 100%;
  border-radius: 28px;
  object-fit: cover;
  max-height: 680px;
  box-shadow: var(--shadow);
  background: #ddd;
}

.dog-info-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.dog-info-panel h1 {
  color: var(--primary);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  margin-bottom: 18px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.info-box {
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(152, 0, 0, 0.08);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.info-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
  font-weight: 600;
}

.info-value {
  font-weight: 700;
}

.text-block {
  margin-top: 18px;
}

.text-block h2,
.detail-section h2,
.media-section h2 {
  color: var(--primary);
}

.text-block h2 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.text-muted,
.text-block p,
.text-block li,
.detail-section p {
  color: var(--text-soft);
}

.detail-section {
  margin-top: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.detail-section h2 {
  margin-bottom: 12px;
  font-size: 1.45rem;
}

.detail-card {
  background: var(--surface-alt);
  border-radius: 16px;
  padding: 14px;
}

.media-section {
  margin-top: 28px;
}

.media-section h2 {
  margin-bottom: 14px;
  font-size: 1.5rem;
}

.gallery-grid,
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.gallery-grid img,
.video-grid video {
  width: 100%;
  border-radius: 18px;
  box-shadow: var(--shadow);
  background: #ddd;
}

.not-found-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.not-found-box h1 {
  color: var(--primary);
  margin-bottom: 10px;
}

.eyebrow.section-eyebrow {
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.84rem;
  font-weight: 800;
  margin-bottom: 10px;
}

/* ============================= */
/* PREMIUM FOOTER - COMPACT FINAL */
/* ============================= */

.site-footer{
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.07) 0%, transparent 30%),
    linear-gradient(135deg, #3b0d0d 0%, #5d1111 45%, #8f1d1d 100%);
  color: white;
  padding: 56px 0 24px;
}

.footer-bg-elements{
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.footer-silhouette{
  position: absolute;
  opacity: 0.035;
  filter: blur(0.3px);
  user-select: none;
}

.footer-dog{
  width: 320px;
  right: -50px;
  top: 42px;
}

.footer-cat{
  width: 190px;
  right: 85px;
  bottom: 45px;
}

.footer-paw{
  position: absolute;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(rgba(255,255,255,0.035), transparent 70%);
  left: -60px;
  bottom: -45px;
}

.footer-line-heart{
  position: absolute;
  width: 240px;
  height: 240px;
  border: 2px solid rgba(255,255,255,0.03);
  border-radius: 50%;
  left: -105px;
  bottom: -115px;
}

.footer-grid{
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.85fr 0.95fr 0.95fr;
  gap: 42px;
  align-items: start;
}

.footer-brand-block{
  max-width: 250px;
}

.footer-brand{
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img{
  width: 62px;
}

.footer-brand h3{
  font-size: 1.95rem;
  line-height: 0.92;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.footer-brand span{
  display: block;
  font-size: 0.86rem;
  letter-spacing: 0.22em;
  font-weight: 600;
  margin-top: 4px;
  color: rgba(255,255,255,0.76);
}

.footer-divider{
  width: 44px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,0.58);
  margin: 20px 0 16px;
}

.footer-description{
  color: rgba(255,255,255,0.76);
  font-size: 0.9rem;
  line-height: 1.65;
  max-width: 220px;
}

.footer-column{
  padding-top: 6px;
}

.footer-column:first-of-type{
  padding-left: 6px;
}

.footer-column h4{
  font-size: 1.18rem;
  margin-bottom: 14px;
  font-weight: 800;
}

.footer-column p{
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}

.footer-icon-circle{
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
}

.footer-icon-circle svg{
  width: 20px;
  height: 20px;
}

.footer-links-group{
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links-group strong{
  display: block;
  margin-bottom: 4px;
  font-size: 0.88rem;
  color: white;
}

.footer-links-group a{
  color: rgba(255,255,255,0.76);
  font-size: 0.9rem;
  transition: 0.25s ease;
}

.footer-links-group a:hover{
  color: white;
  text-decoration: underline;
}

.footer-bottom{
  position: relative;
  z-index: 2;
  width: min(var(--container), calc(100% - 40px));
  margin: 42px auto 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.075);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(255,255,255,0.54);
  font-size: 0.78rem;
}

.footer-bottom p{
  margin: 0;
}

.footer-bottom a{
  color: rgba(255,255,255,0.86);
  font-weight: 700;
}

.footer-bottom a:hover{
  color: white;
  text-decoration: underline;
}

@media (max-width: 1000px){
  .footer-grid{
    grid-template-columns: 1fr 1fr;
  }

  .footer-dog{
    width: 280px;
  }
}

@media (max-width: 700px){
  .site-footer{
    padding-top: 48px;
  }

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

  .footer-brand h3{
    font-size: 1.8rem;
  }

  .footer-column h4{
    font-size: 1.12rem;
  }

  .footer-bottom{
    margin-top: 34px;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .footer-dog,
  .footer-cat{
    opacity: 0.022;
  }
}

.gallery-item {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  border-radius: 18px;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.25s ease;
}

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

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
  z-index: 9999;
}

.lightbox.active {
  display: flex;
}

.lightbox-image {
  max-width: min(1100px, 92vw);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 28px;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 999px;
  background: white;
  color: #111;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 1100px) {
  .hero,
  .detail-hero-card,
  .form-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 620px;
  }

  .hero-dog-main {
    width: 280px;
    right: 30px;
  }

  .hero-dog-brown {
    width: 280px;
    right: 240px;
  }

  .hero-dog-secondary {
    width: 160px;
    right: 210px;
  }

  .hero-dog-black {
    width: 160px;
    right: 360px;
  }

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

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .dog-profile-layout,
  .info-grid,
  .detail-grid,
  .adoption-options-simple {
    grid-template-columns: 1fr;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 20px;
  }

  .hero-visual {
    min-height: 500px;
    margin-top: 10px;
  }

  .hero-dog-main {
    width: 220px;
    right: 20px;
  }

  .hero-dog-brown {
    width: 220px;
    right: 170px;
  }

  .hero-dog-secondary {
    width: 125px;
    right: 150px;
  }

  .hero-dog-black {
    width: 125px;
    right: 270px;
  }

  .hero-circle-1 {
    width: 300px;
    height: 300px;
    right: 10px;
    top: 20px;
  }

  .hero-circle-2 {
    width: 380px;
    height: 380px;
    right: -30px;
    bottom: -10px;
  }

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

@media (max-width: 700px) {
  .top-nav {
    flex-wrap: wrap;
  }

  .brand-text span:first-child {
    font-size: 1.5rem;
  }

  .brand-text span:last-child {
    font-size: 1rem;
  }

  .hero h1,
  .detail-hero-copy h1,
  .retreat-heading h2 {
    font-size: 3.2rem;
  }

  .hero-text {
    font-size: 1.05rem;
  }

  .hero-visual {
    min-height: 420px;
  }

  .hero-dog-main {
    width: 165px;
    right: 5px;
  }

  .hero-dog-brown {
    width: 165px;
    right: 105px;
  }

  .hero-dog-secondary {
    width: 95px;
    right: 95px;
    bottom: 0;
  }

  .hero-dog-black {
    width: 95px;
    right: 185px;
    bottom: 0;
  }

  .dogs-grid,
  .detail-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .dog-card-image {
    height: 260px;
  }

  .lightbox {
    padding: 16px;
  }

  .lightbox-image {
    max-width: 100%;
    max-height: 80vh;
  }

  .lightbox-close {
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    font-size: 1.6rem;
  }

  .contact-cta-card,
  .adoption-option-card,
  .detail-hero-card,
  .detail-card,
  .contact-form-card,
  .detail-bottom-cta {
    padding: 22px;
  }

  .contact-direct-links {
    width: 100%;
    max-width: none;
  }

  .contact-cta-button,
  .hero-button {
    width: 100%;
  }

  .hero-highlights {
    gap: 8px;
  }

  .hero-pill {
    font-size: 0.84rem;
    padding: 8px 12px;
  }

  .pets-filter {
    width: 100%;
    border-radius: 24px;
  }

  .filter-btn {
    flex: 1 1 auto;
  }

  .retreat-section,
  .detail-page-section {
    padding: 72px 0;
  }

  .option-card-actions {
    flex-direction: column;
  }

}


/* ============================= */
/* FINAL FIX: STICKY NAV + HORIZONTAL CARDS */
/* ============================= */

.hero-shell {
  padding-top: 0;
}

.hero-card {
  padding-top: 104px;
}

.hero-trust-line {
  color: #ffffff;
  font-weight: 800;
  font-size: 1.08rem;
  margin: 0 0 18px;
}

/* Sticky header */
.sticky-main-nav {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(var(--container), calc(100% - 40px));
  z-index: 9999;
  padding: 14px 28px;
  margin-top: 0;
  border-radius: 999px;
  background: rgba(152, 0, 0, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.16);
}

.sticky-main-nav .brand img {
  width: 54px;
}

.sticky-main-nav .brand-text span:first-child {
  font-size: 1.45rem;
}

.sticky-main-nav .brand-text span:last-child {
  font-size: 0.9rem;
}

.sticky-main-nav .nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.sticky-main-nav .nav-links a {
  color: #fff;
  font-weight: 700;
}

.nav-cta-fixed {
  background: #fff;
  color: var(--primary) !important;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 800 !important;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

/* Hide any old empty CTA */
.nav-links .nav-cta:empty {
  display: none;
}

/* Horizontal card carousel */
.horizontal-info-section {
  padding: 96px 0;
  background:
    radial-gradient(circle at 8% 15%, rgba(152, 0, 0, 0.07), transparent 28%),
    linear-gradient(180deg, #f4efed 0%, #fffaf9 100%);
  overflow: hidden;
}

.horizontal-info-heading {
  max-width: 780px;
  margin: 0 auto 40px;
  text-align: center;
}

.horizontal-info-heading h2 {
  color: var(--primary);
  font-size: clamp(2.35rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}

.horizontal-info-heading p {
  color: var(--text-soft);
  font-size: 1.05rem;
}

.horizontal-carousel {
  position: relative;
}

.horizontal-card-track {
  display: flex;
  flex-direction: row;
  gap: 26px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 12px 10px 38px;
  scrollbar-width: none;
}

.horizontal-card-track::-webkit-scrollbar {
  display: none;
}

.horizontal-info-card {
  flex: 0 0 560px;
  min-width: 560px;
  min-height: 460px;
  scroll-snap-align: center;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(152, 0, 0, 0.12);
  border-radius: 34px;
  padding: 36px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.horizontal-info-card h3 {
  color: #4a0000;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

.horizontal-info-card p {
  color: var(--text-soft);
  font-size: 1.05rem;
}

.info-tags,
.timeline-tags {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.info-tags span,
.timeline-tags span {
  background: #f8efed;
  color: var(--primary);
  font-weight: 800;
  border-radius: 18px;
  padding: 14px;
}

.info-boxes {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.info-boxes div {
  background: #f8efed;
  border-radius: 22px;
  padding: 18px;
}

.info-boxes strong {
  display: block;
  color: var(--primary);
  margin-bottom: 6px;
}

.info-boxes p {
  margin: 0;
}

.card-list {
  list-style: none;
  padding: 0;
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

.card-list li {
  background: #f8efed;
  border-radius: 16px;
  padding: 13px 16px;
  color: var(--primary);
  font-weight: 700;
}

.featured-card {
  border: 2px solid rgba(152, 0, 0, 0.24);
  background: linear-gradient(135deg, #fff 0%, #fff0ed 100%);
}

.red-card {
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.14), transparent 35%),
    linear-gradient(135deg, #b30000 0%, #980000 55%, #760000 100%);
}

.red-card h3,
.red-card p,
.red-card .retreat-eyebrow {
  color: white;
}

.white-card-button {
  display: inline-flex;
  width: fit-content;
  background: white;
  color: var(--primary);
  padding: 15px 26px;
  border-radius: 999px;
  font-weight: 800;
  margin-top: 24px;
}

/* Arrows */
.horizontal-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(180deg, #d33232 0%, #a10000 100%);
  color: white;
  font-size: 1.7rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(152, 0, 0, 0.22);
}

.horizontal-arrow.left {
  left: -18px;
}

.horizontal-arrow.right {
  right: -18px;
}

.horizontal-arrow:hover {
  transform: translateY(-50%) scale(1.04);
}

/* Responsive */
@media (max-width: 900px) {
  .sticky-main-nav {
    border-radius: 28px;
  }

  .sticky-main-nav .nav-links a:not(.nav-cta-fixed) {
    display: none;
  }

  .horizontal-arrow {
    display: none;
  }
}

@media (max-width: 700px) {
  .hero-card {
    padding-top: 86px;
  }

  .sticky-main-nav {
    width: calc(100% - 24px);
    top: 12px;
    padding: 12px 16px;
  }

  .sticky-main-nav .brand img {
    width: 44px;
  }

  .sticky-main-nav .brand-text span:first-child {
    font-size: 1.05rem;
  }

  .sticky-main-nav .brand-text span:last-child {
    font-size: 0.72rem;
  }

  .nav-cta-fixed {
    padding: 10px 14px;
    font-size: 0.85rem;
  }

  .horizontal-info-section {
    padding: 70px 0;
  }

  .horizontal-info-card {
    flex: 0 0 88vw;
    min-width: 88vw;
    min-height: auto;
    padding: 26px;
  }

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


/* ============================= */
/* COMPACT HORIZONTAL CARDS OVERRIDE */
/* Paste-ready final tuning: smaller cards + cleaner spacing */
/* ============================= */

.horizontal-info-section {
  padding: 76px 0 84px;
}

.horizontal-info-heading {
  max-width: 720px;
  margin: 0 auto 28px;
}

.horizontal-info-heading h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 12px;
}

.horizontal-info-heading p {
  font-size: 0.98rem;
}

.horizontal-card-track {
  gap: 18px;
  padding: 10px 8px 28px;
}

.horizontal-info-card {
  flex: 0 0 420px;
  min-width: 420px;
  min-height: 350px;
  border-radius: 26px;
  padding: 24px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
}

.horizontal-info-card h3 {
  font-size: 1.65rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.horizontal-info-card p {
  font-size: 0.95rem;
  line-height: 1.5;
}

.horizontal-info-card .retreat-eyebrow {
  font-size: 0.78rem;
  margin-bottom: 10px;
}

.info-tags,
.timeline-tags {
  gap: 10px;
  margin-top: 20px;
}

.info-tags span,
.timeline-tags span {
  padding: 10px;
  border-radius: 12px;
  font-size: 0.83rem;
}

.info-boxes {
  gap: 10px;
  margin-top: 18px;
}

.info-boxes div {
  border-radius: 16px;
  padding: 13px;
}

.info-boxes strong {
  font-size: 0.92rem;
  margin-bottom: 4px;
}

.card-list {
  gap: 9px;
  margin-top: 16px;
}

.card-list li {
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 0.9rem;
}

.white-card-button,
.cta-slide .contact-cta-button {
  padding: 12px 18px;
  font-size: 0.9rem;
  margin-top: 18px;
}

.horizontal-arrow {
  width: 46px;
  height: 46px;
  font-size: 1.25rem;
}

.horizontal-arrow.left {
  left: -8px;
}

.horizontal-arrow.right {
  right: -8px;
}

/* ============================= */
/* LOGISTICS BLOCK */
/* ============================= */
.transport-standalone-section{
  position: relative;

  padding: 90px 0;

  overflow: hidden;

  background:
   linear-gradient(
  rgba(98, 0, 0, 0.72),
  rgba(72, 0, 0, 0.78)
),

    url("../assets/logisticsbg.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* cinematic blur overlay */

.transport-standalone-section::before{
  content: "";

  mix-blend-mode: screen;

  position: absolute;
  inset: 0;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  background:
    radial-gradient(
      circle at top right,
      rgba(255,255,255,0.08),
      transparent 30%
    );

  pointer-events: none;
}

/* keep content above overlay */

.transport-standalone-section .container{
  position: relative;
  z-index: 2;
}

.transport-standalone-card {
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  min-height: unset;
}

.transport-standalone-card{
  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.92) 0%,
      rgba(255,250,250,0.88) 100%
    );

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(255,255,255,0.18);

  box-shadow:
    0 24px 60px rgba(0,0,0,0.18);

  border-radius: 34px;

  overflow: hidden;
}

.transport-intro {
  margin-bottom: 28px;
}

/* ============================= */
/* ACCORDION */
/* ============================= */

.transport-accordion {
  border: 1px solid rgba(152, 0, 0, 0.08);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 18px;
  background: #fcf7f6;
}

.accordion-trigger {
  width: 100%;
  border: none;
  background: transparent;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: #4a0000;
  font-size: 1.05rem;
  font-weight: 800;
}

.accordion-icon {
  font-size: 1.4rem;
  line-height: 1;
  transition: transform 0.25s ease;
}

.transport-accordion.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.transport-accordion.active .accordion-content {
  max-height: 1400px;
}

.accordion-inner {
  padding: 0 24px 24px;
}

.accordion-inner p {
  color: var(--text-soft);
  margin-bottom: 14px;
}

.accordion-inner ul {
  padding-left: 18px;
  color: var(--text-soft);
  display: grid;
  gap: 10px;
}

/* ============================= */
/* CONTACT LAYOUT */
/* ============================= */

.contact-title-block {
  width: 100%;
  margin-bottom: 52px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
}

.contact-title-block .section-kicker {
  font-size: 1rem;
  letter-spacing: 0.22em;
  margin-bottom: 18px;
}

.contact-title-block h2 {
  font-size: clamp(2.2rem, 3.8vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #4a0000;
}

.contact-bottom-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 55px;
  align-items: start;
}

.side-text-block {
  padding-top: 12px;
}

.side-text-block p {
  font-size: 1.08rem;
  line-height: 1.95;
  color: #5a5a5a;
  margin-bottom: 22px;
}

.side-form-block {
  width: 100%;
}

.side-form-block .contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

@media (max-width: 900px) {
  .contact-bottom-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

@media (max-width: 900px) {
  .horizontal-info-card {
    flex: 0 0 390px;
    min-width: 390px;
    min-height: 330px;
  }
}

@media (max-width: 700px) {
  .horizontal-info-section {
    padding: 58px 0 66px;
  }

  .horizontal-info-card {
    flex: 0 0 78vw;
    min-width: 78vw;
    min-height: auto;
    padding: 22px;
  }

  .horizontal-info-card h3 {
    font-size: 1.45rem;
  }


}

/* ============================= */
/* RESCUE RETREAT GALLERY */
/* ============================= */

.retreat-location-block {
  margin-top: 28px;
}

.retreat-location-block h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #4a0000;
  margin-bottom: 16px;
}

.retreat-location-list {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
  padding-left: 18px;
}

.retreat-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.retreat-gallery img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(152, 0, 0, 0.08);
}

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

  .retreat-gallery img {
    height: 220px;
  }
}

/* ============================= */
/* PREMIUM CONTACT BLOCK */
/* ============================= */

.premium-contact-layout{
  position: relative;
  overflow: hidden;

  padding: 54px;

  border-radius: 34px;

  background:
    radial-gradient(circle at top left, rgba(152,0,0,0.08), transparent 26%),
    linear-gradient(135deg, #ffffff 0%, #fff8f6 100%);
}

.contact-title-block{
  text-align: center;
  margin-bottom: 42px;
}

.contact-title-block h2{
  color: #5a0000;

  font-size: clamp(2.8rem, 5vw, 5rem);

  line-height: 0.95;
  letter-spacing: -0.05em;

  max-width: 950px;

  margin: 0 auto 16px;
}

.contact-subtitle{
  color: var(--text-soft);
  font-size: 1.05rem;
}

.contact-bottom-layout{
  display: grid;

  grid-template-columns: 0.88fr 1.12fr;

  gap: 36px;
  align-items: stretch;
}

.side-text-block{
  background: #fff6f3;

  border: 1px solid rgba(152,0,0,0.08);

  border-radius: 28px;

  padding: 34px;

  box-shadow: 0 16px 34px rgba(0,0,0,0.04);
}

.contact-mini-badge{
  display: inline-flex;

  padding: 9px 14px;

  border-radius: 999px;

  background: rgba(152,0,0,0.08);

  color: var(--primary);

  font-size: 0.82rem;
  font-weight: 800;

  margin-bottom: 18px;
}

.side-text-block h3{
  color: #4a0000;

  font-size: 2rem;

  line-height: 1.05;

  margin-bottom: 18px;
}

.side-text-block p{
  color: var(--text-soft);

  line-height: 1.8;

  margin-bottom: 18px;
}

.contact-feature-list{
  display: grid;
  gap: 14px;

  margin-top: 26px;
}

.contact-feature-item{
  display: flex;
  gap: 12px;
  align-items: flex-start;

  padding: 14px 16px;

  border-radius: 18px;

  background: rgba(255,255,255,0.75);
}

.contact-feature-item span{
  color: var(--primary);
  font-weight: 900;
}

.contact-feature-item p{
  margin: 0;
  font-weight: 600;
}

.side-form-block{
  padding: 34px;

  border-radius: 28px;

  background: rgba(255,255,255,0.92);

  box-shadow: 0 24px 50px rgba(90,0,0,0.08);
}

.form-field input,
.form-field textarea{
  background: #fffdfc;

  border-radius: 18px;

  padding: 16px 18px;
}

.form-submit-button{
  margin-top: 10px;

  padding: 17px 24px;

  font-size: 1rem;
}

.form-note{
  text-align: center;

  margin-top: 12px;

  color: var(--text-soft);

  font-size: 0.82rem;
}

@media (max-width: 950px){

  .contact-bottom-layout{
    grid-template-columns: 1fr;
  }

}

@media (max-width: 700px){

  .premium-contact-layout{
    padding: 26px;
  }

  .contact-title-block h2{
    font-size: 3rem;
  }

  .side-text-block,
  .side-form-block{
    padding: 24px;
  }

  .side-text-block h3{
    font-size: 1.6rem;
  }

}


