/* ==========================================================================
   A&J Supply — shared design system (owner: orchestrator)
   Source platform: Wix. Fonts loaded via <link> in each page head.
   Page subagents may APPEND page-scoped rules below their own "page:" banner
   and must never edit this shared token / header / footer block.
   ========================================================================== */

:root {
  --gold: #d4a017;
  --gold-dark: #b6890f;
  --gold-soft: #e7c15a;
  --ink: #1b1a18;
  --ink-2: #24221f;
  --text: #232323;
  --muted: #5c5c5c;
  --line: #e6e6e0;
  --cream: #fffdf5;
  --white: #ffffff;

  --font-display: "Poppins", "Segoe UI", Arial, sans-serif;
  --font-body: "Poppins", "Segoe UI", Arial, sans-serif;

  --wrap: 1200px;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 .5em;
  font-weight: 700;
}

p { margin: 0 0 1rem; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: #fff;
  padding: 10px 16px;
  z-index: 1000;
}
.skip-link:focus { left: 8px; top: 8px; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  padding: 13px 30px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color .25s ease, color .25s ease, transform .2s ease, box-shadow .25s ease;
  text-align: center;
}
.btn-primary { background: var(--gold); color: #fff; }
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: var(--shadow-card); }
.btn-light { background: rgba(255, 255, 255, .92); color: var(--ink); }
.btn-light:hover { background: #fff; transform: translateY(-2px); }
.btn-outline { background: transparent; color: #fff; border-color: #fff; }
.btn-outline:hover { background: #fff; color: var(--ink); }

/* --- Eyebrow label --- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: .12em;
  font-size: .72rem;
  color: var(--gold-dark);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 0; height: 0;
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent var(--gold);
}
.eyebrow span {
  border: 1px solid var(--gold);
  border-radius: 4px;
  padding: 4px 10px;
  color: var(--gold-dark);
}

/* --- Header / Nav --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #fff;
  display: flex;
  align-items: stretch;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
}
.brand {
  background: var(--gold);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 14px 40px 14px 40px;
  min-width: 240px;
}
.brand .brand-main {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.9rem;
  line-height: 1;
  letter-spacing: .01em;
  border-bottom: 2px solid rgba(255, 255, 255, .9);
  padding-bottom: 4px;
  display: inline-block;
}
.brand .brand-sub {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: .66rem;
  letter-spacing: .18em;
  margin-top: 5px;
}
.nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 34px;
  padding: 0 28px;
}
.nav a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: .98rem;
  color: #2a2a2a;
  padding: 8px 2px;
  transition: color .2s ease;
}
.nav a:hover { color: var(--gold-dark); }
.nav a.active { color: var(--gold); font-weight: 600; }

.header-phone {
  /* right-aligned phone block */
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 34px 0 0;
}
.header-phone .phone-ico {
  background: #111;
  color: #fff;
  width: 46px; height: 46px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-phone .phone-ico svg { width: 22px; height: 22px; fill: #fff; }
.header-phone .phone-txt small {
  display: block;
  font-size: .78rem;
  color: #333;
  line-height: 1.2;
}
.header-phone .phone-txt b {
  font-family: var(--font-display);
  color: var(--gold-dark);
  font-size: 1rem;
}

/* --- Section rhythm --- */
.section { padding: 80px 0; }
.section-title { text-align: center; font-size: 2rem; margin-bottom: 44px; }

/* --- Page banner (interior page hero over kale/store photo) --- */
.page-banner {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.page-banner::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .35), rgba(0, 0, 0, .1));
  z-index: 1;
}
.page-banner .wrap { position: relative; z-index: 2; width: 100%; }
.page-banner h1 {
  color: #fff;
  font-size: 3.2rem;
  font-weight: 700;
  margin: 0;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .35);
}
.torn-bottom::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 34px;
  z-index: 3;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'%3E%3Cpath fill='%23ffffff' d='M0,40 L0,20 L40,24 L80,13 L120,22 L160,9 L200,19 L240,11 L280,23 L320,15 L360,25 L400,12 L440,21 L480,9 L520,20 L560,12 L600,24 L640,14 L680,22 L720,10 L760,21 L800,13 L840,23 L880,15 L920,25 L960,12 L1000,20 L1040,10 L1080,22 L1120,14 L1160,24 L1200,16 L1200,40 Z'/%3E%3C/svg%3E") repeat-x bottom / 1200px 34px;
}

