:root {
  --bg: #e9e4dc;
  --accent: #c9d2d7;
  --border: #d0b894;
  --text: #1f1b18;
  --green: #6f8361;
  --sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: "Playfair Display", "Times New Roman", serif;
}

/* RESET */

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

html,
body {
  min-height: 100%;
}

body {
  font-family: var(--sans);
  background: radial-gradient(circle at top, #f4efe7 0, #e9e4dc 55%, #e3ddcf 100%);
  color: var(--text);
  border: 2px solid var(--border);
}

/* LAYOUT-BREITE */

.page-wrap {
  max-width: 1350px;
  margin: 0 auto;
  padding: 24px 40px 40px;
}

/* TYPOGRAFIE */

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  letter-spacing: 0.04em;
}

p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 0.7em;
}

/* HEADER / NAVIGATION */

.site-header {
  padding-top: 4px;
  margin-bottom: 12px;
}

/* Desktop-Layout: grid – links / Brand / rechts */
.nav {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: flex-start;
  column-gap: 24px;
}

.nav-left,
.nav-right {
  display: flex;
  gap: 40px;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-top: 24px;
}

.nav-left {
  justify-content: flex-start;
}

.nav-right {
  justify-content: flex-end;
}

.nav a {
  position: relative;
  text-decoration: none;
  color: var(--text);
  cursor: pointer;
  font-family: var(--serif);
  padding: 4px 0;
  font-weight: 500;
}

/* Unterlinie als feine Linie darunter */

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: rgba(0, 0, 0, 0.8);
  transition: width 0.25s ease;
}

.nav a:hover::after,
.nav a.is-active::after {
  width: 100%;
}

.nav a.is-active {
  font-weight: 550;
}

/* BRAND / LOGO */

.brand {
  text-align: center;
  line-height: 1.1;
}

.brand-link {
  text-decoration: none;
  color: inherit;
  display: inline-block;
  transition: color 0.25s ease, transform 0.25s ease;
}

.brand-link:hover {
  color: rgba(31, 27, 24, 0.75);
  transform: translateY(-1px);
}

.brand h1 {
  font-size: clamp(44px, 5vw, 64px);
  letter-spacing: 0.18em;
  font-weight: 500;
}

.brand p {
  margin-top: 8px;
  font-size: 24px;
  font-style: italic;
  color: var(--green);
}

/* BURGER-BUTTON (nur mobil sichtbar) */

.nav-toggle {
  display: none; /* Desktop: versteckt */
  position: absolute;
  right: 0;
  top: 18px;
  border: none;
  background: transparent;
  padding: 6px 4px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 4px 0;
}

/* HERO / BÖGEN */

.hero {
  margin-top: 26px;
}

.arches {
  display: flex;
  justify-content: center;
  gap: clamp(26px, 4vw, 56px);
  margin-bottom: 40px;
  flex-wrap: nowrap;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.arch {
  width: 290px;
  max-width: 30vw;
  aspect-ratio: 3 / 4;
  border-radius: 55% 55% 0 0;
  overflow: hidden;
  background: #ccc;
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.18);
  transform: translateY(0);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.arch:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 48px rgba(0, 0, 0, 0.22);
}

.arch:hover img {
  transform: scale(1.04);
}

/* INFO-PANEL STARTSEITE */

.info-panel {
  max-width: 96%;
  margin: 0 auto 60px;
  background: var(--accent);
  border-radius: 18px;
  min-height: 280px;
  padding: 30px 36px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(12px);
}

.info-panel h2 {
  font-size: 28px;
  margin-bottom: 12px;
}

.info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 26px;
}

.info-grid p:last-child {
  margin-bottom: 0;
}

/* GENERISCHE SECTIONS */

.section {
  margin-top: 60px;
  margin-bottom: 60px;
}

.section:first-of-type {
  margin-top: 32px;
}

.section-heading {
  text-align: center;
  margin-bottom: 30px;
}

.section-heading h2 {
  font-size: 30px;
  margin-bottom: 6px;
}

