
:root {
  --gold: #B8922E;
  --gold-light: #D4AD4A;
  --dark: #FAF8F4;
  --dark2: #F3F0E8;
  --dark3: #FFFFFF;
  --text: #1A2332;
  --text-muted: #5C6470;
  --accent-green: #2D6A4F;
  --accent-green-light: #3D8A63;
  --white: #1A2332;
  --border: rgba(26, 35, 50, 0.1);
  --shadow: rgba(26, 35, 50, 0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250, 248, 244, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184, 146, 46, 0.2);
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
  box-shadow: 0 1px 0 var(--shadow);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  max-width: min(52vw, 420px);
}

.nav-logo-img {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  box-shadow: 0 2px 8px var(--shadow);
}

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(0.72rem, 1.35vw, 0.95rem);
  font-weight: 700;
  color: var(--accent-green);
  letter-spacing: 0.03em;
  line-height: 1.25;
}

.nav-logo-text span {
  color: var(--gold);
  display: block;
  font-size: 0.92em;
}

.nav-links {
  display: flex; gap: 2rem; list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: var(--accent-green);
  color: #FFFFFF;
  padding: 10px 22px;
  font-weight: 600;
  font-size: 0.82rem;
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 2px;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--accent-green-light);
  color: #FFFFFF;
  transform: translateY(-1px);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0 6vw;
  padding-top: 70px;
}

.hero-bg {
  position: absolute; inset: 0;
  background: url('images/banner.jpg') center/cover no-repeat;
  filter: brightness(0.92) saturate(1.05);
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(250,248,244,0.92) 35%, rgba(250,248,244,0.55) 100%);
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 700px;
}

.hero-badge {
  display: inline-block;
  background: rgba(45,106,79,0.08);
  border: 1px solid rgba(45,106,79,0.25);
  color: var(--accent-green);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.07;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 2.5rem;
}

.hero-cta {
  display: flex; gap: 1rem; flex-wrap: wrap;
}

.btn-primary {
  background: var(--accent-green);
  color: #FFFFFF;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  letter-spacing: 0.04em;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}

.btn-primary:hover { background: var(--accent-green-light); transform: translateY(-1px); }

.btn-outline {
  border: 1px solid rgba(45,106,79,0.45);
  color: var(--accent-green);
  padding: 13px 32px;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  letter-spacing: 0.04em;
  border-radius: 2px;
  transition: border-color 0.2s, background 0.2s;
  display: inline-block;
}

.btn-outline:hover {
  border-color: var(--accent-green);
  background: rgba(45,106,79,0.06);
}

.hero-stats {
  position: absolute; right: 6vw; bottom: 10vh; z-index: 2;
  display: flex; gap: 3rem;
}

.stat-item { text-align: center; }

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* SECTIONS */
section { padding: 100px 6vw; }

.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
  font-weight: 600;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 580px;
}

/* ABOUT */
#about { background: var(--dark2); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  margin-top: 4rem;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 4px;
  filter: brightness(0.98) saturate(1);
  box-shadow: 0 8px 32px var(--shadow);
}

.about-image-accent {
  position: absolute;
  bottom: -24px; left: -24px;
  width: 180px; height: 180px;
  background: rgba(45,106,79,0.06);
  border: 1px solid rgba(45,106,79,0.2);
  border-radius: 4px;
  z-index: -1;
}

.about-cert {
  position: absolute;
  top: 24px; right: -28px;
  background: var(--dark3);
  border: 1px solid rgba(184,146,46,0.35);
  box-shadow: 0 8px 24px var(--shadow);
  padding: 16px 20px;
  border-radius: 4px;
  min-width: 150px;
  text-align: center;
}

.about-cert .cert-name {
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
}

.about-cert .cert-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

.about-info { }

.about-chips {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin: 2rem 0;
}

.chip {
  background: rgba(45,106,79,0.08);
  border: 1px solid rgba(45,106,79,0.2);
  color: var(--accent-green);
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: 2px;
  letter-spacing: 0.04em;
}

.about-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem;
  margin-top: 2rem;
}

.about-feature {
  display: flex; gap: 12px; align-items: flex-start;
}

.feature-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}

.feature-text { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }
.feature-text strong { color: var(--text); display: block; font-size: 0.92rem; margin-bottom: 2px; }

/* PRODUCTS */
#products { background: var(--dark); }

.products-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 4rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem;
}

.product-card {
  grid-column: span 2;
  background: var(--dark3);
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px var(--shadow);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(184,146,46,0.45);
  box-shadow: 0 8px 28px rgba(26,35,50,0.12);
}

.products-grid .product-card:nth-child(-n+2) { grid-column: span 3; }

.product-image-wrap {
  position: relative; overflow: hidden;
}

.product-image-wrap { height: 240px; }

.product-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
  filter: brightness(0.95) saturate(1);
}

.product-card:hover .product-image-wrap img {
  transform: scale(1.04);
}

.product-tag {
  position: absolute; top: 16px; left: 16px;
  background: rgba(201,168,76,0.85);
  color: var(--dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}

.product-body {
  padding: 2rem;
}

.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.product-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.product-specs {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 1.25rem;
}

.spec-tag {
  background: var(--dark2);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 2px;
}

.product-link {
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  display: flex; align-items: center; gap: 6px;
  transition: gap 0.2s;
}

.product-link:hover { gap: 10px; }

/* MISSION & VISION */
#mission { background: var(--dark2); }

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-top: 4rem;
}

.mv-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px var(--shadow);
  padding: 2.5rem;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s;
}

.mv-card:hover { border-color: rgba(201,168,76,0.3); }

.mv-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold);
}

