@import "tailwindcss";

:root {
  --ink: #18211f;
  --muted: #5d6964;
  --paper: #f7f3ea;
  --surface: #fffdf8;
  --line: #d9d0c0;
  --sage: #55766a;
  --pine: #1f4c44;
  --clay: #b85f3f;
  --gold: #d49a35;
  --blue: #5c89a0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.lang-sq [data-lang="en"],
body.lang-en [data-lang="sq"] {
  display: none !important;
}

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

main {
  overflow: hidden;
}

.hero {
  min-height: 94vh;
  padding: 24px clamp(18px, 4vw, 64px) 56px;
  background:
    linear-gradient(115deg, rgba(255, 253, 248, 0.96), rgba(247, 243, 234, 0.82)),
    radial-gradient(circle at 84% 22%, rgba(212, 154, 53, 0.24), transparent 30%),
    var(--paper);
}

.nav {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
  max-width: 1180px;
}

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

.brand-mark {
  align-items: center;
  background: var(--pine);
  border-radius: 50%;
  color: #fffaf1;
  display: inline-flex;
  font-size: 0.86rem;
  font-weight: 800;
  height: 44px;
  justify-content: center;
  letter-spacing: 0;
  width: 44px;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.82rem;
  margin-top: 2px;
}

.nav-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}

.nav-links a {
  border: 1px solid transparent;
  border-radius: 999px;
  color: #34413d;
  font-size: 0.92rem;
  padding: 10px 13px;
}

.nav-links a:hover {
  border-color: rgba(31, 76, 68, 0.2);
  background: rgba(255, 253, 248, 0.78);
}

.language-switch {
  align-items: center;
  background: #fffaf1;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  gap: 2px;
  padding: 3px;
}

.language-switch button {
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  padding: 8px 10px;
}

.language-switch button[aria-pressed="true"] {
  background: var(--pine);
  color: #fffaf1;
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: clamp(32px, 5vw, 74px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  margin: 62px auto 0;
  max-width: 1180px;
}

.eyebrow,
.section-kicker {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 14px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.7rem);
  line-height: 0.91;
  letter-spacing: 0;
  margin-bottom: 28px;
  max-width: 820px;
}

h2 {
  font-size: clamp(2rem, 4vw, 4.35rem);
  line-height: 0.98;
  letter-spacing: 0;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.35rem;
  line-height: 1.05;
  margin-bottom: 8px;
}

.lead {
  color: #3d4b46;
  font-size: clamp(1.06rem, 1.8vw, 1.34rem);
  line-height: 1.55;
  max-width: 720px;
}

.lead.en {
  color: var(--muted);
  margin-bottom: 30px;
}

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

.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
}

.button.primary {
  background: var(--pine);
  color: #fffaf1;
}

.button.secondary {
  background: #fffaf1;
  border: 1px solid var(--line);
  color: var(--pine);
}

.button.call {
  background: var(--clay);
  color: #fffaf1;
}

.hero-media {
  aspect-ratio: 0.88;
  border: 1px solid rgba(31, 76, 68, 0.14);
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(40, 49, 42, 0.18);
  min-height: 470px;
  overflow: hidden;
  position: relative;
}

.hero-media > img {
  height: 100%;
  object-fit: cover;
  object-position: 57% center;
  width: 100%;
}

.hero-media::after {
  background: linear-gradient(180deg, transparent 52%, rgba(24, 33, 31, 0.44));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.trust-strip {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 44px auto 0;
  max-width: 1180px;
}

.trust-strip span {
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--pine);
  font-weight: 900;
  padding: 14px 16px;
  text-align: center;
}

.insta-note {
  align-items: center;
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  bottom: 18px;
  box-shadow: 0 18px 42px rgba(24, 33, 31, 0.18);
  color: var(--pine);
  display: flex;
  font-weight: 800;
  gap: 12px;
  left: 18px;
  max-width: calc(100% - 36px);
  padding: 10px 12px;
  position: absolute;
  z-index: 1;
}

.insta-note img {
  border-radius: 6px;
  height: 44px;
  object-fit: cover;
  width: 44px;
}

.section {
  margin: 0 auto;
  max-width: 1180px;
  padding: 86px clamp(18px, 4vw, 64px);
}

