:root {
  --ink: #17231d;
  --forest: #173f31;
  --green: #2e7056;
  --lime: #dce9a8;
  --cream: #f4f1e9;
  --paper: #fffdf8;
  --line: #dcded6;
  --muted: #68736d;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--iatc-page-bg, var(--paper));
  color: var(--ink);
  font-family:
    Inter,
    Segoe UI,
    Arial,
    sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
.site-header {
  height: 82px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.96);
  position: sticky;
  top: 0;
  z-index: 20;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--forest);
  color: #fff;
  font: 26px Georgia;
}
.brand span:last-child {
  display: flex;
  flex-direction: column;
}
.brand small {
  color: var(--muted);
  margin-top: 3px;
}
.site-header nav {
  display: flex;
  gap: 26px;
  font-size: 14px;
  font-weight: 650;
}
.site-header nav a:hover {
  color: var(--green);
}
.menu-button {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  padding: 9px 12px;
}
.hero {
  min-height: 680px;
  padding: 70px 7vw;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
  background: var(--cream);
}
.eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--green);
}
h1,
h2 {
  font-family: Georgia, serif;
  font-weight: 500;
}
.hero h1 {
  font-size: clamp(48px, 6.5vw, 88px);
  line-height: 0.98;
  margin: 14px 0 25px;
  letter-spacing: -0.035em;
}
.hero h1 em {
  font-weight: 400;
  color: var(--green);
}
.hero p {
  font-size: 18px;
  line-height: 1.65;
  max-width: 650px;
  color: #4b5a52;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin: 30px 0;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 14px 20px;
  font-weight: 750;
  cursor: pointer;
}
.button.primary {
  background: var(--forest);
  color: #fff;
}
.button.ghost {
  border: 1px solid #9ba69e;
}
.button.light {
  background: var(--lime);
  color: var(--forest);
}
.hero ul {
  display: flex;
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 45px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.hero ul li:before {
  content: "✓";
  color: var(--green);
  margin-right: 7px;
}
.hero-visual {
  height: 520px;
  border-radius: 4px 80px 4px 4px;
  overflow: hidden;
  background: var(--forest);
  position: relative;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.84;
}
.hero-visual span {
  position: absolute;
  left: 25px;
  bottom: 25px;
  color: #fff;
  background: #173f31e6;
  padding: 17px 20px;
  font: 24px/1.15 Georgia;
  border-radius: 4px;
}
.trust {
  display: flex;
  justify-content: center;
  gap: 4vw;
  padding: 20px;
  background: var(--forest);
  color: #d8e2dc;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.section {
  padding: 85px 6vw;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 35px;
}
.section-head h2,
.process h2,
.cta h2 {
  font-size: clamp(34px, 4vw, 55px);
  margin: 8px 0;
}
.section-head > a {
  color: var(--green);
  font-weight: 700;
}
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.card {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.2s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px #173f3115;
}
.card-image {
  height: 220px;
  background: #e8e7df;
  display: grid;
  place-items: center;
  color: var(--muted);
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}
.card-copy { position: relative; background: #fff; }
.card > div:last-child {
  padding: 18px;
}
.card h3 {
  font: 22px Georgia;
  margin: 0 0 10px;
}
.card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.card span {
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
}
.process {
  background: var(--forest);
  color: #fff;
  padding: 90px 7vw;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
}
.process ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
.process li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid #ffffff2c;
}
.process li b {
  color: var(--lime);
  font: 22px Georgia;
}
.process li span {
  display: flex;
  flex-direction: column;
  color: #b7c6bf;
}
.process li strong {
  font-size: 18px;
  color: #fff;
  margin-bottom: 7px;
}
.cta {
  margin: 80px 6vw;
  padding: 55px;
  background: #cddc91;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 16px;
}
.cta p {
  max-width: 650px;
}
.page-intro {
  padding: 80px 7vw 45px;
  background: var(--cream);
}
.page-intro h1 {
  font-size: clamp(42px, 6vw, 72px);
  max-width: 900px;
  margin: 12px 0;
}
.page-intro p {
  color: var(--muted);
  font-size: 17px;
  max-width: 760px;
  line-height: 1.6;
}
.page-intro-results { padding-top: 28px; padding-bottom: 24px; }
.page-intro-results h1 { font-size: clamp(30px, 4vw, 48px); margin-bottom: 8px; }
.page-intro-results .search { margin-top: 14px; }
.catalog-results { padding-top: 28px; }
.search {
  display: flex;
  max-width: 620px;
  margin-top: 30px;
}
.search input {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 8px 0 0 8px;
  padding: 14px;
}
.search button {
  border: 0;
  background: var(--forest);
  color: #fff;
  padding: 0 22px;
  border-radius: 0 8px 8px 0;
}
.result-count {
  color: var(--muted);
}
.product {
  padding: 70px 7vw;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
}
.gallery-main {
  height: 560px;
  background: transparent;
  display: grid;
  place-items: center;
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
  border: 2px solid #6f4e37;
  border-radius: 12px;
}
.thumbs {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}
.thumbs button {
  width: 75px;
  height: 65px;
  border: 0;
  background: transparent;
  padding: 0;
}
.thumbs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
  border: 2px solid #6f4e37;
  border-radius: 12px;
}
.product-copy h1 {
  font-size: 55px;
  margin: 12px 0 20px;
}
.product-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}
.product-copy dl {
  margin: 30px 0;
}
.product-copy dl div {
  padding: 15px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 120px 1fr;
}
.product-copy dt {
  font-weight: 700;
}
.product-copy dd {
  margin: 0;
  color: var(--muted);
}
.form-page {
  padding: 70px 7vw;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  background: var(--cream);
  min-height: 720px;
}
.form-copy h1 {
  font-size: 55px;
  margin: 12px 0;
}
.form-copy p {
  color: var(--muted);
  line-height: 1.6;
}
.contact-card {
  margin-top: 35px;
  padding: 22px;
  background: var(--forest);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-radius: 10px;
}
.form-card {
  background: #fff;
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 20px 50px #173f3110;
}
.form-card h2 {
  font-size: 30px;
  margin-top: 0;
}
.form-card label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
}
.form-card input,
.form-card textarea,
.form-card select {
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 12px;
  font: inherit;
}
.registration-form { max-width: 980px; }
.registration-grid { display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:0 16px; }
.registration-grid .span-2 { grid-column:span 2; }
.registration-grid .span-3 { grid-column:1/-1; }
.registration-status { padding:10px 12px;background:#f5efe3;border:1px solid var(--line);border-radius:7px;margin-bottom:16px; }
.registration-actions { display:flex;flex-wrap:wrap;gap:10px;margin-top:10px; }
.registration-actions .button { text-decoration:none; }
.client-fields[hidden] { display:none; }
.registration-table[hidden] { display:none; }
.account-type { max-width:320px; }
.registration-table { margin:18px 0;padding:20px;border:1px solid var(--line);border-radius:10px; }
.registration-table legend { padding:0 10px;font-size:20px;font-weight:800;color:var(--forest); }
.registration-passwords { display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-top:18px;padding-top:18px;border-top:1px solid var(--line); }
@media (max-width: 900px) {
  .registration-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .registration-grid .span-3 { grid-column:1/-1; }
}
@media (max-width: 600px) {
  .registration-grid { grid-template-columns:1fr; }
  .registration-grid .span-2,
  .registration-grid .span-3 { grid-column:auto; }
  .registration-passwords { grid-template-columns:1fr; }
}
.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-card label.consent {
  flex-direction: row;
  align-items: start;
  font-weight: 400;
}
.form-card .consent input {
  margin: 2px 5px 0 0;
}
.honeypot {
  position: absolute !important;
  left: -9999px;
}
.error {
  color: #a22;
}
.success {
  padding: 30px;
  background: #edf4e6;
  border-radius: 10px;
}
.contact-grid {
  padding: 50px 7vw 100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.contact-grid div {
  border-top: 3px solid var(--green);
  padding: 24px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-grid span {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}
footer {
  padding: 55px 7vw 25px;
  background: #102b22;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
footer p,
footer small {
  color: #9db0a8;
}
footer div:nth-child(2) {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}
footer small {
  grid-column: 1/-1;
  border-top: 1px solid #ffffff20;
  padding-top: 20px;
}
@media (max-width: 1000px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero,
  .product,
  .form-page,
  .process {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    height: 420px;
  }
  .site-header nav {
    display: none;
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px;
    flex-direction: column;
  }
  .site-header nav.open {
    display: flex;
  }
  .menu-button {
    display: block;
  }
  .product-copy h1,
  .form-copy h1 {
    font-size: 42px;
  }
}
@media (max-width: 600px) {
  .hero {
    padding: 50px 20px;
  }
  .hero ul,
  .trust {
    flex-wrap: wrap;
  }
  .grid {
    grid-template-columns: 1fr;
  }
  .section,
  .page-intro,
  .product,
  .form-page {
    padding: 50px 20px;
  }
  .two {
    grid-template-columns: 1fr;
  }
  .cta {
    margin: 45px 20px;
    padding: 30px;
    align-items: start;
    flex-direction: column;
    gap: 20px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    padding: 35px 20px;
  }
  .gallery-main {
    height: 380px;
  }
  footer {
    grid-template-columns: 1fr;
  }
  footer div:nth-child(2) {
    justify-content: flex-start;
    flex-direction: column;
  }
}
:root {
  --ink: #29191c;
  --forest: #4b0713;
  --green: #a8003d;
  --lime: #e7bec8;
  --cream: #f7f0f1;
  --paper: #fffdfd;
  --line: #e5d7da;
  --muted: #75666a;
}
.brand-mark {
  width: 118px;
  height: 48px;
  border-radius: 0;
  background: transparent url("../imagini/logo1.jpg") center/contain no-repeat;
  color: transparent;
}
.hero-visual {
  background: #4b0713 url("../imagini/centru.jpg") center/cover no-repeat;
}
.hero-visual > img {
  display: none;
}
.hero-visual span {
  background: #4b0713e8;
}
.trust,
.process {
  background: #4b0713;
}
.cta {
  background: #e7bec8;
}
.button.primary {
  background: #4b0713;
}
.button.light {
  background: #fff7f8;
  color: #4b0713;
}
footer {
  background: #2b050c;
}
.card:hover {
  box-shadow: 0 12px 35px #4b071319;
}
.contact-card {
  background: #4b0713;
}
.site-header {
  height: auto;
  padding: 0;
  display: block;
  border-top: 3px solid #800020;
  border-bottom: 3px solid #800020;
}
.legacy-brand-row {
  min-height: 112px;
  display: flex;
  align-items: center;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.legacy-logo {
  width: 180px;
  min-width: 180px;
  height: 100px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  z-index: 2;
}
.header-clouds {position:absolute;inset:0;overflow:hidden;pointer-events:none;z-index:0}
.header-clouds i {position:absolute;right:-150px;width:94px;height:28px;border-radius:60px;background:linear-gradient(#fff,#d5d7da);box-shadow:0 4px 9px #7775;animation:iatc-cloud-counter 22s linear infinite}
.header-clouds i:before,.header-clouds i:after {content:"";position:absolute;bottom:8px;border-radius:50%;background:inherit}
.header-clouds i:before {width:41px;height:41px;left:16px}
.header-clouds i:after {width:30px;height:30px;left:52px}
.header-clouds i:nth-child(1){top:76px;animation-delay:-2s}
.header-clouds i:nth-child(2){top:25px;transform:scale(.82);animation-delay:-7s}
.header-clouds i:nth-child(3){top:91px;transform:scale(.68);animation-delay:-12s}
.header-clouds i:nth-child(4){top:47px;transform:scale(1.08);animation-delay:-16s}
.header-clouds i:nth-child(5){top:14px;transform:scale(.58);animation-delay:-20s}
@keyframes iatc-cloud-counter {to{right:calc(100% + 150px)}}
.legacy-logo img {
  max-width: 100%;
  max-height: 88px;
  object-fit: contain;
}
.marquee-window {
  flex: 1;
  overflow: hidden;
  min-width: 0;
  position: relative;
  z-index: 1;
}
.marquee-track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: iatc-scroll 20s linear infinite;
}
.marquee-track span {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: clamp(36px, 4.4vw, 64px);
  color: #49030c;
  padding-right: 300px;
}
@keyframes iatc-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.site-header nav {
  min-height: 46px;
  padding: 0 6vw;
  align-items: center;
  justify-content: center;
  background: linear-gradient(#a8003d, #49030c);
  color: #fff;
}
.site-header nav a {
  padding: 14px 18px;
}
.site-header nav a:hover {
  color: #f3ccd5;
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track,.header-clouds i { animation: none; }
}
@media (max-width: 1000px) {
  .legacy-logo { width: 135px; min-width: 135px; height: 82px; }
  .legacy-brand-row { min-height: 90px; }
  .marquee-track span { padding-right: 120px; font-size: 38px; }
  .menu-button { margin-right: 14px; }
  .site-header nav { top: 90px; padding: 18px; }
}
