* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  margin: 0 auto;
  overscroll-behavior: none;
  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 */
}

/* top bar */
.topbar {
  position: relative;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  height: var(--topbar-height);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: var(--primary-color);
  color: var(--accent);
  z-index: 1000;
  width: 30%;
  opacity: 1;
  box-shadow: 5px 5px 45px rgb(125, 79, 79);
}

/* logo in center */
.logo {
  position: relative;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding-left: 0.9rem;
}

/* menu button top-right (visual only) */
.menu-button {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: none;
  color: var(--accent);
  outline: none;
  border: none;
}
.menu-button:focus {
  outline: none;
  box-shadow: none;
}

/* overlay (darken background) */
.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--overlay-bg);
  z-index: 900;
  backdrop-filter: blur(2px);
}
.overlay.show {
  display: block;
}

/* the floating panel */
.menu-panel {
  display: none;
  position: fixed;
  top: calc(var(--topbar-height) + 20px); /* small gap below topbar */
  left: 50%;
  transform: translateX(-50%);
  width: 30%;
  background: var(--primary-color);
  color: var(--panel-foreground);
  z-index: 1001;
  border-radius: 2px;
  box-shadow: 10px 10px 45px rgb(67, 26, 26);
}
.menu-panel.show {
  display: block;
}

/* small top band text */
.menu-panel .band {
  background: rgba(255, 255, 255, 0.06);
  color: var(--accent);
  font-size: 0.7vw;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 8px 1rem;
  margin-bottom: 10px; /* make band run full width */
  overflow: hidden;
  white-space: nowrap;
  font-family: var(--zalando-font);
  font-optical-sizing: auto;
  font-weight: 400;
}

/* content layout: 2 columns */
.menu-grid {
  display: flex;
  justify-content: space-between;
  padding: 0.9rem 0.9rem;
}
.menu-nav h4 {
  margin-bottom: 14px;
  font-size: var(--fontsize-14);
  font-family: var(--zalando-font);
  font-optical-sizing: auto;
  font-weight: 400;
  color: var(--accent);
}
/* left nav list */
.menu-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: var(--zalando-font);
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: var(--fontsize-16);
}
.menu-nav li {
  margin-bottom: 7px;
  font-size: var(--fontsize-18);
  color: var(--accent-2);
}
.menu-nav li a {
  color: inherit;
  text-decoration: none;
}
.menu-nav li a:hover {
  border-bottom: 2px solid rgb(255, 255, 255);
}
.menu-nav li.small {
  font-size: var(--fontsize-14);
  color: var(--small-color);
  margin-top: 20px;
}

/* right column */
.menu-social {
  text-align: left;
  font-size: var(--fontsize-16);
}
.menu-social h4 {
  margin: 0 0 12px 0;
  color: var(--accent);
  font-size: var(--fontsize-14);
  font-family: var(--zalando-font);
  font-optical-sizing: auto;
  font-weight: 400;
}
.menu-social p {
  font-family: var(--zalando-font);
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: var(--fontsize-16);
  color: var(--accent-2);
}
.menu-contact {
  margin-top: 18px;
  font-size: var(--fontsize-16);
  color: rgba(255, 255, 255, 0.95);
}

/* Heading */
.heading {
  margin-top: 80px;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.heading h1 {
  font-size: var(--fontsize-80);
  color: var(--text-color);
  font-family: var(--plaster-font);
  font-weight: 400;
  position: relative;
}
.heading span {
  position: absolute;
  background-color: var(--accent);
  color: var(--text-color);
  padding: 4px 8px;
  text-align: center;
  border-radius: 50%;
  font-size: var(--fontsize-16);
}
.sub-title {
  max-width: 500px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  text-align: end;
  gap: 0.7rem;
  color: var(--text-color);
}
.sub-title h3 {
  font-size: var(--fontsize-20);
  font-family: var(--zalando-font);
  font-weight: 600;
}
.sub-title p {
  font-size: var(--fontsize-18);
  font-family: var(--zalando-font);
  font-weight: 400;
}
.sub-title small {
  font-size: var(--fontsize-14);
  font-family: var(--zalando-font);
  font-weight: 400;
  color: var(--text-color);
}

/*Gallery styles */
.gallery {
  overflow: auto;
  white-space: nowrap;
  display: flex;
  margin-top: 10px;
  padding: 0 20px;
}
.gallery .scroll-content {
  display: flex;
  flex-direction: column;
  width: fit-content;
  flex-wrap: wrap;
}
.gallery img {
  width: 90vw;
  aspect-ratio: 16/11;
  padding: 10px;
  transform: scale(1);
}
.image-info {
  margin-top: 20px;
  padding: 0 10px;
  margin-bottom: 2rem;
  text-wrap: wrap;
}
.info-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.link-name {
  text-decoration: none;
  color: var(--primary-color);
  font-family: var(--dm-font);
  font-weight: 900;
  text-transform: uppercase;
  font-size: var(--fontsize-20);
  letter-spacing: 0.5rem;
}
.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 */
}
.info-desc {
  margin-top: 20px;
  font-size: var(--fontsize-16);
  font-family: var(--zalando-font);
  white-space: wrap;
  max-width: 700px;
  color: var(--desc-color);
}

/*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(--primary-color);
  text-transform: uppercase;
  line-height: 1.2;
}
.process .line {
  font-size: var(--fontsize-16);
  font-family: var(--zalando-font);
  color: var(--text-color);
  margin-top: 10px;
}
.process-content {
  display: flex;
  background: none;
  justify-content: center;
  gap: 3rem;
  margin-top: 20px;
}
.process-content img {
  width: 50vw;
}
/* ---------- 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;
}

.build-cta {
  text-align: center;
  margin-top: 2rem;
}
.cta-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;
  margin-top: 70px;
}

/* 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;
}
