:root {
  --green-900: #0f2d1d;
  --green-800: #17422c;
  --green-700: #1f5738;
  --green-600: #2b6f4b;
  --green-500: #3b8a5c;
  --cream: #f7f3ea;
  --sand: #f6f1e8;
  --accent: #c98b3f;
  --white: #ffffff;
  --error: #b61f1f;
  --ink: #1c1c1c;
  --muted: #5b635e;
  --card: var(--white);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --radius: 18px;
  --font-body: "Lora", "Comic Sans MS", serif;
  --font-display: "Libre Baskerville", "Times New Roman", serif;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
  line-height: 1.7;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(247, 243, 234, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(15, 45, 29, 0.12);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 0;
  gap: 16px;
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: auto;
}

.brand {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 1px;
  color: var(--green-900);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand span {
  display: block;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--green-700);
  text-transform: none;
}

.brand-logo {
  width: 84px;
  height: 84px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  font-size: 14px;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-left: auto;
}

.nav-links a.active,
.nav-item.active > .dropdown-toggle {
  text-shadow: 0.35px 0 0 currentColor, -0.35px 0 0 currentColor;
  border-color: transparent;
  border-bottom: 2px solid var(--green-900);
  background: transparent;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(15, 45, 29, 0.2);
  color: var(--green-900);
  border-radius: 999px;
  padding: 8px 12px;
  cursor: pointer;
}

.nav-toggle i { font-size: 16px; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.nav-links a,
.nav-links .dropdown-toggle {
  padding: 6px 10px;
  border-radius: 0;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  font-weight: 500;
}

.nav-links > a:hover,
.nav-links > a.active,
.nav-item > .dropdown-toggle:hover,
.nav-item.active > .dropdown-toggle {
  text-shadow: 0.35px 0 0 currentColor, -0.35px 0 0 currentColor;
  border-color: transparent;
  border-bottom: 2px solid var(--green-900);
  background: transparent;
}

.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-bottom: 6px;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.dropdown-toggle i {
  font-size: 10px;
}

.dropdown-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(15, 45, 29, 0.2);
  background: transparent;
  color: var(--green-900);
  cursor: pointer;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 45, 29, 0.12);
  padding: 8px;
  display: none;
  z-index: 20;
}

.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 0;
  text-transform: none;
  letter-spacing: 0.2px;
  font-weight: 500;
}

.dropdown-menu a:hover {
  text-shadow: 0.35px 0 0 currentColor, -0.35px 0 0 currentColor;
  background: transparent;
}

.dropdown-menu a.active {
  text-shadow: 0.35px 0 0 currentColor, -0.35px 0 0 currentColor;
  border-bottom: 0;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  display: block;
}

.dropdown.is-open .dropdown-menu {
  display: block;
}

main { padding: 60px 0 20px; }

.page main { padding-top: 0; }

.hero-bleed {
  position: relative;
  background-image: url("/slike/tribor-home.jpg");
  background-size: cover;
  background-position: center 75%;
  background-repeat: no-repeat;
  padding: 140px 0 120px;
}

.hero-bleed--inner {
  padding: 90px 0 70px !important;
  background-image: url("/slike/stranice-proizvoda.jpg") !important;
}

.inner-hero--mlecni .hero-bleed--inner {
  background-image: url("/slike/sir2.jpg") !important;
}

.inner-hero--sveze .hero-bleed--inner {
  background-image: url("/slike/meso2.jpg") !important;
}

.inner-hero--ostali .hero-bleed--inner {
  background-image: url("/slike/vino2.jpg") !important;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 45, 29, 0.6) 0%, rgba(15, 45, 29, 0.35) 60%, rgba(15, 45, 29, 0.1) 100%);
  z-index: 0;
}

.hero-overlay-strong {
  background: linear-gradient(180deg, rgba(15, 45, 29, 0.78) 0%, rgba(15, 45, 29, 0.62) 55%, rgba(15, 45, 29, 0.42) 100%);
}

.hero-bleed .hero {
  position: relative;
  z-index: 1;
  color: var(--white);
}

.hero-bleed .hero h1 {
  color: var(--white);
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.hero-bleed .breadcrumbs {
  margin-top: 10px;
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--white);
}

.hero-bleed .breadcrumbs a,
.hero-bleed .breadcrumbs span {
  color: var(--white);
  text-decoration: none;
}

.hero-bleed .breadcrumbs .crumb-sep {
  opacity: 0.7;
}

.hero-bleed .btn.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}