.intro {
  align-items: start;
  display: grid;
  gap: 26px;
  grid-template-columns: 0.86fr 1fr;
  padding-bottom: 42px;
}

.intro p:last-child,
.about-copy p,
.care-note p,
.visit-card p {
  color: #46524e;
  font-size: 1.05rem;
  line-height: 1.65;
}

.intro > p {
  max-width: 680px;
}

.services {
  padding-top: 42px;
}

.section-heading {
  max-width: 820px;
}

.service-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.service-card,
.visit-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-card {
  min-height: 280px;
  padding: 24px;
}

.service-icon {
  align-items: center;
  background: #e7efe5;
  border-radius: 50%;
  color: var(--pine);
  display: inline-flex;
  font-weight: 900;
  height: 44px;
  justify-content: center;
  margin-bottom: 28px;
  width: 44px;
}

.english-label,
.muted {
  color: var(--muted);
}

.service-card p {
  line-height: 1.55;
}

.care-paths {
  padding-top: 10px;
}

.store-section {
  background: #fffdf8;
  padding: 76px clamp(18px, 7vw, 116px);
}

.store-section .section-heading p:not(.section-kicker) {
  color: #46524e;
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 820px;
}

.store-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.store-grid article {
  background: #f1eadc;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.store-grid p {
  color: #46524e;
  line-height: 1.6;
  margin-bottom: 0;
}

.path-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.path-card {
  background: #e8efe4;
  border: 1px solid #d7e2d1;
  border-radius: 8px;
  padding: 24px;
}

.path-card span {
  color: var(--clay);
  display: block;
  font-size: 0.8rem;
  font-weight: 900;
  margin-bottom: 24px;
}

.path-card p {
  color: #46524e;
  line-height: 1.6;
  margin-bottom: 0;
}

.team {
  background: var(--pine);
  color: #fffaf1;
  padding: 90px clamp(18px, 7vw, 116px);
}

.team .section-heading {
  max-width: 920px;
}

.team .section-kicker {
  color: #f2be6a;
}

.team .section-heading p:not(.section-kicker) {
  color: rgba(255, 250, 241, 0.76);
  font-size: 1.05rem;
  line-height: 1.65;
}

.team-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  margin-top: 34px;
}

.credential-card,
.credential-list {
  background: rgba(255, 250, 241, 0.1);
  border: 1px solid rgba(255, 250, 241, 0.22);
  border-radius: 8px;
  color: #fffaf1;
  padding: 26px;
}

.credential-card.lead-vet {
  background: rgba(255, 250, 241, 0.16);
}

.credential-card p {
  color: rgba(255, 250, 241, 0.76);
  line-height: 1.6;
}

.credential-link {
  background: rgba(255, 250, 241, 0.12);
  border: 1px solid rgba(255, 250, 241, 0.22);
  border-radius: 8px;
  color: #fffaf1;
  display: inline-flex;
  font-weight: 900;
  margin-top: 12px;
  padding: 12px 14px;
}

.role {
  color: #f2be6a !important;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.credential-list {
  display: grid;
  gap: 10px;
}

.credential-list span {
  background: rgba(255, 250, 241, 0.08);
  border-radius: 8px;
  font-weight: 800;
  padding: 14px 16px;
}

.community {
  align-items: center;
  background: #fffdf8;
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  padding: 86px clamp(18px, 7vw, 116px);
}

