:root {
  --ink: #171713;
  --ink-2: #25241f;
  --paper: #f6f1e8;
  --paper-2: #ebe4d9;
  --muted: #777166;
  --line: rgba(23, 23, 19, 0.14);
  --gold: #b68a43;
  --gold-light: #e3c986;
  --white: #fffdf8;
  --shadow: 0 24px 70px rgba(23, 23, 19, 0.13);
  --radius: 1.5rem;
  --container: min(1180px, calc(100vw - 40px));
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button { color: inherit; }
::selection { color: var(--ink); background: var(--gold-light); }

/* ===========================
   Pricing Section
=========================== */

.pricing-section {
    padding: 100px 20px;
    background: #ebe4d9;
}

.pricing-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-section h2 {
    font-size: 2.6rem;
    margin-bottom: 15px;
}

.pricing-section p {
    color: #777;
    font-size: 1.05rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.pricing-card {
    position: relative;
    background: #fff;
    border-radius: 18px;
    padding: 40px 30px;
    box-shadow: 0 10px 35px rgba(0,0,0,.08);
    transition: .3s ease;
    text-align: center;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0,0,0,.12);
}

.pricing-card h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #111;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 35px;
}

.pricing-card li {
    margin: 14px 0;
    color: #555;
}

.pricing-btn {
    display: inline-block;
    padding: 14px 35px;
    background: #111;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    transition: .3s;
    font-weight: 600;
}

.pricing-btn:hover {
    background: #333;
}

.featured {
    border: 2px solid #111;
    transform: scale(1.05);
}

.featured:hover {
    transform: scale(1.08);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #111;
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 600;
}

@media (max-width:768px) {

    .featured {
        transform: scale(1);
    }

    .featured:hover {
        transform: translateY(-8px);
    }

}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  background: var(--ink);
  color: white;
  padding: .7rem 1rem;
  border-radius: .7rem;
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.container { width: var(--container); margin-inline: auto; }
.section { padding: clamp(5rem, 8vw, 8.5rem) 0; }
.section--tight { padding: clamp(3.75rem, 6vw, 6rem) 0; }
.section--dark { background: var(--ink); color: var(--paper); }
.section--soft { background: var(--paper-2); }

.eyebrow {
  display: inline-flex;
  gap: .65rem;
  align-items: center;
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: .77rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 2.5rem; height: 1px; background: currentColor; }
.section-title {
  max-width: 800px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6vw, 5.6rem);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.045em;
}
.section-lead {
  max-width: 720px;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}
.section--dark .section-lead { color: #b9b1a4; }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.site-header.is-scrolled {
  background: rgba(246, 241, 232, .88);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}
.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .16em;
  font-size: .9rem;
}
.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--paper);
  background: var(--ink);
}
.brand-mark svg { width: 20px; height: 20px; }
.brand small { display: block; color: var(--gold); font-size: .56rem; letter-spacing: .22em; }

.primary-nav { display: flex; align-items: center; gap: 1.6rem; }
.primary-nav a {
  position: relative;
  text-decoration: none;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.primary-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -.45rem;
  height: 1px;
  background: var(--gold);
  transition: right .2s ease;
}
.primary-nav > a:not(.nav-cta):hover::after,
.primary-nav > a:not(.nav-cta):focus-visible::after { right: 0; }
.nav-cta {
  padding: .74rem 1.1rem;
  border-radius: 99px;
  background: var(--ink);
  color: var(--paper);
}
.language-link {
  min-width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}