.mv-icon {
  width: 48px; height: 48px;
  background: rgba(201,168,76,0.1);
  border-radius: 4px;
  margin-bottom: 1.5rem;
  display: flex; align-items: center; justify-content: center;
}

.mv-icon svg { width: 24px; height: 24px; fill: none; stroke: var(--gold); stroke-width: 1.5; }

.mv-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.mv-card-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* GALLERY */
#gallery { background: var(--dark); }

.gallery-header { margin-bottom: 3rem; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 1rem;
}

.gallery-item {
  position: relative; overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
}

.gallery-item:nth-child(1) {
  grid-column: span 2; grid-row: span 2;
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s, filter 0.4s;
  filter: brightness(0.92) saturate(0.95);
  min-height: 200px;
}

.gallery-item:nth-child(1) img { min-height: 420px; }

.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(0.9) saturate(1);
}

.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,35,50,0.75) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex; align-items: flex-end;
  padding: 1.5rem;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-caption {
  font-size: 0.85rem;
  color: #FFFFFF;
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* TESTIMONIALS */
#testimonials { background: var(--dark2); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px var(--shadow);
  border-radius: 4px;
  padding: 2rem;
  transition: border-color 0.25s, transform 0.25s;
}

.testimonial-card:hover {
  border-color: rgba(201,168,76,0.25);
  transform: translateY(-3px);
}

.stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex; align-items: center; gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}

.author-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

.author-company {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* FAQ */
#faq { background: var(--dark); }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-top: 4rem;
  align-items: start;
}

.faq-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 4px;
  filter: brightness(0.95) saturate(1);
}

.faq-list { display: flex; flex-direction: column; gap: 1px; }

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: left;
  padding: 1.25rem 0;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--gold); }

.faq-icon {
  width: 24px; height: 24px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 300;
  transition: background 0.2s, transform 0.25s;
}

.faq-item.open .faq-icon {
  background: rgba(201,168,76,0.12);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding-bottom: 1.25rem;
}

/* CONTACT */
#contact { background: var(--dark2); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  margin-top: 4rem;
}

.contact-info { }

.contact-item {
  display: flex; gap: 1rem; align-items: flex-start;
  margin-bottom: 1.75rem;
}

.contact-icon {
  width: 42px; height: 42px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 4px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}

.contact-icon svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.5; }

.contact-item-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
  display: block;
}

.contact-item-value {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
}

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark3);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  padding: 12px 16px;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(201,168,76,0.5);
}

.form-group select option { background: var(--dark3); }

.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit {
  background: var(--accent-green);
  color: #FFFFFF;
  border: none;
  padding: 14px 32px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
  align-self: flex-start;
}

.form-submit:hover { background: var(--accent-green-light); transform: translateY(-1px); }

/* FOOTER */
footer {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  padding: 4rem 6vw 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  margin-bottom: 1rem;
}

.footer-logo-img {
  flex-shrink: 0;
  border-radius: 6px;
  box-shadow: 0 2px 8px var(--shadow);
}

.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 700;
  color: var(--accent-green);
  line-height: 1.3;
  display: block;
}

.footer-brand-desc {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer-cert-badges { display: flex; gap: 10px; flex-wrap: wrap; }

.footer-cert {
  background: rgba(45,106,79,0.08);
  border: 1px solid rgba(45,106,79,0.2);
  color: var(--accent-green);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 2px;
}

.footer-col-title {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

.footer-copyright {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

.auto-container {
  width: 100%;
}

.copyright-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.copy-text p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.8;
  color: var(--text);
}

.copy-text a {
  color: var(--gold-light);
  text-decoration: none;
}

.copy-text a:hover {
  color: var(--gold);
}

.copy-logo {
  margin-left: auto;
}

.exportersway-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
}

.exportersway-badge {
  width: 120px;
  height: auto;
  object-fit: contain;
  border-radius: 3px;
  border: 1px solid var(--border);
  background: #FFFFFF;
}

.exportersway-label {
  color: var(--gold-light);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

/* SCROLL INDICATOR */
.scroll-line {
  position: absolute; left: 6vw; bottom: 10vh; z-index: 2;
  display: flex; align-items: center; gap: 1rem;
}

.scroll-line-bar {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold));
}

.scroll-line-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: vertical-rl;
}

/* Former inline styles */
.products-header-note {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 320px;
  text-align: right;
  line-height: 1.7;
}

.mission-intro {
  max-width: 600px;
}

.mv-values-lead {
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
  font-size: 0.82rem;
}

.faq-heading {
  margin-bottom: 2.5rem;
}

.contact-lead {
  margin-bottom: 2.5rem;
}

#form-success {
  display: none;
  color: var(--accent-green-light);
  font-size: 0.88rem;
  padding: 10px 0;
}

#form-success.is-visible {
  display: block;
}

@media (max-width: 900px) {
  .about-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .products-grid { grid-template-columns: 1fr; }
  .product-card { grid-column: span 1; }
  .product-image-wrap { height: 260px; }
  .mv-grid, .testimonials-grid, .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 1; grid-row: span 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .hero-stats { position: static; margin-top: 3rem; justify-content: flex-start; }
  .hero { flex-direction: column; padding-top: 120px; padding-bottom: 3rem; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-image { display: none; }
  nav .nav-links { display: none; }
  .nav-cta {
    padding: 8px 14px;
    font-size: 0.72rem;
  }
  .nav-logo { max-width: 55vw; }
  .nav-logo-img { width: 34px; height: 34px; }
  .form-row { grid-template-columns: 1fr; }
  .products-header-note { text-align: left; max-width: none; }
  .copyright-row { flex-direction: column; align-items: flex-start; }
  .copy-logo { margin-left: 0; }
}
