/* ==========================================================================
   WOLFLAG site styles — rebuilt to match wolflag.com original design
   Palette: brand blue #4c6aff, navy #272e47, footer #352a2a
   ========================================================================== */

:root {
  --blue: #4c6aff;
  --blue-dark: #364cd9;
  --navy: #272e47;
  --ink: #1d1d1f;
  --gray-text: #666d80;
  --gray-bg: #f8f8f8;
  --card-bg: #f7f7f7;
  --footer-bg: #352a2a;
  --footer-text: #e8e3e3;
  --warm-bg: #f1eeed;
  --serif: "Antic Slab", Georgia, "Times New Roman", serif;
  --display: "Catamaran", Arial, "Noto Sans SC", sans-serif;
  --container: 1250px;
  --radius: 8px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: Arial, "Noto Sans SC", "Segoe UI", sans-serif;
  font-size: 16px;
  color: var(--navy);
  background: #fff;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dark); }
ul { list-style: none; }

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

/* ==========================================================================
   Navbar (52px, white, blue active item, Contact Us button)
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
}

.navbar {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 52px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo { flex-shrink: 0; display: block; width: 36px; height: 36px; }
.nav-logo img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 31px;
  flex: 1;
  margin: 0 8px 0 32px;
}

.nav-menu a {
  font-size: 16px;
  color: #272e47;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}

.nav-menu a:hover { color: var(--blue); }
.nav-menu a.active { color: var(--blue); font-weight: 700; border-bottom-color: var(--blue); }
.nav-menu a.more { color: rgba(0, 0, 0, 0.25); }

.nav-cta {
  margin-left: 12px;
  background: var(--blue);
  color: #fff !important;
  font-weight: 600;
  border-radius: 6px;
  padding: 7px 16px !important;
  border-bottom: none !important;
}
.nav-cta:hover { background: var(--blue-dark); }

.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 1px solid #ddd;
  border-radius: 6px;
  width: 38px;
  height: 34px;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  color: var(--navy);
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 52px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 16px;
    border-bottom: 1px solid #eee;
    box-shadow: 0 12px 20px rgba(0,0,0,.06);
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { width: 100%; padding: 10px 0; border-bottom: none; }
  .nav-menu a.active { border-bottom: none; }
  .nav-cta { margin-left: 0; }
}

/* ==========================================================================
   Page hero (product pages)
   ========================================================================== */

.page-hero {
  padding: 34px 0 26px;
}

.page-hero h1 {
  font-size: 20px;
  font-weight: 700;
  color: #38513f;
  letter-spacing: .02em;
}

.page-hero .tagline { margin-top: 12px; color: #556; font-size: 14px; letter-spacing: .12em; text-transform: uppercase; }

.page-badge { font-size: 16px; font-weight: 500; color: #5b5f6b; letter-spacing: .04em; }

/* ==========================================================================
   Home hero
   ========================================================================== */

.home-hero {
  background: #faf7f5;
  padding: 76px 0 71px;
}

.home-hero .hero-row {
  display: grid;
  grid-template-columns: 397px 1fr;
  gap: 250px;
  align-items: start;
}

.home-hero h1 {
  font-family: var(--display);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  color: #573d3d;
  letter-spacing: .01em;
  max-width: 400px;
}

.home-hero .hero-text {
  color: #312925;
  font-size: 14px;
  line-height: 21px;
  max-width: 505px;
  align-self: end;
}

.home-hero .hero-image {
  margin-top: 64px;
}

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

@media (max-width: 900px) {
  .home-hero { padding-top: 40px; }
  .home-hero .hero-row { grid-template-columns: 1fr; gap: 18px; }
  .home-hero h1 { font-size: 28px; }
  .home-hero .hero-image { margin-top: 28px; }
  .home-hero .hero-image img { height: auto; }
}

/* ==========================================================================
   Section: centered intro (Flag, Banner and Pole Kits)
   ========================================================================== */

.section {
  padding: 56px 0;
}

.section-center { text-align: center; padding: 91px 0 0; }

.section-title {
  font-size: 54px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 28px;
}

.section-sub {
  color: #282f48;
  font-size: 18px;
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto;
}

.tag-pills {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 29px;
  margin: -11px 0 0;
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 328px;
  height: 60px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 400;
}

.tag-pill.fill  { background: #04101b; color: #fff; }
.tag-pill.line { background: #fff; color: var(--navy); border: 1.5px solid #cfd3da; }

.intro-photos {
  display: grid;
  grid-template-columns: 388fr 360fr 388fr;
  gap: 30px;
  align-items: start;
  margin-top: 40px;
}

.intro-photos > img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 4px;
}

.intro-photos .mid {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 480px;
}

.intro-photos .mid img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 4px;
}

@media (max-width: 900px) {
  .intro-photos { grid-template-columns: 1fr; }
  .intro-photos > img, .intro-photos .mid img { height: auto; }
  .intro-photos .mid { height: auto; gap: 40px; }
  .section-title { font-size: 34px; }
}

/* ==========================================================================
   Home: main products (letter-spaced title + alternating cards)
   ========================================================================== */

.main-products { padding: 130px 0 20px; }

.main-products .eyebrow {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 22px;
}

.main-products .intro {
  text-align: center;
  color: #6b7280;
  font-size: 18px;
  line-height: 24px;
  text-transform: uppercase;
  max-width: 640px;
  margin: 0 auto 57px;
}

.cat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin: 0 -15px;
}

.cat-card {
  display: flex;
  align-items: center;
  background: #f9fafb;
  border-radius: 10px;
  overflow: hidden;
}

.cat-card > .cat-img {
  flex: 0 0 384px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: block;
}

.cat-card .cat-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.cat-card:hover .cat-img img { transform: scale(1.03); }

.cat-card .cat-info {
  flex: 1;
  padding: 20px;
}

.cat-card .cat-title {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  text-transform: uppercase;
  letter-spacing: .02em;
  margin-bottom: 26px;
}

.cat-card .cat-desc {
  color: #6b7280;
  font-size: 14px;
  line-height: 22px;
  text-transform: uppercase;
}

@media (max-width: 1000px) {
  .cat-grid { grid-template-columns: 1fr; margin: 0 -12px; }
  .cat-card > .cat-img { flex: 0 0 auto; }
}
@media (max-width: 560px) {
  .cat-card, .cat-card.flip { flex-direction: column; }
  .cat-card > .cat-img { width: 100%; }
}

/* ==========================================================================
   Product cards: 3-col grid (national flags / banners)
   ========================================================================== */

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

.product-card {
  background: var(--card-bg);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-card .p-img { display: block; aspect-ratio: 1 / 1; }
.product-card .p-img img { width: 100%; height: 100%; object-fit: cover; }

.product-card .p-body {
  padding: 18px 22px 22px;
  text-align: center;
  flex: 1;
}

.product-card .p-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: #191a19;
  margin-bottom: 12px;
}

.product-card .p-desc { color: #444c58; font-size: 14px; margin-bottom: 12px; }
.product-card .p-size { color: #384252; font-size: 14px; line-height: 1.5; margin-bottom: 4px; }
.product-card .p-material { color: #6b7280; font-size: 13px; margin-bottom: 14px; }

.p-chip {
  display: inline-block;
  border: 1px solid #191a19;
  color: #3c4454;
  font-size: 13px;
  padding: 7px 18px;
}

@media (max-width: 900px) {
  .product-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .product-grid-3 { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Product cards: 2-col horizontal (feather flags)
   ========================================================================== */

.product-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.f-card {
  display: flex;
  gap: 26px;
  background: #fff;
  border: 1px solid #d9e2f5;
  border-radius: 10px;
  overflow: hidden;
}

.f-card .f-img { flex: 0 0 46%; }
.f-card .f-img img { width: 100%; height: 100%; object-fit: cover; }

.f-card .f-body { padding: 20px 22px 18px 0; flex: 1; }

.f-name-lite { font-size: 15px; color: #6b7280; margin-bottom: 8px; }

.f-card .f-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.f-card .f-desc { color: #6b7280; font-size: 12px; line-height: 1.6; margin-bottom: 14px; }

.f-cta { font-size: 12px; color: var(--blue); }

@media (max-width: 900px) {
  .product-grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .f-card { flex-direction: column; }
  .f-card .f-img { flex: none; }
  .f-card .f-body { padding: 0 18px 18px; }
}

/* ==========================================================================
   Pole & Display page
   ========================================================================== */

.pole-hero h1 {
  font-size: 46px;
  font-weight: 700;
  color: #1c1c1c;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
}

.pole-hero { padding: 80px 0 0; }

.pole-featured { padding: 0; }

.pole-subtext {
  color: #545a6d;
  font-size: 16px;
  max-width: 620px;
  text-align: center;
  margin: 15px auto 0;
}

.featured-2 {
  display: grid;
  grid-template-columns: 554px 554px;
  gap: 45px;
  margin: 56px 0 0 24px;
}

.feat-card {
  background: #f5f7ff;
  border-radius: 12px;
  overflow: hidden;
  padding: 55px 30px 0;
  display: flex;
  flex-direction: column;
  height: 614px;
}

.feat-card .feat-text { padding: 0; }

.feat-card h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}

.feat-card .feat-desc {
  color: #545a6d;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 8px;
}

.feat-card .feat-tag {
  color: #545a6d;
  font-size: 14px;
  font-weight: 700;
}

.feat-card img {
  width: calc(100% + 60px);
  max-width: none;
  height: 368px;
  flex-shrink: 0;
  object-fit: cover;
  margin: auto -30px 0;
  display: block;
}

.ingredients { text-align: center; padding: 160px 0 69px; }

.ingredients h3 {
  font-family: "Bona Nova", Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 17px;
}

.ingredients .ing-sub { color: var(--navy); font-size: 16px; line-height: 1.2; margin-bottom: 51px; }

.ing-grid {
  display: grid;
  grid-template-columns: repeat(3, 320px);
  gap: 75px 94px;
  justify-content: center;
}

.ing-card {
  text-align: center;
}

.ing-card img {
  margin: 0 auto;
  width: 320px;
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
}

.ing-card h4 {
  font-family: "Rufina", Georgia, serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.5;
  margin: 29px 0 11px;
}

.ing-card p {
  color: var(--navy);
  font-size: 16px;
  line-height: 1.5;
  max-width: 328px;
  margin: 0 auto;
}

@media (max-width: 1180px) {
  .featured-2 { grid-template-columns: 1fr; margin-left: 0; }
  .feat-card { height: auto; }
  .feat-card img { height: auto; aspect-ratio: 3 / 2; }
  .ing-grid { grid-template-columns: repeat(2, 320px); gap: 60px 60px; }
}
@media (max-width: 900px) {
  .ingredients { padding-top: 90px; padding-bottom: 120px; }
  .pole-hero h1 { font-size: 34px; }
}
@media (max-width: 740px) {
  .ing-grid { grid-template-columns: 1fr; }
  .ing-card img { width: 100%; height: auto; }
}

/* ==========================================================================
   About page
   ========================================================================== */

.about-hero {
  margin-top: 12px;
}

.about-hero img {
  width: 100%;
  height: 215px;
  object-fit: cover;
}

.about-grey {
  background: #f8f8f8;
  margin-top: 12px;
  padding: 80px 0;
}

.about-marquee {
  overflow: hidden;
  width: 100%;
}

.about-marquee .track {
  display: flex;
  gap: 80px;
  width: max-content;
  animation: marquee 38s linear infinite;
}

.about-marquee .track span {
  font-family: "Acme", Arial, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 60px;
  color: #f15d49;
  white-space: nowrap;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.about-body {
  display: grid;
  grid-template-columns: 580px 480px;
  gap: 130px;
  justify-content: center;
  align-items: start;
  margin-top: 30px;
}

.about-body .about-copy p {
  color: #272e47;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
}

.about-body .about-img img {
  width: 480px;
  height: 400px;
  object-fit: cover;
  margin-top: 161px;
}

@media (max-width: 1180px) {
  .about-body { grid-template-columns: 1fr 420px; gap: 60px; }
  .about-body .about-img img { width: 420px; height: 350px; }
}
@media (max-width: 980px) {
  .about-body { grid-template-columns: 1fr; }
  .about-body .about-img img { width: 100%; height: auto; }
}

/* Clients */
.clients {
  background: #fff;
  padding: 92px 0 66px;
}

.clients .container {
  display: grid;
  grid-template-columns: 373px 1fr;
  gap: 88px;
  align-items: start;
}

.clients .cl-label {
  letter-spacing: .1em;
  font-size: 16px;
  font-weight: 700;
  color: #6b7280;
  margin-bottom: 12px;
}

.clients h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1f2937;
  line-height: 45px;
  max-width: 341px;
}

.clients .cl-sub { color: #6b7280; font-size: 16px; margin-top: 8px; }

.clients .cl-logos {
  display: grid;
  grid-template-columns: repeat(4, 128px);
  gap: 16px 31px;
  align-items: center;
}

.clients .cl-logos img {
  width: 128px;
  height: 86px;
  object-fit: contain;
}

@media (max-width: 1000px) {
  .clients .container { grid-template-columns: 1fr; gap: 40px; }
  .clients .cl-logos { grid-template-columns: repeat(3, 128px); }
}
@media (max-width: 560px) {
  .clients .cl-logos { grid-template-columns: repeat(2, 128px); }
}

/* FAQ */
.faq-section {
  background: #dfe3e2;
  padding: 64px 0 60px;
}

.faq-section h2 {
  font-size: 44px;
  font-weight: 700;
  color: #272e47;
  margin-bottom: 36px;
}

.faq-item { border-bottom: 1px solid #c8cdcc; }

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  font: inherit;
  font-family: "Acme", Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  color: #272e47;
  cursor: pointer;
}

.faq-q .chev { transition: transform .25s; flex-shrink: 0; color: #555; }
.faq-q .chev { display: inline-block; transform: rotate(180deg); }
.faq-item.open .chev { transform: rotate(0deg); }

.faq-a {
  display: none;
  padding: 0 0 20px;
  color: #545a6e;
  font-size: 16px;
  line-height: 27px;
}

.faq-item.open .faq-a { display: block; }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 100px 0 0;
}

.site-footer-minimal {
  background: #212327;
  color: #7d8085;
  height: 384px;
  padding: 0;
  margin-top: 0;
  display: flex;
  justify-content: center;
}

.site-footer-minimal .container { width: 100%; }

.site-footer-minimal .footer-bottom {
  padding: 246px 0 0;
  font-size: 14px;
  color: #7d8085;
  letter-spacing: 0;
  border-bottom: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding-bottom: 34px;
}

.footer-col { padding: 0 6px; }
.footer-col:first-child { padding-left: 0; }

.footer-col .f-brand { display: flex; align-items: center; margin-bottom: 28px; }
.footer-col .f-brand img { width: 115px; }

.footer-col h4 {
  color: #d6dfff;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.4;
}

.footer-col:nth-child(3) h4 { font-size: 15px; }

.footer-col p {
  font-size: 14px;
  color: #8395a0;
  line-height: 29px;
}

.footer-col .f-phone-main {
  color: #d6dfff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 7px;
}

.footer-social { display: flex; gap: 16px; }
.footer-social img { width: 20px; height: 20px; opacity: .85; transition: opacity .2s; }
.footer-social a:hover img { opacity: 1; }

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.14);
  margin-top: 44px;
  padding: 27px 0 40px;
  font-size: 14px;
  color: #7d8085;
  letter-spacing: .02em;
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 26px 0; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}
