/* SharedVision Collective – base styles */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Poppins', sans-serif;
  background: #f4efe6;
  color: #1e1e1e;
  line-height: 1.6;
}

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

a {
  color: #c85624;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1120px, 100% - 2rem);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #f4efe6cc;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e1d9cc;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

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

.logo-image {
  width: 48px;           /* try 64px if this feels a bit tall */
  height: 48px;
  object-fit: contain;
  border-radius: 24px;   /* makes it a circle */
  overflow: hidden;
}


.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-weight: 700;
  letter-spacing: 0.03em;
}

.logo-sub {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #6b6257;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.95rem;
  color: #1e1e1e;
  text-decoration: none;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 0;
  height: 2px;
  background: #c85624;
  transition: width 0.2s ease-out;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Mobile nav */
.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  cursor: pointer;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: #1e1e1e;
  border-radius: 999px;
  position: relative;
  transition: all 0.2s ease-out;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
  content: '';
  position: absolute;
  left: 0;
}

.nav-toggle-label span::before {
  top: -6px;
}

.nav-toggle-label span::after {
  top: 6px;
}

.nav-toggle:checked + .nav-toggle-label span {
  background: transparent;
}

.nav-toggle:checked + .nav-toggle-label span::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle:checked + .nav-toggle-label span::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav-toggle:checked ~ .nav-links {
  max-height: 240px;
  opacity: 1;
}

/* Hero */
.hero {
  padding: 4.5rem 0 3.5rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  color: #6b6257;
  margin: 0 0 0.75rem;
}

.hero h1 {
  font-size: clamp(2.1rem, 3vw + 1.2rem, 2.9rem);
  line-height: 1.15;
  margin: 0 0 0.85rem;
}

.lead {
  font-size: 1.05rem;
  max-width: 36rem;
  color: #4d463f;
}

.hero-buttons {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease-out, color 0.2s ease-out, border-color 0.2s ease-out, transform 0.1s ease-out;
}

.btn.primary {
  background: #c85624;
  color: #fff;
}

.btn.primary:hover {
  background: #aa4316;
  transform: translateY(-1px);
}

.btn.secondary {
  background: transparent;
  color: #c85624;
  border-color: #c85624;
}

.btn.secondary:hover {
  background: #f8e3d6;
}

.btn.ghost {
  background: #f4efe6;
  border-color: #c85624;
  color: #c85624;
}

.btn.ghost:hover {
  background: #f8e3d6;
}

.text-link {
  font-size: 0.95rem;
}

/* Hero art */
.hero-art {
  position: relative;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tail-orbit {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1px solid #e1d9cc;
  opacity: 0.7;
}

.tail-swoosh {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border-width: 20px;
  border-style: solid;
  /* only one quarter of the “circle” is coloured – the rest is transparent,
     so you get a curved brushstroke instead of a full ring */
  border-color: #c85624 transparent transparent transparent;
  transform: rotate(-35deg);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

/* soft glow inside the curve so it feels more brush-strokey / alive */
.tail-swoosh::before {
  content: "";
  position: absolute;
  inset: 25% 25%;
  border-radius: 50%;
  background: radial-gradient(circle at 20% 20%, #f9c29a, #f4efe6);
  opacity: 0.9;
}

@keyframes tailFloat {
  0%, 100% {
    transform: translateY(0) rotate(-4deg);
  }
  50% {
    transform: translateY(-6px) rotate(-1deg);
  }
}

/* Sections */
.section {
  padding: 3.5rem 0;
}

.section-header {
  max-width: 640px;
  margin-bottom: 2rem;
}

.section-header h1,
.section-header h2 {
  margin-bottom: 0.5rem;
}

.section-header p {
  margin: 0;
  color: #4d463f;
}

.strip {
  background: #e7dbcb;
}

.strip-inner {
  padding: 1rem 0;
  text-align: center;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5a5248;
}

.grid {
  display: grid;
  gap: 1.8rem;
}

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

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

.gap-large {
  gap: 2.5rem;
}

/* Cards & content blocks */
.card {
  background: #fffaf2;
  border-radius: 1rem;
  padding: 1.5rem 1.7rem;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}

.card h3 {
  margin-top: 0;
}

.card-link {
  display: inline-block;
  margin-top: 0.7rem;
  font-size: 0.9rem;
}

/* Values band */
.band {
  background: #1e1e1e;
  color: #f4efe6;
}

.band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.band-inner p {
  max-width: 32rem;
}

.band-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
}

/* Services */
.service-block {
  margin-bottom: 2.5rem;
}

.service-block h2 {
  margin-bottom: 0.4rem;
}

.service-block ul {
  padding-left: 1.2rem;
}

/* Checklist */
.checklist {
  list-style: none;
  padding-left: 0;
}

.checklist li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.5rem;
}

.checklist li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-size: 0.8rem;
  color: #c85624;
}

/* Values grid */
.values-grid {
  display: grid;
  gap: 1.8rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.values-grid article {
  background: #fffaf2;
  border-radius: 1rem;
  padding: 1.5rem 1.7rem;
}

/* Contact */
.contact-layout {
  align-items: flex-start;
}

.contact-form {
  background: #fffaf2;
  border-radius: 1rem;
  padding: 1.7rem;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.contact-form label {
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.contact-form input,
.contact-form textarea {
  border-radius: 0.6rem;
  border: 1px solid #d0c5b5;
  padding: 0.55rem 0.7rem;
  font: inherit;
  background: #fdf8f0;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid #c85624;
  outline-offset: 1px;
  background: #fff;
}

/* Brand swatches */
.brand-block {
  margin-bottom: 2.5rem;
}

.swatch-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.swatch {
  border-radius: 0.8rem;
  padding: 1rem 1.2rem;
  color: #fff;
  min-width: 150px;
}

.swatch span {
  display: block;
  font-weight: 600;
}

.swatch code {
  font-size: 0.8rem;
}

.swatch-rust {
  background: #c85624;
}

.swatch-charcoal {
  background: #1e1e1e;
}

.swatch-beige {
  background: #f4efe6;
  color: #1e1e1e;
  border: 1px solid #e1d9cc;
}

/* CTAs */
.cta-block {
  margin-top: 2.5rem;
  padding: 1.8rem 1.9rem;
  border-radius: 1rem;
  background: #fffaf2;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.05);
}

/* Footer */
.site-footer {
  margin-top: 3rem;
  padding: 1.8rem 0 2.2rem;
  border-top: 1px solid #e1d9cc;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.footer-logo {
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.muted {
  color: #6b6257;
}

.small {
  font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-art {
    order: -1;
    min-height: 180px;
  }

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

@media (max-width: 720px) {
  .nav-links {
    position: absolute;
    right: 1rem;
    top: 56px;
    flex-direction: column;
    background: #f4efe6;
    padding: 0.7rem 1rem 1rem;
    border-radius: 0.8rem;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.2s ease-out, opacity 0.2s ease-out;
  }

  .nav-toggle-label {
    display: block;
  }
}

@media (max-width: 640px) {
  .grid.two {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .footer-inner {
    flex-direction: column;
  }
}