.section-heading p {
  max-width: 560px;
  margin: 0 auto;
  color: rgba(0, 0, 0, 0.7);
}

/* GRIDS */

.grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 32px;
}

/* LISTEN */

ul.clean-list {
  list-style: none;
  padding-left: 0;
}

ul.clean-list li {
  margin-bottom: 8px;
}

/* PRICING */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  padding: 22px 22px 20px;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  backdrop-filter: blur(10px);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 45px rgba(0, 0, 0, 0.18);
}

.card h3 {
  font-size: 22px;
  margin-bottom: 4px;
}

.card-sub {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(0, 0, 0, 0.55);
  margin-bottom: 10px;
}

.card-price {
  font-size: 20px;
  font-family: var(--serif);
  margin-top: 10px;
  margin-bottom: 6px;
}

.card ul {
  padding-left: 18px;
  margin-top: 6px;
}

.card ul li {
  margin-bottom: 5px;
}

/* TEAM */

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.team-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 18px 18px 20px;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
  text-align: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  backdrop-filter: blur(10px);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 45px rgba(0, 0, 0, 0.18);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 14px;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.team-card:hover .team-photo img {
  transform: scale(1.05);
}

.team-name {
  font-family: var(--serif);
  font-size: 20px;
  margin-bottom: 4px;
}

.team-role {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 10px;
}

/* KONTAKT */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 30px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 22px 24px;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(10px);
}

.contact-card h3 {
  margin-bottom: 10px;
}

.contact-row {
  margin-bottom: 8px;
}

.contact-row span.label {
  font-weight: 600;
  font-family: var(--serif);
}

/* FORM */

form label {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
  font-weight: 500;
}

form input,
form textarea,
form select {
  width: 100%;
  padding: 9px 11px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  margin-bottom: 12px;
  font-family: var(--sans);
  font-size: 14px;
  background: rgba(255, 255, 255, 0.92);
}

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

button.btn {
  border: none;
  border-radius: 999px;
  padding: 10px 24px;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: #111;
  color: #fff;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

button.btn:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.3);
}

/* MAP */

.map-embed {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.16);
}

.map-embed iframe {
  border: 0;
  width: 100%;
  height: 100%;
  min-height: 260px;
}

/* FOOTER – CLEAN MODERN */

.footer {
  margin-top: 80px;
  padding: 40px 0 50px;
  background: transparent;
  text-align: center;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
}

.footer-brand {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0.14em;
  margin-bottom: 12px;
  color: var(--text);
}

.footer-line {
  width: 100%;
  border-bottom: 1.5px solid rgba(0, 0, 0, 0.25);
  margin: 10px auto 22px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 26px;
  margin-bottom: 16px;
}

.footer-links a {
  text-decoration: none;
  font-size: 15px;
  color: rgba(0, 0, 0, 0.75);
  font-family: var(--serif);
  transition: opacity 0.25s ease;
}

.footer-links a:hover {
  opacity: 0.6;
}

.footer-copy {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.5);
  margin-top: 12px;
}

/* REVEAL ANIMATION */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE – NAV + LAYOUT */

@media (max-width: 980px) {
  /* NAV: statt Grid → Spalte, Burger sichtbar */
  .nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 0;
    text-align: center;
  }

  .nav-toggle {
    display: inline-flex;
  }

  /* Brand mittig, Links darunter */
  .brand {
    order: 1;
  }

  .nav-left,
  .nav-right {
    order: 3;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
    font-size: 16px;
    display: none; /* initial verborgen */
  }

  /* wenn .menu-open an .nav → Links anzeigen */
  .nav.menu-open .nav-left,
  .nav.menu-open .nav-right {
    display: flex;
  }

  .page-wrap {
    padding: 16px 18px 32px;
  }

  .info-grid,
  .grid-2,
  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .arches {
    flex-wrap: wrap;
  }

  .arch {
    width: 230px;
    max-width: 46vw;
  }
}

@media (max-width: 640px) {
  .pricing-grid,
  .team-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .arch {
    width: 72%;
    max-width: 340px;
  }

  .info-panel {
    padding: 18px 18px 22px;
    min-height: 200px;
  }

  .section-heading h2 {
    font-size: 24px;
  }
}