.hero-bleed .btn.secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
  padding: 70px 0 40px;
  align-items: center;
}

.hero h1,
h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 600;
  letter-spacing: 0;
  margin: 0 0 10px;
  color: var(--green-900);
}

.hero h1 {
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 18px;
}

.hero-subtitle {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  max-width: 720px;
}

.hero-bleed--home-clean {
  min-height: clamp(170px, 26vh, 280px);
  padding-bottom: 40px;
}

.hero-home {
  min-height: inherit;
  display: block;
  position: relative;
  padding: 0;
}

.hero-home-actions {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 34px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
}

.hero-home-actions .btn {
  padding: 24px 54px;
  font-size: 24px;
  font-family: var(--font-body);
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--green-700);
  color: var(--white);
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: var(--shadow);
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  background: var(--green-600);
}

.btn.secondary {
  background: transparent;
  color: var(--green-800);
  border: 1px solid var(--green-700);
  box-shadow: none;
}

.hero-card,
.card,
.product-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
  display: grid;
  gap: 12px;
}

.hero-card.image-only {
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.hero-card.image-only img {
  width: 100%;
  border-radius: 14px;
  box-shadow: var(--shadow);
  display: block;
}

.card h3,
.product-card h3 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--green-900);
  font-size: 20px;
}

.img-placeholder {
  height: 260px;
  border-radius: 14px;
  border: 2px dashed rgba(31, 87, 56, 0.3);
  background: linear-gradient(140deg, rgba(31, 87, 56, 0.06), rgba(201, 139, 63, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--green-800);
  font-size: 13px;
  padding: 16px;
}

section { padding: 50px 0; }

.section-alt {
  background: var(--sand);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.2vw, 46px);
  font-weight: 600;
  letter-spacing: 0;
  color: var(--green-900);
  margin: 0 0 10px;
}

.section-lead,
.lead {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 18px;
}

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

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  text-align: center;
}

.values-section {
  padding: 50px 0;
}

@media (min-width: 721px) {
  .values-section {
    padding: 80px 0;
  }
}

.value-card {
  display: grid;
  gap: 10px;
  align-items: center;
  justify-items: center;
}
.value-card p {
  height: 100px;
  padding: 0 1rem;
}

.value-card i {
  font-size: 64px;
  line-height: 1;
  color: var(--green-700);
  width: 72px;
  height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.value-card h3 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--green-900);
  font-size: 20px;
}

.process-list {
  padding-left: 18px;
  margin: 0;
}

.process-list li { margin-bottom: 10px; }

.process-section .container {
  position: relative;
}

.process-inner {
  position: relative;
  min-height: 260px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  padding: 120px 0;
}

.process-section--bg {
  position: relative;
  background-image:
    linear-gradient(90deg, rgba(246, 241, 232, 0.98) 0%, rgba(246, 241, 232, 0.72) 50%, rgba(246, 241, 232, 0.3) 75%, rgba(0,0,0,0) 100%),
    url("/slike/tribor-about1.jpg");
  background-size: cover;
  background-position: center;
}

@media (max-width: 900px) {
  .process-inner {
    grid-template-columns: 1fr;
    padding: 40px 0;
  }
  .process-section--bg {
    background-image: url("/slike/tribor-about1.jpg");
    background-size: cover;
    background-position: right center;
    background-color: rgba(255, 255, 255, 0.7);
    background-blend-mode: lighten;
  }
}

.gallery-section {
  margin-top: 32px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 24px;
  justify-content: center;
}

.gallery-card {
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
}

.overlay-card {
  position: relative;
}

.gallery-item {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.inner-hero--sveze .gallery-item img {
  height: 400px;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 6px;
  text-align: center;
  color: var(--white);
  background: linear-gradient(180deg, rgba(0,0,0,0) 25%, rgba(0,0,0,0.75) 100%);
  font-family: var(--font-display);
  pointer-events: none;
  padding: 16px;
}

.gallery-overlay span {
  font-size: 20px;
  font-weight: 600;
}

.gallery-overlay small {
  font-size: 16px;
  font-family: var(--font-body);
  font-weight: 700;
}

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

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

.lightbox.open { display: flex; }

.lightbox img {
  max-width: 92vw;
  max-height: 82vh;
  border-radius: 12px;
  position: relative;
  z-index: 2;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: 0;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
  z-index: 3;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  border: 0;
  color: var(--white);
  font-size: 28px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  cursor: pointer;
  z-index: 3;
}

.lightbox-nav.prev { left: 16px; }
.lightbox-nav.next { right: 16px; }

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

.wine-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.wine-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
  align-items: end;
}

