* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  margin: 0;
  background-color: rgb(234, 229, 223);
  line-height: normal;
}

/* FONTS */
.blaka-regular {
  font-family: "Blaka", serif;
  font-weight: 400;
  font-style: normal;
}
.zalando-sans-semiexpanded-zolando {
  font-family: "Zalando Sans SemiExpanded", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.inknut-antiqua-light {
  font-family: "Inknut Antiqua", serif;
  font-weight: 300;
  font-style: normal;
}
.inknut-antiqua-regular {
  font-family: "Inknut Antiqua", serif;
  font-weight: 400;
  font-style: normal;
}
.inknut-antiqua-medium {
  font-family: "Inknut Antiqua", serif;
  font-weight: 500;
  font-style: normal;
}
.inknut-antiqua-semibold {
  font-family: "Inknut Antiqua", serif;
  font-weight: 600;
  font-style: normal;
}
.inknut-antiqua-bold {
  font-family: "Inknut Antiqua", serif;
  font-weight: 700;
  font-style: normal;
}
.plaster-regular {
  font-family: "Plaster", system-ui;
  font-weight: 400;
  font-style: normal;
}
.dm-sans-dm {
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}
:root {
  --primary-color: #4f0909;
  --topbar-height: 55px;
  --menu-width: 450px; /* ← change this to match their width */
  --panel-bg: #111;
  --panel-foreground: #e9e9e9;
  --overlay-bg: rgba(0, 0, 0, 0.45);
  --accent: #fff;
  --radius: 4px;
  --text-color: #5c0808;
  --small-color: rgba(255, 255, 255, 0.65);
  --accent-2: rgb(195, 178, 178);
  --primary-bgcolor: rgb(234, 229, 223);
  --plaster-font: "Plaster", system-ui;
  --zalando-font: "Zalando Sans SemiExpanded", sans-serif;
  --inknut-font: "Inknut Antiqua", serif;
  --dm-font: "DM Sans", sans-serif;
  --desc-color: #13020296;
  /* 1410 - 1024 */
  --fontsize-14: clamp(0.875rem, 0.875rem + 0vw, 0.875rem); /* - 14 */
  --fontsize-16: clamp(0.875rem, 0.5434rem + 0.5181vw, 1rem); /* - 14 */
  --fontsize-18: clamp(1rem, 0.6684rem + 0.5181vw, 1.125rem); /* - 16 */
  --fontsize-20: clamp(1.125rem, 0.7934rem + 0.5181vw, 1.25rem); /* - 18 */
  --fontsize-80: clamp(4.75rem, 4.0868rem + 1.0363vw, 5rem); /* - 76 */
  --fontsize-30: clamp(1.75rem, 1.4184rem + 0.5181vw, 1.875rem); /* 28 */
  --fontsize-50: clamp(3rem, 2.6684rem + 0.5181vw, 3.125rem); /* 50-48 */
}

nav {
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
nav img {
  width: 30px;
  height: 30px;
}
nav a {
  text-decoration: none;
  font-size: var(--fontsize-30);
  font-family: var(--plaster-font);
  color: var(--text-color);
}
.breadcrumb {
  text-align: end;
}
.link-button {
  text-decoration: none;
  color: var(--text-color);
  background-color: var(--accent);
  padding: 0.4rem 1.3rem;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-size: var(--fontsize-16);
  text-transform: uppercase;
  width: fit-content;
  transition: all 0.2s;
  font-family: var(--zalando-font);
  font-weight: 400;

  transition: all 0.2s;
}

.hover-link {
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: var(--text-color);
  background-color: var(--accent);
  transition: all 0.1s ease-in;
  font-family: var(--zalando-font);
  font-optical-sizing: auto;
  font-weight: 400;
  display: inline-block;
  font-size: var(--fontsize-16);
  text-transform: uppercase;
  width: fit-content;
}

.hover-link span {
  padding: 0.8rem;
  display: block;
  transition: transform 0.4s ease;
}

.hover-link span:nth-child(1) {
  transform: translateY(0%); /* default position */
}

.hover-link span:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(100%); /* hidden below */
}

.hover-link:hover span:nth-child(1) {
  transform: translateY(-100%); /* slide up and disappear */
}

.hover-link:hover span:nth-child(2) {
  transform: translateY(0%); /* new text slides up */
}
.heading {
  padding: 20px;
  margin: 0 auto;
}
.heading h1 {
  font-size: var(--fontsize-50);
  font-family: var(--plaster-font);
  font-weight: 900;
  color: var(--text-color);
  margin-left: 30px;
}
.heading img {
  width: 100%;
  aspect-ratio: 16/10;
}
.overview {
  padding: 30px;
}
.overview-title h2 {
  font-size: var(--fontsize-30);
  font-family: var(--dm-font);
  font-weight: 800;
  color: var(--text-color);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.overview-content {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}
.overview-desc {
  width: 50%;
  text-align: justify;
  font-size: var(--fontsize-18);
  font-family: var(--zalando-font);
  color: var(--desc-color);
}
.metadata {
  width: 40%;
  border-top: 1px solid rgba(0, 0, 0, 0.101);
}
.meta-details {
  display: flex;
  justify-content: space-between;
  font-size: var(--fontsize-14);
  font-family: var(--zalando-font);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.101);
}
.meta-details h3 {
  color: var(--desc-color);
}
.meta-details p {
  text-align: end;
  color: var(--text-color);
}

.image-1 {
  margin-top: 50px;
  padding: 30px;
  text-align: center;
}
.image-1 p {
  font-size: var(--fontsize-16);
  font-family: var(--zalando-font);
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 9px;
  text-align: start;
  margin-left: 9%;
}
.image-1 img {
  width: 80vw;
  aspect-ratio: 10/7;
}

.design {
  margin-top: 70px;
  padding: 70px;
  max-width: 60%;
}
.design h2 {
  font-size: var(--fontsize-30);
  font-family: var(--dm-font);
  color: var(--text-color);
  text-transform: uppercase;
}
.design p {
  margin-top: 10px;
  font-size: var(--fontsize-20);
  color: var(--desc-color);
  font-family: var(--zalando-font);
  line-height: 1.2;
  text-align: justify;
}

.image-2 {
  text-align: end;
  padding: 30px;
  margin-top: 30px;
  padding: 30px;
}
.image-2 p {
  font-size: var(--fontsize-16);
  font-family: var(--zalando-font);
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 9px;
  text-align: end;
}
.image-2 img {
  width: 70vw;
  aspect-ratio: 10/8;
}

.image-grid {
  display: flex;
  padding: 20px;
  gap: 3rem;
  justify-content: center;
  margin-top: 50px;
}
.image-grid p {
  font-size: var(--fontsize-16);
  font-family: var(--zalando-font);
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 9px;
  text-align: end;
}
.image-grid img {
  width: 45vw;
  aspect-ratio: 10/10;
}

/*PROCESS STYLES */
.process {
  margin-top: 140px;
  padding: 0 30px;
}
.process h1 {
  font-family: var(--dm-font);
  font-weight: 900;
  font-size: var(--fontsize-30);
  color: var(--text-color);
  text-transform: uppercase;
  line-height: 1.2;
}
.process .line {
  font-size: var(--fontsize-16);
  font-family: var(--zalando-font);
  color: #5c080893;
  margin-top: 10px;
}
.process-content {
  display: flex;
  background: none;
  align-content: center;
  justify-content: center;
  gap: 3rem;
  margin-top: 20px;
}
.process-content img {
  width: 60vw;
  aspect-ratio: 10/6;
} /* ---------- ACCORDION ---------- */
.accordion {
  border-top: 1px solid #d6ccc2;
  border-bottom: 1px solid #d6ccc2;
}

.accordion-item {
  border-bottom: 1px solid #d6ccc2;
  padding: 1.5rem 0;
}
.accordion-toggle {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--zalando-font);
  font-size: var(--fontsize-20);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: color 0.3s ease;
  color: var(--text-color);
}