.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 19px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}
.menu-open .menu-toggle span { opacity: 0; }
.menu-open .menu-toggle::before { transform: translateY(6px) rotate(45deg); }
.menu-open .menu-toggle::after { transform: translateY(-6px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 100svh;
  padding: 150px 0 70px;
  overflow: hidden;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero::before {
  width: 38rem;
  height: 38rem;
  right: -16rem;
  top: -13rem;
  border: 1px solid rgba(182, 138, 67, .28);
}
.hero::after {
  width: 20rem;
  height: 20rem;
  right: 4rem;
  bottom: -9rem;
  background: radial-gradient(circle, rgba(182, 138, 67, .2), transparent 68%);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 7rem);
}
.hero-copy { position: relative; z-index: 2; }
.hero-title {
  margin: 0;
  max-width: 760px;
  font-family: var(--serif);
  font-size: clamp(4rem, 8.6vw, 8.25rem);
  font-weight: 400;
  letter-spacing: -.065em;
  line-height: .82;
}
.hero-title em { color: var(--gold); font-weight: 400; }
.hero-text {
  max-width: 590px;
  margin: 2rem 0 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.7vw, 1.24rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  padding: .78rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 99px;
  text-decoration: none;
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .065em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--dark { color: var(--paper); background: var(--ink); }
.btn--outline { border-color: var(--line); background: rgba(255,255,255,.22); }
.btn--gold { color: var(--ink); background: linear-gradient(115deg, var(--gold), var(--gold-light)); }
.btn svg { width: 16px; height: 16px; }

.hero-art {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}
.hero-orbit {
  position: absolute;
  width: min(100%, 550px);
  aspect-ratio: 1;
  border: 1px solid rgba(23, 23, 19, .15);
  border-radius: 50%;
}
.hero-orbit::before {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px dashed rgba(182, 138, 67, .28);
  border-radius: inherit;
}
.hero-image-wrap {
  position: relative;
  z-index: 2;
  width: min(92%, 500px);
  filter: drop-shadow(0 26px 40px rgba(23, 23, 19, .16));
}
.hero-image-wrap img { width: 100%; height: auto; }
.hero-note {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 8%;
  max-width: 205px;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 1rem;
  color: var(--paper);
  background: rgba(23, 23, 19, .9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.hero-note strong { display: block; color: var(--gold-light); font-family: var(--serif); font-size: 1.55rem; font-weight: 400; letter-spacing: 0; text-transform: none; }

.trust-strip { border-block: 1px solid var(--line); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 1.35rem 0;
}
.trust-item { padding: .5rem 1.5rem; text-align: center; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; font-family: var(--serif); font-size: 1.25rem; font-weight: 400; }
.trust-item span { color: var(--muted); font-size: .75rem; letter-spacing: .09em; text-transform: uppercase; }

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}
.about-visual { position: sticky; top: 120px; }
.about-frame {
  position: relative;
  min-height: 520px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow);
}
.about-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(23,23,19,.86), transparent 60%);
}
.about-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.about-caption { position: absolute; inset: auto 1.5rem 1.5rem; color: var(--paper); }
.about-caption small { color: var(--gold-light); text-transform: uppercase; letter-spacing: .16em; }
.about-caption strong { display: block; margin-top: .3rem; font-family: var(--serif); font-size: 1.7rem; font-weight: 400; }
.about-copy p { margin: 0 0 1.2rem; color: #4e4b44; font-size: 1.03rem; }
.about-copy p:first-of-type { color: var(--ink); font-family: var(--serif); font-size: clamp(1.55rem, 2.5vw, 2.25rem); line-height: 1.25; }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 2rem; }
.value-card {
  min-height: 155px;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  background: rgba(255,255,255,.28);
}
.value-card span { color: var(--gold); font-family: var(--serif); font-size: 2.4rem; }
.value-card h3 { margin: .5rem 0 .35rem; font-size: 1rem; }
.value-card p { margin: 0; color: var(--muted); font-size: .9rem; }

.portfolio-head { display: flex; justify-content: space-between; gap: 2rem; align-items: end; }
.portfolio-head .section-lead { max-width: 500px; }
.portfolio-tabs {
  display: flex;
  gap: .55rem;
  flex-wrap: wrap;
  margin: 2.5rem 0 2rem;
}
.portfolio-tab {
  padding: .7rem 1rem;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 99px;
  color: #c9c1b5;
  background: transparent;
  cursor: pointer;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: .2s ease;
}
.portfolio-tab:hover,
.portfolio-tab[aria-selected="true"] { color: var(--ink); border-color: var(--gold-light); background: var(--gold-light); }
.portfolio-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1rem; }
.portfolio-card {
  position: relative;
  grid-column: span 6;
  min-height: 420px;
  border: 0;
  border-radius: 1.35rem;
  overflow: hidden;
  background: #2a2924;
  cursor: zoom-in;
  text-align: left;
  padding: 0;
  isolation: isolate;
}
.portfolio-card:nth-child(4n+1),
.portfolio-card:nth-child(4n+4) { grid-column: span 7; }
.portfolio-card:nth-child(4n+2),
.portfolio-card:nth-child(4n+3) { grid-column: span 5; }
.portfolio-card[hidden] { display: none; }
.portfolio-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.65,.2,1); }
.portfolio-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(12,12,10,.9), transparent 60%);
}
.portfolio-card:hover img { transform: scale(1.035); }
.card-meta {
  position: absolute;
  z-index: 2;
  inset: auto 1.4rem 1.25rem;
  color: white;
}
.card-meta small { color: var(--gold-light); font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.card-meta strong { display: block; margin-top: .25rem; font-family: var(--serif); font-size: 1.65rem; font-weight: 400; }
.card-open {
  position: absolute;
  z-index: 3;
  top: 1rem;
  right: 1rem;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: rgba(246,241,232,.92);
  opacity: 0;
  transform: translateY(-6px);
  transition: .2s ease;
}
.portfolio-card:hover .card-open,
.portfolio-card:focus-visible .card-open { opacity: 1; transform: translateY(0); }
.card-open svg { width: 17px; height: 17px; }

.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 3rem; }
.process-card { padding: 2rem; border-top: 1px solid var(--line); }
.process-card span { color: var(--gold); font-family: var(--serif); font-size: 3rem; }
.process-card h3 { margin: .5rem 0; font-size: 1.1rem; }
.process-card p { margin: 0; color: var(--muted); font-size: .94rem; }