.wine-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.wine-card span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 16px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 28px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 100%);
}

.wine-card:hover img {
  transform: scale(1.05);
}

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

.testimonial-card {
  background: var(--white);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
  text-align: center;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.testimonial-card i {
  font-size: 22px;
  color: var(--green-700);
}

.testimonial-card p {
  margin: 0;
  font-size: 18px;
  color: var(--muted);
}

.testimonial-card span {
  font-weight: 600;
  color: var(--green-900);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.contact-card {
  background: var(--white);
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--shadow);
  text-align: center;
  display: grid;
  gap: 10px;
}

.contact-card i {
  font-size: 36px;
  color: var(--green-700);
}

.contact-card h3 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--green-900);
  font-size: 20px;
}

.contact-card p {
  margin: 0;
  color: var(--muted);
}

.share-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 0;
  font-size: 14px;
  justify-content: flex-start;
  padding: 10px 0;
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
}

.share-bar span {
  color: var(--muted);
}

.share-btn {
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--sand);
  color: var(--green-900);
  font-weight: 600;
  font-size: 16px;
  min-width: 44px;
  flex: 0 0 auto;
  justify-content: center;
  display: inline-flex;
}

.share-btn:hover {
  filter: brightness(0.95);
  transform: translateY(-2px);
}

.share-btn.fb { background: #1877f2; color: var(--white); }
.share-btn.x { background: #111111; color: var(--white); }
.share-btn.wa { background: #25d366; color: var(--white); }
.share-btn.vb { background: #7360f2; color: var(--white); }

.contact-form-section {
  margin-top: 40px;
  background: var(--sand);
  padding: 40px 0;
}

.map-section {
  padding: 0;
}

.map-embed {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.contact-form {
  background: var(--white);
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

.contact-form .btn {
  width: fit-content;
  justify-self: start;
}

.form-success {
  background: var(--green-900);
  border: 1px solid rgba(15, 45, 29, 0.2);
  color: var(--white);
  padding: 12px 14px;
  border-radius: 12px;
  margin: 10px 0 18px;
}

.form-error {
  background: var(--error);
  border: 1px solid rgba(182, 31, 31, 0.3);
  color: var(--white);
  padding: 12px 14px;
  border-radius: 12px;
  margin: 10px 0 18px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--green-900);
  font-weight: 600;
}

.honeypot {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(15, 45, 29, 0.15);
  border-radius: 12px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

@media (max-width: 720px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

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

.product-tiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.product-tile {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 360px;
  display: grid;
  align-items: end;
  box-shadow: var(--shadow);
  transform: translateZ(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 10%, rgba(0,0,0,0.65) 100%);
  transition: opacity 0.3s ease;
}

.product-tile span {
  position: relative;
  z-index: 1;
  padding: 16px 18px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.4px;
  transition: transform 0.3s ease;
  display: inline-grid;
  gap: 6px;
}

.product-tile span small {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.2px;
  opacity: 0.9;
}

.about-img {
  width: 100%;
  border-radius: 14px;
  display: block;
}

.product-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.product-tile:hover img {
  transform: scale(1.06);
}

.product-tile:hover::after {
  opacity: 0.85;
}

.product-tile:hover span {
  transform: translateY(-4px);
}

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

.product-card .img-placeholder { height: 180px; }

.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(59, 138, 92, 0.15);
  color: var(--green-800);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: fit-content;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  align-items: center;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 30px;
  align-items: start;
}

.about-intro-media {
  display: grid;
  justify-items: center;
  align-content: start;
  align-items: start;
}

.about-logo {
  width: 140px;
  height: 140px;
  object-fit: contain;
}

.about-intro-photo {
  width: min(100%, 460px);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.about-intro-card {
  margin-top: 40px;
  padding: 32px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.about-intro-card p {
  margin: 0 0 10px;
}

.about-intro-card p:last-child {
  margin-bottom: 0;
}

.list { padding-left: 18px; margin: 0; }
.list li { margin-bottom: 8px; }

.list.highlight {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}

.list.highlight li {
  margin: 0;
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--sand);
  border: 1px solid rgba(15, 45, 29, 0.12);
}

.list.highlight li strong {
  color: var(--green-900);
}

.blockquote {
  margin: 20px 0 0;
  padding: 16px 18px;
  border-left: 4px solid var(--green-700);
  background: var(--sand);
  border-radius: 12px;
  color: var(--muted);
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 260px) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.feature-row img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.feature-row--rich {
  align-items: flex-start;
  grid-template-columns: 400px minmax(0, 1fr);
}

.inner-hero--mlecni .feature-row--rich {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 18px;
  margin-bottom: 18px;
}

.feature-media {
  display: grid;
  gap: 10px;
  width: 400px;
  max-width: 100%;
}

.feature-main {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.feature-main img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.feature-thumbs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.feature-thumbs a {
  display: block;
  border-radius: 12px;
  overflow: hidden;
}

.feature-thumbs img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}

.feature-thumbs a:hover img,
.feature-main:hover img {
  transform: scale(1.04);
}

@media (min-width: 721px) {
  .feature-row {
    align-items: flex-start;
    grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  }
  .feature-row--rich {
    align-items: flex-start;
    grid-template-columns: minmax(0, 400px) minmax(0, 1fr);
  }
  .feature-thumbs img {
    height: 120px;
    object-fit: cover;
  }
}

@media (max-width: 720px) {
  .feature-row {
    grid-template-columns: 1fr;
  }
  .feature-row--rich {
    grid-template-columns: 1fr;
  }
  .feature-row--rich > :not(.feature-media) {
    order: 1;
  }
  .feature-row--rich > .feature-media {
    order: 2;
  }
  .feature-media {
    width: 100%;
  }
  .feature-thumbs img {
    height: 120px;
    object-fit: cover;
  }
  .feature-main img {
    height: 240px;
  }
}

.note,
.price-note {
  margin-top: 18px;
  font-size: 14px;
  color: var(--muted);
  border-left: 2px solid rgba(31, 87, 56, 0.3);
  padding-left: 10px;
}

.price-tag {
  margin-top: 10px;
  font-size: 36px;
  font-weight: 700;
  color: var(--green-900);
}

.package-price {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--green-700);
  border: 1px solid rgba(15, 45, 29, 0.18);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
  font-size: 24px;
  line-height: 1.35;
  width: 100%;
}

.package-price-label {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}

.package-price-value {
  font-weight: 700;
  color: var(--white);
}

.package-price-sep {
  display: none;
  margin: 0;
}

.package-price + .blockquote {
  margin-top: 80px;
}

@media (min-width: 721px) {
  .package-price {
    justify-content: space-between;
  }
}

.product-group-grid {
  margin-top: 28px;
  display: grid;
  gap: 20px;
}

.product-group {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 18px;
}

.product-group h3 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--green-900);
  font-size: 34px;
}

.group-price {
  margin: 4px 0 14px;
  font-weight: 700;
  color: var(--green-900);
  font-size: 22px;
}

.group-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.group-gallery a {
  display: block;
  border-radius: 12px;
  overflow: hidden;
}

.group-gallery img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.group-gallery a:hover img {
  transform: scale(1.04);
}

.angus-offer {
  margin-top: 34px;
  background: var(--sand);
  border-radius: 16px;
  padding: 20px;
}

.angus-offer h3 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--green-900);
  font-size: 36px;
}

.angus-offer p {
  margin: 8px 0 0;
}

.angus-offer-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.angus-item {
  background: var(--white);
  border: 1px solid rgba(15, 45, 29, 0.12);
  border-radius: 12px;
  padding: 12px 14px;
  display: grid;
  gap: 4px;
}

.angus-item strong {
  color: var(--green-900);
}

.angus-item span {
  font-size: 20px;
  font-weight: 700;
  color: var(--green-900);
}

.contact {
  background: var(--green-900);
  color: var(--white);
  border-radius: var(--radius);
  padding: 26px;
  display: grid;
  gap: 12px;
  box-shadow: var(--shadow);
}

.contact a { color: var(--white); text-decoration: underline; }

.contact-cta-section {
  padding-top: 40px;
}

.contact-cta-box {
  background: transparent;
  border-radius: 18px;
  padding: 34px 24px;
  text-align: left;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.contact-cta-box .section-lead {
  margin: 0;
  font-size: 21px;
}

.contact-cta-btn {
  margin-top: 8px;
  padding: 16px 40px;
  font-size: 17px;
  background: transparent;
  box-shadow: none;
  flex: 0 0 auto;
}

@media (max-width: 720px) {
  .contact-cta-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .contact-cta-btn {
    margin-top: 4px;
  }
}

.call-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: var(--green-700);
  color: var(--white);
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  z-index: 50;
}

.call-float i { font-size: 20px; }

@media (max-width: 720px) {
  .call-float { display: inline-flex; }
}

@media (min-width: 1300px) {
  .hero-bleed {
    padding: 280px 0 50px;
  }
}

@media (min-width: 999px) and (max-width: 1299px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1300px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.page {
  position: relative;
  overflow: hidden;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  animation: fadeUp 0.8s ease forwards;
}

.reveal.delay-1 { animation-delay: 0.15s; }
.reveal.delay-2 { animation-delay: 0.3s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.site-footer {
  padding: 40px 0;
  background: var(--green-900);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.footer-col {
  display: grid;
  gap: 8px;
}

.footer-logo {
  width: 84px;
  height: 84px;
  object-fit: contain;
}

.footer-title {
  font-family: var(--font-display);
  letter-spacing: 1px;
  font-size: 20px;
  font-weight: 700;
}

.footer-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
}

.footer-link {
  color: var(--white);
  font-size: 14px;
}

.footer-link:hover {
  text-decoration: underline;
}

.footer-social {
  display: inline-flex;
  gap: 12px;
  margin-top: 6px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 18px;
}

@media (max-width: 720px) {
  .hero-home-actions {
    bottom: 20px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: min(92vw, 320px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 0;
  }
  .hero-bleed--home-clean {
    min-height: clamp(238px, 36.4vh, 392px);
  }
  .hero-home-actions .btn {
    padding: 12px 22px;
    font-size: 14px;
    width: auto;
  }
  .about-intro-grid {
    grid-template-columns: 1fr;
  }
  .about-logo {
    width: 100px;
    height: 100px;
  }
  .group-gallery {
    grid-template-columns: 1fr;
  }
  .group-gallery img {
    height: 220px;
  }
  .angus-offer-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 721px) {
  .site-footer {
    padding: 60px 0;
  }
}

.footer-copyright {
  background: var(--green-900);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  text-align: center;
  padding: 1rem 0;
}

@media (max-width: 720px) {
  .top-ribbon { display: none; }
  .nav { flex-direction: column; align-items: flex-start; }
  .brand-row { width: 100%; }
  .hero { padding-top: 40px; }
  .hero-bleed { padding: 100px 0 80px; }
  .img-placeholder { height: 220px; }
  .nav-item {
    width: 100%;
    flex-wrap: wrap;
  }
  .dropdown-menu {
    position: static;
    min-width: 100%;
    box-shadow: none;
    border-radius: 12px;
    margin-top: 6px;
    flex-basis: 100%;
  }
  .dropdown-toggle {
    justify-content: space-between;
  }
  .dropdown-btn {
    display: inline-flex;
  }
  .dropdown-toggle {
    flex: 1;
  }
  .nav-item {
    gap: 8px;
  }
  .nav-toggle {
    display: inline-flex;
    padding: 0;
    border: 0;
  }
  .nav-toggle i {
    font-size: 44px;
  }
  .nav-links {
    width: 100%;
    display: none;
    flex-direction: column;
    gap: 10px;
    padding-top: 8px;
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { width: 100%; }
  .nav-links .dropdown-toggle { width: auto; }
  .dropdown:hover .dropdown-menu,
  .dropdown:focus-within .dropdown-menu {
    display: none;
  }
  .dropdown.is-open .dropdown-menu {
    display: block;
  }
  .section-title {
    font-size: 28px;
  }
  .hero h1 {
    font-size: clamp(30px, 9vw, 38px);
  }
  .product-group h3,
  .angus-offer h3 {
    font-size: 28px;
  }
  .package-price {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4px 8px;
    font-size: 19px;
    width: 100%;
  }
  .package-price-label {
    justify-self: start;
  }
  .package-price-value {
    justify-self: end;
    text-align: right;
  }
  .package-price-sep {
    display: none;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .product-tiles {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { animation: none; opacity: 1; transform: none; }
}

.top-ribbon {
  background: var(--green-900);
  color: var(--white);
  font-size: 13px;
}

.top-ribbon-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  gap: 12px;
}

.ribbon-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
}

.ribbon-phone i { font-size: 12px; }

.ribbon-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.ribbon-social a {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  transition: transform 0.2s ease, background 0.2s ease;
}

.ribbon-social a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.22);
}

@media (max-width: 720px) {
  .top-ribbon-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
.home .product-tile span {
  font-size: 30px;
}

.products-page .product-tile span {
  font-size: 40px;
}

.products-page .product-tile span small {
  font-size: 14px;
}