.accordion-toggle:hover {
  color: var(--accent-2);
}

.accordion-toggle svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent-2);
  transition: transform 0.3s ease;
}

.accordion-toggle.active svg {
  transform: rotate(180deg);
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.4s ease,
    opacity 0.4s ease;
  color: var(--desc-color);
  font-size: var(--fontsize-16);
  font-family: var(--zalando-font);
  font-weight: 400;
  margin-top: 0.5rem;
}

.accordion-content.open {
  max-height: 500px;
  opacity: 1;
}

.accordion-content p {
  margin: 0;
}
/* FOOTER */
.footer {
  width: fit-content;
  margin-top: 100px;
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 5.5rem;
  background-color: var(--text-color);
  justify-content: center;
  box-shadow: 5px 5px 45px rgb(125, 79, 79);
}
.footer-subinfo {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer .address span {
  font-weight: bold;
  margin-bottom: 1rem;
}
.footer-subinfo p {
  font-family: var(--zalando-font);
  font-optical-sizing: auto;
  font-weight: 400;
  line-height: 1.2rem;
  color: var(--accent-2);
  font-size: var(--fontsize-16);
}
.footer .call-info p {
  font-size: var(--fontsize-14);
}
.footer .footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  border-left: 2px solid rgb(255, 255, 255);
  padding: 0px 30px;
}
.footer .footer-links a {
  text-decoration: none;
  color: var(--accent);
  font-family: var(--zalando-font);
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: var(--fontsize-18);
  line-height: 1.2rem;

  transition: all 0.2s;
}
.footer .footer-links a:hover {
  border-bottom: 2px solid rgb(255, 255, 255);
}
#copyright {
  font-size: 1.2vw;
  font-family: "Almendra", serif;
  font-weight: 500;
  font-style: normal;
  color: var(--text-color);
  margin-top: 40px;
  text-align: center;
  margin-bottom: 20px;
}
