@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@400;500;600&display=swap');

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  background: #f4f4f0;
  color: #1d1d1f;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.glass-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(244, 244, 240, 0.9);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.header-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  flex: 1;
}

.brand > a:last-child {
  min-width: 0;
}

.logo-wrap {
  display: inline-flex;
  align-items: center;
}

.site-logo {
  width: 62px;
  height: auto;
  object-fit: contain;
}

.brand-title,
.hero h1,
.page-hero h1,
.section h2,
.card h3,
.job-item h3,
.contact-form-shell h3,
.catalogue-title,
.service-feature-text h2 {
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.01em;
}

.brand-title {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 4px;
  color: #1d1d1f;
  line-height: 1.05;
}

.brand-subtext,
.brand p {
  font-size: 14px;
  line-height: 1.6;
  color: #66645f;
  margin: 0;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  flex: 1;
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #1d1d1f;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(201, 169, 106, 0.45);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.nav {
  display: flex;
  gap: 26px;
  font-size: 14px;
  color: #6e6e73;
  align-items: center;
}

.nav a {
  position: relative;
  padding-bottom: 6px;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: #1d1d1f;
}

.nav a.active,
.nav a[aria-current="page"] {
  color: #1d1d1f;
}

.nav a.active::after,
.nav a[aria-current="page"]::after,
.nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 1.5px;
  background: #c9a96a;
  border-radius: 999px;
}

.lang-inline {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  font-size: 14px;
  color: #86868b;
}

.lang-link {
  color: #86868b;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.lang-link:hover,
.lang-link.active {
  color: #c9a96a;
}

.lang-link.active {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lang-sep {
  color: #b3b3b8;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  background: #000;
  pointer-events: none;
}

.hero-video.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 20, 0.42);
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
}

.hero-copy {
  max-width: 760px;
  color: white;
  margin-top: 120px;
}

.kicker,
.contact-kicker,
.footer h3 {
  color: #c9a96a;
}

.kicker {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.35em;
}

.hero h1 {
  margin: 20px 0 0;
  font-size: 72px;
  line-height: 1.02;
  font-weight: 600;
  color: #ffffff;
}

.hero p {
  margin-top: 24px;
  max-width: 700px;
  font-size: 20px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.btn-light,
.btn-outline,
.btn-dark {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
}

.btn-light {
  background: white;
  color: #1d1d1f;
}

.btn-light:hover {
  background: #f0f0f2;
}

.btn-outline {
  border: 1px solid rgba(201, 169, 106, 0.75);
  color: white;
}

.btn-outline:hover {
  background: rgba(201, 169, 106, 0.16);
}

.btn-dark {
  background: #1d1d1f;
  color: white;
  border: 0;
  cursor: pointer;
}

.btn-dark:hover {
  background: #2c2c2e;
}

.hero-boxes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 38px;
  max-width: 760px;
}

.hero-box {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 16px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 14px;
}

.page-hero {
  padding: 90px 0 70px;
  background: #f4f4f0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.services-hero-compact {
  padding-top: 30px;
  padding-bottom: 24px;
}

.page-hero h1 {
  margin: 0;
  font-size: 52px;
  line-height: 1.08;
  color: #1d1d1f;
  font-weight: 600;
}

.page-hero p {
  margin-top: 18px;
  max-width: 760px;
  font-size: 18px;
  line-height: 1.75;
  color: #66645f;
}

.services-intro {
  display: flex;
  justify-content: center;
  text-align: center;
}

.services-intro-text {
  max-width: 860px;
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.section-light {
  background: #f4f4f0;
}

.section-grey {
  background: #ecebe6;
}

.section h2 {
  margin: 0;
  font-size: 52px;
  line-height: 1.08;
  color: #1d1d1f;
  font-weight: 600;
}

.section-intro {
  margin-top: 18px;
  max-width: 780px;
  font-size: 18px;
  line-height: 1.75;
  color: #66645f;
}

.text-block {
  max-width: 900px;
  font-size: 17px;
  line-height: 1.9;
  color: #66645f;
}

.text-block p,
.service-feature-copy p {
  color: #66645f;
  line-height: 1.9;
  font-size: 16px;
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 42px;
}

.cards-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 42px;
}