.cta-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: clamp(2rem, 6vw, 5.5rem);
  border-radius: 2rem;
  color: var(--paper);
  background: var(--ink);
}
.cta-card::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -120px;
  top: -160px;
  border: 1px solid rgba(227,201,134,.35);
  border-radius: 50%;
}
.cta-card h2 { position: relative; z-index: 1; max-width: 780px; margin: 0; font-family: var(--serif); font-size: clamp(2.5rem, 5vw, 5rem); font-weight: 400; line-height: 1; letter-spacing: -.04em; }
.cta-card p { position: relative; z-index: 1; max-width: 600px; margin: 1.2rem 0 0; color: #bdb5a8; }
.cta-card .btn { position: relative; z-index: 1; white-space: nowrap; }

.site-footer { padding: 2.5rem 0; border-top: 1px solid var(--line); }
.footer-grid { display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; }
.footer-grid p { margin: 0; color: var(--muted); font-size: .82rem; }
.footer-links { display: flex; gap: 1.2rem; }
.footer-links a { text-decoration: none; color: var(--muted); font-size: .82rem; }
.footer-links a:hover { color: var(--gold); }

.cookie-banner {
  position: fixed;
  z-index: 2000;
  right: 1.25rem;
  bottom: 1.25rem;
  width: min(34rem, calc(100vw - 2.5rem));
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 1rem;
  color: var(--paper);
  background: rgba(23,23,19,.97);
  box-shadow: 0 18px 60px rgba(0,0,0,.3);
}
.cookie-banner__content { flex: 1 1 15rem; }
.cookie-banner__title { margin: 0 0 .35rem; font-family: var(--serif); font-size: 1.35rem; }
.cookie-banner__content p:last-child { margin: 0; color: #d2cabd; font-size: .85rem; line-height: 1.55; }
.cookie-banner__content a { color: var(--gold-light); }
.cookie-banner__actions { display: flex; flex: 0 0 auto; flex-direction: column; gap: .55rem; }
.cookie-banner__button { padding: .7rem .95rem; border: 1px solid var(--gold-light); border-radius: 99px; color: var(--ink); background: var(--gold-light); cursor: pointer; font-size: .76rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.cookie-banner__button--secondary { color: var(--paper); background: transparent; border-color: rgba(255,255,255,.35); }
.cookie-banner__button:hover, .cookie-banner__button:focus-visible { transform: translateY(-1px); }

.lightbox {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: none;
  place-items: center;
  padding: 3rem;
  background: rgba(10,10,9,.93);
  backdrop-filter: blur(15px);
}
.lightbox.is-open { display: grid; }
.lightbox-figure { margin: 0; max-width: min(1200px, 92vw); max-height: 86vh; display: grid; gap: .8rem; }
.lightbox img { max-height: 78vh; width: auto; margin: auto; border-radius: .8rem; box-shadow: 0 30px 100px rgba(0,0,0,.5); }
.lightbox figcaption { color: #d0c8bc; text-align: center; font-size: .9rem; }
.lightbox-close {
  position: fixed;
  top: 1.3rem;
  right: 1.3rem;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  color: white;
  background: transparent;
  cursor: pointer;
  font-size: 1.5rem;
}
.lightbox-share { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: .5rem; max-width: min(92vw, 600px); }
.lightbox-share-label { margin-right: .25rem; color: #d0c8bc; font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.lightbox-share button { display: grid; width: 2.35rem; height: 2.35rem; place-items: center; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; color: #fff; background: rgba(255,255,255,.08); cursor: pointer; font-size: .95rem; transition: background .2s ease, border-color .2s ease, transform .2s ease; }
.lightbox-share button:hover, .lightbox-share button:focus-visible { border-color: var(--gold-light); background: var(--gold-light); color: var(--ink); transform: translateY(-2px); }
.lightbox-share-status { min-height: 1.25rem; margin: .1rem 0 0; color: var(--gold-light); font-size: .78rem; text-align: center; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* Language landing */
.language-page { min-height: 100svh; background: var(--ink); color: var(--paper); overflow: hidden; }
.language-shell {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
}
.language-copy {
  position: relative;
  z-index: 2;
  padding: clamp(2rem, 6vw, 6rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.language-brand .brand-mark { color: var(--ink); background: var(--gold-light); }
.language-main { max-width: 760px; padding-block: 4rem; }
.language-main h1 { margin: 0; font-family: var(--serif); font-size: clamp(4rem, 9vw, 9rem); font-weight: 400; line-height: .82; letter-spacing: -.065em; }
.language-main h1 em { color: var(--gold-light); font-weight: 400; }
.language-main p { max-width: 600px; margin: 2rem 0; color: #b9b1a5; font-size: clamp(1rem, 1.5vw, 1.2rem); }
.language-options { display: flex; flex-wrap: wrap; gap: .8rem; }
.language-choice {
  min-width: 190px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 99px;
  color: white;
  text-decoration: none;
  transition: .2s ease;
}
.language-choice:hover, .language-choice:focus-visible { color: var(--ink); border-color: var(--gold-light); background: var(--gold-light); transform: translateY(-2px); }
.language-choice span { font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.language-choice small { opacity: .68; }
.language-foot { color: #777267; font-size: .76rem; }
.language-foot a { margin-right: .8rem; color: inherit; }
.language-foot a:hover { color: var(--gold-light); }
.language-visual { position: relative; background: var(--paper-2); overflow: hidden; }
.language-visual::before,
.language-visual::after { content: ""; position: absolute; border-radius: 50%; }
.language-visual::before { width: 600px; height: 600px; left: -160px; top: -210px; border: 1px solid rgba(182,138,67,.45); }
.language-visual::after { width: 310px; height: 310px; right: -90px; bottom: -100px; background: rgba(182,138,67,.16); }
.language-visual img { position: absolute; z-index: 2; width: min(88%, 620px); left: 50%; top: 50%; transform: translate(-50%,-50%); filter: drop-shadow(0 30px 45px rgba(23,23,19,.18)); }
.language-stamp { position: absolute; z-index: 3; right: 7%; bottom: 7%; width: 135px; aspect-ratio: 1; display: grid; place-items: center; border: 1px solid rgba(23,23,19,.25); border-radius: 50%; color: var(--ink); font-family: var(--serif); font-size: 1.15rem; text-align: center; transform: rotate(-10deg); }

@media (max-width: 980px) {
  .menu-toggle{
    display:block;
    position:relative;
    z-index:1002;
}

.primary-nav{

    position:absolute;

    top:100%;
    left:0;
    right:0;

    display:flex;
    flex-direction:column;
    align-items:stretch;

    gap:0;

    padding:15px 20px 25px;

    background:var(--paper);

    border-top:1px solid var(--line);
    box-shadow:0 15px 40px rgba(0,0,0,.08);

    opacity:0;
    visibility:hidden;

    transform:translateY(-10px);

    transition:
        opacity .25s,
        transform .25s,
        visibility .25s;

    z-index:1000;
}

.menu-open .primary-nav{

    opacity:1;
    visibility:visible;

    transform:translateY(0);

}

.primary-nav a{

    padding:15px 5px;
    border-bottom:1px solid rgba(0,0,0,.05);

}

.primary-nav a:last-child{

    border-bottom:none;

}
  .language-link { border-radius: 99px; }
  .hero-grid, .about-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 125px; }
  .hero-art { min-height: 520px; }
  .about-visual { position: relative; top: auto; }
  .portfolio-head { display: block; }
  .portfolio-card, .portfolio-card:nth-child(n) { grid-column: span 6; }
  .cta-card { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .language-shell { grid-template-columns: 1fr; }
  .language-visual { min-height: 48svh; order: -1; }
  .language-copy { min-height: 52svh; }
}

@media (max-width: 680px) {
  :root { --container: min(100% - 28px, 1180px); }
  .header-inner { min-height: 72px; }
  .brand { font-size: .76rem; letter-spacing: .11em; }
.menu-toggle{
    display:block;
    position:relative;
    z-index:1002;
}

.primary-nav{

    position:absolute;

    top:100%;
    left:0;
    right:0;

    display:flex;
    flex-direction:column;
    align-items:stretch;

    gap:0;

    padding:15px 20px 25px;

    background:var(--paper);

    border-top:1px solid var(--line);
    box-shadow:0 15px 40px rgba(0,0,0,.08);

    opacity:0;
    visibility:hidden;

    transform:translateY(-10px);

    transition:
        opacity .25s,
        transform .25s,
        visibility .25s;

    z-index:1000;
}

.menu-open .primary-nav{

    opacity:1;
    visibility:visible;

    transform:translateY(0);

}

.primary-nav a{

    padding:15px 5px;
    border-bottom:1px solid rgba(0,0,0,.05);

}

.primary-nav a:last-child{

    border-bottom:none;

}  .hero-title { font-size: clamp(3.75rem, 19vw, 6rem); }
  .hero-art { min-height: 420px; }
  .hero-note { right: .25rem; bottom: 0; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .values-grid { grid-template-columns: 1fr; }
  .portfolio-card, .portfolio-card:nth-child(n) { grid-column: 1 / -1; min-height: 350px; }
  .portfolio-tabs { flex-wrap: nowrap; overflow-x: auto; padding-bottom: .5rem; scrollbar-width: thin;}
  .portfolio-tab { flex: 0 0 auto; }
  .footer-grid { align-items: flex-start; flex-direction: column; }
  .footer-links { flex-wrap: wrap; }
  .cookie-banner { right: .75rem; bottom: .75rem; width: calc(100vw - 1.5rem); flex-direction: column; align-items: stretch; }
  .cookie-banner__actions { flex-direction: row; }
  .cookie-banner__button { flex: 1; }
  .lightbox { padding: 1rem; }
  .language-copy { padding: 1.4rem; }
  .language-main { padding-block: 2.8rem; }
  .language-main h1 { font-size: clamp(4rem, 21vw, 6.5rem); }
  .language-choice { width: 100%; }
  .language-visual { min-height: 42svh; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ===========================
   Order Form Styles
=========================== */
.custom-order-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  position: relative;
  z-index: 2;
}

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

.custom-order-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  text-align: left;
}

.terms-consent {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  width: 100%;
  margin: .35rem auto 0;
  padding: .3rem 0;
  color: var(--paper);
  font-size: .88rem;
  line-height: 1.5;
}
.custom-order-form .terms-consent input { width: 1rem; height: 1rem; flex: 0 0 1rem; margin: 0; padding: 0; accent-color: var(--gold-light); }
.terms-consent label { margin: 0; }
.terms-consent a { color: var(--gold-light); }

.custom-order-form label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--paper); /* Hivatkozás a meglévő papír színre */
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.custom-order-form input,
.custom-order-form select,
.custom-order-form textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.custom-order-form input::placeholder,
.custom-order-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.custom-order-form input:focus,
.custom-order-form select:focus,
.custom-order-form textarea:focus {
  outline: none;
  border-color: var(--gold); /* Hivatkozás a meglévő arany színre */
  background: rgba(255, 255, 255, 0.1);
}

/* Külön stílus a legördülő menü elemeinek, hogy sötét módban is olvashatóak legyenek */
.custom-order-form select option,
.custom-order-form select optgroup {
  background: var(--ink);
  color: var(--white);
  padding: 10px;
}

.custom-order-form select optgroup {
  color: var(--gold-light);
  font-weight: bold;
}

@media (max-width: 680px) {
  .custom-order-form .form-row {
    grid-template-columns: 1fr;
  }
}

/* Nyelvválasztó főoldal mobil javítások (görgetés és sorrend) */
@media (max-width: 980px) {
  body.language-page {
    overflow-y: auto !important;
    overflow-x: hidden !important;
  }
  
 .language-visual {
    display: none !important;
  }
}

.social-links{
    display:flex;
    gap:15px;
    justify-content:center;
    margin-top:20px;
}

.social-links a{
    width:48px;
    height:48px;
    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:50%;
    background:#fffdf9;
    color:#7a6855;
    text-decoration: none;

    font-size:22px;

    box-shadow:0 6px 18px rgba(0,0,0,.08);

    transition:.25s;
}

.social-links a:hover{
    transform:translateY(-4px);
    background:#f2ebe2;
    color:#5e4d3f;
}


.floating-order{

    position:fixed;

    right:25px;
    bottom:25px;

    display:flex;
    align-items:center;
    gap:10px;

    padding:16px 22px;

    background:#8a6d52;
    color:white;

    border-radius:999px;

    text-decoration:none;

    font-weight:600;

    box-shadow:0 10px 30px rgba(0,0,0,.25);

    z-index:999;

    transition:.3s;
}

.floating-order:hover{

    transform:translateY(-4px);

    background:#6f5742;
}

.floating-order i{
    font-size:20px;
}

@media(max-width:768px){

.floating-order{

    right:15px;
    bottom:15px;

    padding:14px 18px;

    font-size:15px;
}

}