/* --- Oval framed images (about blocks) --- */
.oval-pair {
  display: flex;
  gap: 22px;
  justify-content: center;
  align-items: flex-start;
}
.oval {
  border-radius: 140px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 26px rgba(0, 0, 0, .18);
}
.oval::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 140px;
  border: 3px solid var(--gold);
  pointer-events: none;
}
.oval img { width: 100%; height: 100%; object-fit: cover; }
.oval-1 { width: 200px; height: 380px; margin-top: 34px; }
.oval-2 { width: 224px; height: 470px; }

/* --- Footer --- */
.site-footer { background: var(--ink); color: #cfcac2; }
.site-footer .cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding: 64px 0 48px;
}
.site-footer h4 {
  color: var(--gold);
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links a { display: block; padding: 6px 0; color: #cfcac2; transition: color .2s ease; }
.footer-links a:hover { color: var(--gold); }
.footer-brand { text-align: center; }
.footer-brand .fb-main {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
  display: inline-block;
  line-height: 1;
  padding-bottom: 4px;
}
.footer-brand .fb-sub {
  display: block;
  color: #e7e2da;
  font-size: .72rem;
  letter-spacing: .18em;
  margin: 6px 0 20px;
}
.footer-brand p { font-size: .9rem; color: #bdb8b0; max-width: 320px; margin: 0 auto; }
.footer-contact { text-align: right; }
.footer-contact p { margin: 0 0 10px; font-size: .92rem; color: #cfcac2; }
.footer-contact a { color: #cfcac2; }
.footer-contact a:hover { color: var(--gold); }
.footer-bar {
  background: var(--gold);
  color: #2a2205;
  text-align: center;
  font-size: .82rem;
  padding: 12px 0;
  font-weight: 500;
}

/* --- Contact info rows (shared by home + contact) --- */
.contact-info-row { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 22px; }
.contact-info-row .ci-ico {
  flex: 0 0 auto;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info-row .ci-ico svg { width: 22px; height: 22px; fill: #fff; }
.contact-info-row b { display: block; color: var(--ink); font-family: var(--font-display); }
.contact-info-row span, .contact-info-row a { color: var(--muted); }

/* --- Contact form (shared) --- */
.lead-form { display: grid; gap: 18px; }
.lead-form .row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.lead-form label {
  display: block;
  font-size: .9rem;
  color: #333;
  margin-bottom: 7px;
  font-family: var(--font-display);
  font-weight: 500;
}
.lead-form input,
.lead-form textarea {
  width: 100%;
  background: var(--cream);
  border: 1px solid var(--gold-soft);
  border-radius: 6px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text);
}
.lead-form input:focus,
.lead-form textarea:focus { outline: 2px solid var(--gold); border-color: var(--gold); }
.lead-form textarea { min-height: 130px; resize: vertical; }
.hp-field { position: absolute; left: -9999px; top: 0; width: 1px; height: 1px; overflow: hidden; }

/* --- Leaflet map mount --- */
.map-mount { width: 100%; height: 300px; border-radius: 10px; overflow: hidden; box-shadow: var(--shadow); }

/* --- Motion --- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.anim-up { animation: fadeUp .7s ease both; }
.anim-in { animation: fadeIn 1s ease both; }
.anim-d1 { animation-delay: .12s; }
.anim-d2 { animation-delay: .24s; }
.anim-d3 { animation-delay: .36s; }
.anim-d4 { animation-delay: .48s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; transition: none !important; }
}

/* --- Responsive chrome --- */
@media (max-width: 960px) {
  .site-header { flex-wrap: wrap; }
  .brand { min-width: 0; flex: 1; padding: 12px 20px; }
  .header-phone { order: 2; padding: 10px 20px; }
  .nav {
    order: 3;
    flex-basis: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
    padding: 12px 16px;
    border-top: 1px solid var(--line);
  }
  .page-banner h1 { font-size: 2.3rem; }
  .site-footer .cols { grid-template-columns: 1fr; text-align: center; }
  .footer-contact { text-align: center; }
  .oval-1 { width: 150px; height: 290px; }
  .oval-2 { width: 168px; height: 350px; }
}
@media (max-width: 560px) {
  .lead-form .row-2 { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
}

/* ==========================================================================
   page: home
   ========================================================================== */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .55), rgba(0, 0, 0, .25)),
    url("orig/02.jpg") center 30% / cover no-repeat,
    url("orig/01.jpg") center / cover no-repeat;
}
.hero .wrap { position: relative; z-index: 2; }
.hero .eyebrow { color: var(--gold-soft); }
.hero .eyebrow span { border-color: var(--gold-soft); color: var(--gold-soft); }
.hero h1 {
  color: #fff;
  font-size: 3.4rem;
  font-weight: 800;
  max-width: 640px;
  margin: 0 0 18px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, .4);
}
.hero h1 .gold { color: var(--gold); }
.hero p.lead { max-width: 480px; font-size: 1.05rem; color: #f1efe9; margin-bottom: 28px; text-shadow: 0 1px 8px rgba(0,0,0,.4); }
.hero .cta-row { display: flex; gap: 16px; flex-wrap: wrap; }

.about-home { padding: 90px 0; }
.about-home .inner { display: grid; grid-template-columns: 460px 1fr; gap: 60px; align-items: center; }
.about-home h2 { font-size: 2.2rem; }
.about-home h2 .gold { color: var(--gold); }
.about-home p { color: var(--muted); max-width: 520px; }

.help-band {
  position: relative;
  color: #fff;
  min-height: 300px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(60, 40, 0, .45), rgba(60, 40, 0, .2)), url("orig/05.jpg") center / cover no-repeat;
}
.help-band .wrap { position: relative; z-index: 2; }
.help-band h2 { color: #fff; font-size: 2.2rem; max-width: 420px; }
.help-band p { color: #f2eee6; margin-bottom: 22px; }

.services-home { padding: 90px 0; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.svc-card { text-align: center; }
.svc-card .svc-media {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border-top: 5px solid var(--gold);
  box-shadow: var(--shadow-card);
  padding-bottom: 26px;
  background: #111;
}
.svc-card .svc-media img { width: 100%; height: 190px; object-fit: cover; }
.svc-card .svc-pill {
  position: absolute;
  left: 16px; right: 16px; bottom: 12px;
  background: #fff;
  border-radius: 40px;
  padding: 12px 14px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink);
  box-shadow: 0 6px 16px rgba(0, 0, 0, .15);
}
.svc-card .svc-desc { color: var(--muted); font-size: .9rem; padding: 20px 8px 0; }

.contact-home { background: #f5f4f1; padding: 90px 0; }
.contact-home .inner { display: grid; grid-template-columns: 1fr 1.05fr; gap: 54px; align-items: start; }
.contact-home h2 { font-size: 2.1rem; margin-bottom: 18px; }
.contact-home .form-card { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 34px; box-shadow: var(--shadow); }

.pastwork { padding: 90px 0 100px; }
.pastwork .swiper { padding: 10px 4px 44px; }
.pastwork .swiper-slide { height: auto; }
.pastwork .swiper-slide img { width: 100%; height: 300px; object-fit: cover; border-radius: 6px; }
.pastwork .swiper-button-next, .pastwork .swiper-button-prev { color: var(--gold); }
.pastwork .swiper-pagination-bullet-active { background: var(--gold); }

@media (max-width: 960px) {
  .about-home .inner { grid-template-columns: 1fr; gap: 34px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-home .inner { grid-template-columns: 1fr; gap: 34px; }
  .hero h1 { font-size: 2.5rem; }
}
@media (max-width: 560px) {
  .service-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   page: about-us
   ========================================================================== */
.about-detail { padding: 90px 0; }
.about-detail .inner { display: grid; grid-template-columns: 460px 1fr; gap: 60px; align-items: center; }
.about-detail h2 { font-size: 2.2rem; }
.about-detail h2 .gold { color: var(--gold); }
.about-detail p { color: var(--muted); max-width: 520px; }
@media (max-width: 960px) {
  .about-detail .inner { grid-template-columns: 1fr; gap: 34px; }
}

/* ==========================================================================
   page: services
   ========================================================================== */
.services-page { padding: 90px 0; }
.services-page .service-grid { grid-template-columns: repeat(4, 1fr); gap: 26px; }
@media (max-width: 960px) { .services-page .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-page .service-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   page: gallery
   ========================================================================== */
.gallery-page { padding: 84px 0 100px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-grid a { display: block; overflow: hidden; border-radius: 6px; }
.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery-grid a:hover img { transform: scale(1.06); }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

/* ==========================================================================
   page: contact
   ========================================================================== */
.contact-page { padding: 90px 0; }
.contact-page .inner { display: grid; grid-template-columns: 1fr 1.05fr; gap: 54px; align-items: start; }
.contact-page h2 { font-size: 2.1rem; margin-bottom: 26px; }
.contact-page .form-card { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 34px; box-shadow: var(--shadow); }
@media (max-width: 960px) {
  .contact-page .inner { grid-template-columns: 1fr; gap: 34px; }
}