.card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
  border-color: rgba(201, 169, 106, 0.35);
}

.card h3 {
  margin: 0;
  font-size: 32px;
  line-height: 1.2;
  color: #1d1d1f;
  font-weight: 600;
}

.card p,
.card li {
  color: #66645f;
  font-size: 16px;
  line-height: 1.8;
}

.card p {
  margin-top: 16px;
}

.card-dark {
  background: #1d1d1f;
  color: white;
  border-color: transparent;
}

.card-dark h3,
.card-dark p,
.card-dark li,
.card-dark a {
  color: white;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #c9a96a;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.text-link::after {
  content: "→";
  transition: transform 0.2s ease;
}

.text-link:hover::after {
  transform: translateX(3px);
}

.service-feature {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 1fr);
  gap: 48px;
  align-items: center;
  margin-bottom: 72px;
}

.service-feature[id] {
  scroll-margin-top: 120px;
}

.service-feature-left .service-feature-image {
  order: 1;
}

.service-feature-left .service-feature-text {
  order: 2;
}

.service-feature-right .service-feature-text {
  order: 1;
}

.service-feature-right .service-feature-image {
  order: 2;
}

.service-feature-text h2 {
  font-size: 52px;
  line-height: 1.08;
  font-weight: 600;
  margin: 0 0 18px;
  color: #1d1d1f;
}

.service-feature-image {
  position: relative;
}

.about-image {
  width: 100%;
  border-radius: 28px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: block;
  object-fit: cover;
  min-height: 420px;
  background: #ddd;
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: auto;
}

/* ABOUT PAGE TWO COLUMN FIX */
.two-col {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
}

.two-col .about-image-wrap {
  display: flex;
  justify-content: flex-start;
}

.two-col .about-image {
  width: 100%;
  max-width: 520px;
  height: 360px;
  min-height: auto;
  margin: 0;
}

.about-text-wrap h2 {
  margin-bottom: 0;
}

.services-catalogue {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 20px;
}

.service-category-box {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 28px;
  padding: 34px 34px 28px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-category-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
  border-color: rgba(201, 169, 106, 0.35);
}

.catalogue-title {
  font-size: 42px;
  line-height: 1.1;
  font-weight: 600;
  margin: 0 0 22px;
  text-align: center;
  color: #1d1d1f;
}

.service-category-list {
  margin: 0;
  padding-left: 22px;
  columns: 2;
  column-gap: 40px;
}

.service-category-list li {
  break-inside: avoid;
  margin-bottom: 12px;
  color: #66645f;
  line-height: 1.8;
  font-size: 16px;
}

.pill {
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  padding: 12px 18px;
  color: #66645f;
  font-size: 14px;
}

.footer {
  background: rgba(255, 255, 255, 0.42);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 36px;
  padding: 54px 0;
}