.community-photo {
  aspect-ratio: 1;
  background: #e8efe4;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

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

.community-copy {
  max-width: 780px;
}

.community-copy p {
  color: #46524e;
  font-size: 1.05rem;
  line-height: 1.65;
}

.charity-points {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 26px;
}

.charity-points span {
  background: #e8efe4;
  border: 1px solid #d7e2d1;
  border-radius: 8px;
  color: var(--pine);
  font-weight: 800;
  line-height: 1.35;
  padding: 14px 16px;
}

.reviews .section-heading p {
  color: #46524e;
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 780px;
}

.review-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1.1fr repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.rating-card,
.review-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.rating-card {
  background: var(--pine);
  color: #fffaf1;
}

.rating-card p {
  color: rgba(255, 250, 241, 0.76);
  line-height: 1.6;
  margin-bottom: 0;
}

.rating-card strong {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.stars {
  color: #f2be6a;
  display: block;
  font-size: 1.35rem;
  letter-spacing: 0;
  margin-bottom: 20px;
}

.review-card p {
  line-height: 1.55;
}

.visit {
  align-items: stretch;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
}

.visit-card {
  padding: clamp(24px, 4vw, 44px);
}

.contact-lines {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-lines a,
.contact-lines span {
  background: #f1eadc;
  border-radius: 8px;
  color: var(--pine);
  font-weight: 800;
  padding: 14px 16px;
}

dl {
  display: grid;
  gap: 18px;
  margin: 24px 0 0;
}

dl div {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

dt {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 4px;
}

dd {
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0;
}

.care-note {
  background: #e8efe4;
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr 1fr;
  padding: 58px clamp(18px, 7vw, 116px);
}

.care-note h2 {
  color: var(--pine);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
}

.faq {
  background: var(--surface);
  padding: 86px clamp(18px, 7vw, 116px) 110px;
}

.community-actions {
  margin-top: 28px;
}

.adoption-hero {
  padding: 24px clamp(18px, 4vw, 64px) 64px;
  background:
    linear-gradient(115deg, rgba(255, 253, 248, 0.96), rgba(247, 243, 234, 0.86)),
    var(--paper);
}

.adoption-hero-grid {
  align-items: center;
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr);
  margin: 62px auto 0;
  max-width: 1180px;
}

.adoption-hero-image {
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(40, 49, 42, 0.14);
  object-fit: cover;
  width: 100%;
}

.adoption-list .section-heading p:not(.section-kicker) {
  color: #46524e;
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 780px;
}

.adoption-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  margin-top: 34px;
}

.adoption-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1fr);
  overflow: hidden;
}

.animal-placeholder {
  align-items: center;
  background: #e8efe4;
  color: var(--pine);
  display: flex;
  font-weight: 900;
  justify-content: center;
  min-height: 320px;
  padding: 24px;
}

.adoption-card-copy {
  padding: 26px;
}

.adoption-card-copy p {
  color: #46524e;
  line-height: 1.6;
}

.profile-details {
  gap: 10px;
  margin: 18px 0;
}

.profile-details div {
  background: #f1eadc;
  border: 0;
  border-radius: 8px;
  padding: 12px 14px;
}

.empty-state {
  display: block;
}

.adoption-process {
  background: #e8efe4;
  padding: 86px clamp(18px, 7vw, 116px);
}

.faq-grid {
  display: grid;
  gap: 12px;
  margin-top: 30px;
  max-width: 920px;
}

details {
  background: #f1eadc;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px;
}

summary {
  color: var(--pine);
  cursor: pointer;
  font-weight: 900;
}

details p {
  color: #46524e;
  line-height: 1.6;
  margin: 12px 0 0;
}

.mobile-action-bar {
  display: none;
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
  }

  .hero-grid,
  .adoption-hero-grid,
  .intro,
  .team-grid,
  .community,
  .adoption-grid,
  .visit,
  .care-note {
    grid-template-columns: 1fr;
  }

  .hero-media {
    aspect-ratio: 1.08;
    min-height: 340px;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .path-grid,
  .store-grid,
  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .adoption-card {
    grid-template-columns: 1fr;
  }

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

  .charity-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: 68px;
  }

  .hero {
    padding-top: 16px;
  }

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

  .nav-links {
    justify-content: flex-start;
    width: 100%;
  }

  h1 {
    font-size: clamp(2.55rem, 14vw, 4.3rem);
  }

  .hero-grid {
    margin-top: 42px;
  }

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

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

  .path-grid,
  .store-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .section {
    padding-block: 62px;
  }

  .mobile-action-bar {
    background: #fffaf1;
    border-top: 1px solid var(--line);
    bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    left: 0;
    position: fixed;
    right: 0;
    z-index: 20;
  }

  .mobile-action-bar a {
    color: var(--pine);
    font-weight: 900;
    padding: 16px 12px;
    text-align: center;
  }

  .mobile-action-bar a[href^="tel"] {
    background: var(--pine);
    color: #fffaf1;
  }
}