/* PORTFOLIO – kreative, aber geordnete Collage */

.portfolio-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.1fr;
  grid-template-rows: repeat(4, 190px);
  gap: 18px;
  max-width: 1150px;
  margin: 0 auto;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
  background: #d1d1d1;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.portfolio-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.26);
}

.portfolio-item:hover img {
  transform: scale(1.05);
}

/* Positionierung der 7 Kacheln */

.portfolio-hero {
  grid-column: 1 / span 1;
  grid-row: 1 / span 3;
}

.portfolio-mid-top {
  grid-column: 2 / span 1;
  grid-row: 1 / span 1;
}

.portfolio-mid-middle {
  grid-column: 2 / span 1;
  grid-row: 2 / span 1;
}

.portfolio-mid-bottom {
  grid-column: 2 / span 1;
  grid-row: 3 / span 1;
}

.portfolio-right-top {
  grid-column: 3 / span 1;
  grid-row: 1 / span 2;
}

.portfolio-wide-bottom {
  grid-column: 1 / span 2;
  grid-row: 4 / span 1;
}

.portfolio-right-bottom {
  grid-column: 3 / span 1;
  grid-row: 3 / span 2;
}

/* Responsive Portfolio */

@media (max-width: 980px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
  }

  .portfolio-item,
  .portfolio-hero,
  .portfolio-mid-top,
  .portfolio-mid-middle,
  .portfolio-mid-bottom,
  .portfolio-right-top,
  .portfolio-wide-bottom,
  .portfolio-right-bottom {
    grid-column: span 2;
    grid-row: auto;
    height: 260px;
  }
}

@media (max-width: 640px) {
  .portfolio-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .portfolio-item {
    grid-column: 1 / -1;
    height: 230px;
  }
}
/* ===== BRAND-UNTERZEILE + BURGER NEBEN "ART AND INTERIORS" ===== */

.brand-subrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}

.brand-tagline {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 300;
  font-size: 26px;
  letter-spacing: 0.5px;
  color: var(--green);
}


/* Burger-Button: drei feine Linien rechts der Tagline */
.nav-toggle {
  display: none; /* nur mobil sichtbar, siehe Media-Query */
  border: none;
  background: transparent;
  padding-left: 6px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 34px;            /* längere Linie wie im Beispiel */
  height: 1px;
  background: rgba(0, 0, 0, 0.85);
  margin: 3px 0;
}

/* ===== MOBILE-NAVIGATION OVERRIDE ===== */

@media (max-width: 980px) {
  /* NAV statt Grid → Spalte */
  .nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 0;
    text-align: center;
  }

  /* Burger neben Tagline sichtbar machen */
  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }

  /* Brand oben, Menü darunter */
  .brand {
    order: 1;
  }

  .nav-left,
  .nav-right {
    order: 3;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
    font-size: 16px;
    display: none; /* initial versteckt */
  }

  /* Wenn .menu-open an .nav → Links anzeigen */
  .nav.menu-open .nav-left,
  .nav.menu-open .nav-right {
    display: flex;
  }
}
/* ================================ */
/*  MOBILE MENU ANIMATION (ONLY MOBILE) */
/* ================================ */

@media (max-width: 980px) {

  /* Smooth Menü Animation */
  .nav-left,
  .nav-right {
    opacity: 0;
    transform: translateY(-12px);
    transition:
      opacity 0.55s ease-out,
      transform 0.55s cubic-bezier(0.23, 1, 0.32, 1);
  }

  /* Wenn Menü geöffnet → weich anzeigen */
  .nav.menu-open .nav-left,
  .nav.menu-open .nav-right {
    opacity: 1;
    transform: translateY(0);
  }

  /* Burger-Button Animation */
  .nav-toggle span {
    transition:
      transform 0.55s ease-in-out,
      opacity 0.45s ease-in-out;
  }

  .nav.menu-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav.menu-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .nav.menu-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}