.footer h3 {
  margin: 0 0 18px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.footer p,
.footer a {
  color: #66645f;
  font-size: 14px;
  line-height: 1.8;
}

.footer a:hover {
  color: #c9a96a;
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 16px 0;
  font-size: 12px;
  color: #86868b;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.job-list {
  margin-top: 42px;
  display: grid;
  gap: 22px;
}

.job-item {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  padding: 26px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.job-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
  border-color: rgba(201, 169, 106, 0.35);
}

.job-item h3 {
  margin: 0;
  font-size: 32px;
  color: #1d1d1f;
  font-weight: 600;
}

.job-item p {
  margin-top: 14px;
  color: #66645f;
  line-height: 1.8;
}

.protected-image {
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
}

.contact-form {
  margin-top: 34px;
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

input,
textarea,
select,
button {
  font: inherit;
}

input,
textarea,
select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.96);
  color: #1d1d1f;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

@media (max-width: 1100px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 0;
  }

  .top-actions {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .nav {
    flex-wrap: wrap;
    gap: 18px 20px;
  }

  .cards-3,
  .cards-2,
  .services-catalogue,
  .service-feature,
  .footer-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .lang-inline {
    margin-left: 0;
  }

  .service-category-list {
    columns: 1;
  }

  .two-col .about-image-wrap {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(100% - 28px, 1200px);
  }

  .glass-header {
    background: rgba(244, 244, 240, 0.96);
  }

  .header-inner {
    position: relative;
    gap: 14px;
    min-height: 82px;
    padding: 12px 0;
  }

  .brand {
    gap: 12px;
    width: calc(100% - 68px);
    flex: 0 1 auto;
  }

  .site-logo {
    width: 50px;
  }

  .brand-title {
    font-size: 22px;
  }

  .brand-subtext,
  .brand p {
    font-size: 13px;
    line-height: 1.45;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
    flex-shrink: 0;
  }

  .top-actions {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    left: 0;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 18px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }

  .top-actions.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .nav a {
    padding: 12px 16px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
  }

  .nav a.active,
  .nav a[aria-current="page"] {
    background: #1d1d1f;
    color: #ffffff;
    border-color: #1d1d1f;
  }

  .nav a.active::after,
  .nav a[aria-current="page"]::after,
  .nav a:hover::after {
    display: none;
  }

  .lang-inline {
    width: 100%;
    justify-content: center;
    margin-left: 0;
    padding: 8px 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 999px;
    background: rgba(244, 244, 240, 0.92);
  }

  .hero {
    min-height: 74vh;
  }

  .hero-content {
    min-height: 74vh;
    align-items: flex-end;
    padding: 44px 0 36px;
  }

  .hero-copy {
    max-width: 100%;
    margin-top: 0;
  }

  .kicker {
    font-size: 11px;
    letter-spacing: 0.28em;
  }

  .hero h1 {
    font-size: 44px;
    line-height: 1.02;
  }

  .hero p,
  .page-hero p,
  .section-intro,
  .text-block,
  .text-block p,
  .service-feature-copy p {
    font-size: 15px;
    line-height: 1.75;
  }

  .hero p {
    margin-top: 18px;
    max-width: 100%;
  }

  .page-hero {
    padding: 58px 0 44px;
  }

  .page-hero h1,
  .section h2,
  .service-feature-text h2 {
    font-size: 38px;
  }

  .section {
    padding: 64px 0;
  }

  .cards-3,
  .cards-2,
  .job-list,
  .services-catalogue {
    margin-top: 28px;
  }

  .card,
  .job-item,
  .service-category-box {
    padding: 24px;
    border-radius: 24px;
  }

  .card h3,
  .job-item h3,
  .catalogue-title {
    font-size: 28px;
  }

  .service-feature {
    gap: 28px;
    margin-bottom: 48px;
  }

  .service-feature[id] {
    scroll-margin-top: 100px;
  }

  .about-image,
  .two-col .about-image {
    min-height: 300px;
    height: 300px;
    max-width: 100%;
  }

  .footer-grid {
    gap: 24px;
    padding: 42px 0;
  }

  .footer-bottom {
    gap: 10px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 22px, 1200px);
  }

  .header-inner {
    gap: 12px;
  }

  .brand {
    gap: 10px;
    width: calc(100% - 60px);
  }

  .site-logo {
    width: 44px;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
  }

  .brand-title {
    font-size: 20px;
  }

  .brand-subtext,
  .brand p,
  .nav,
  .nav a,
  .lang-inline,
  .lang-link,
  .lang-sep,
  .footer p,
  .footer a {
    font-size: 13px;
  }

  .nav {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 68vh;
  }

  .hero-content {
    min-height: 68vh;
    padding: 36px 0 28px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 14px;
    line-height: 1.7;
  }

  .page-hero h1,
  .section h2,
  .service-feature-text h2 {
    font-size: 30px;
  }

  .card h3,
  .job-item h3,
  .catalogue-title {
    font-size: 24px;
  }

  .section {
    padding: 52px 0;
  }

  .card,
  .job-item,
  .service-category-box {
    padding: 20px;
    border-radius: 22px;
  }

  .about-image,
  .two-col .about-image {
    height: 250px;
    min-height: 250px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}


body.menu-open {
  overflow: hidden;
}
