@charset "UTF-8";
:root {
  --main-font-family: "Inter", sans-serif;
  --main-font-family-melodrama: "Melodrama", serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
}

[x-cloak],
.hidden {
  display: none !important;
}

@font-face {
  font-family: "Melodrama";
  src: url("/assets/fonts/melodrama/Melodrama-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Melodrama";
  src: url("/assets/fonts/melodrama/Melodrama-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Melodrama";
  src: url("/assets/fonts/melodrama/Melodrama-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Melodrama";
  src: url("/assets/fonts/melodrama/Melodrama-Semibold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Melodrama";
  src: url("/assets/fonts/melodrama/Melodrama-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --line-height-base: 1.6;
}

body {
  line-height: var(--line-height-base);
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  margin-top: 0;
}

p {
  line-height: var(--line-height-base);
}

.section-lead {
  line-height: 1.6;
}

.form-field {
  display: grid;
  margin-bottom: 1rem;
}

.form-field label {
  font-weight: 600;
  font-size: 0.95rem;
}

.checkbox-field {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.5rem 0 1.25rem;
  font-weight: 600;
}

.checkbox-field input {
  width: auto;
  margin: 0;
}

input.input,
select,
textarea.input,
textarea {
  line-height: 1.5;
}

.animate-fade {
  animation: fadeUp 0.7s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .animate-fade {
    animation: none;
  }
}
.nav-toggle {
  display: none;
  width: 32px;
  height: 24px;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle span:not(:last-child) {
  margin-bottom: 6px;
}

.mobile-nav {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(231, 223, 211, 0.8);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
  z-index: 12;
}

.mobile-nav-inner {
  padding: 1.5rem;
  display: grid;
  gap: 1.5rem;
}

.mobile-links {
  display: grid;
  gap: 0.75rem;
}

.mobile-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 1rem;
}

.mobile-actions {
  display: grid;
  gap: 0.75rem;
  justify-items: flex-start;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .desktop-actions {
    display: none;
  }
}
@media (max-width: 640px) {
  .mobile-nav-inner {
    padding: 1rem;
  }
}
/* main.scss — global tokens */
:root {
  --primary: #b45309;
  --primary-dark: #92400e;
  --accent: #15803d;
  --text: #2b221b;
  --muted: #6b5c4f;
  --border: #e7dfd3;
  --surface: #ffffff;
  --surface-muted: #fbf7f1;
  --shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
}

* {
  box-sizing: border-box;
}

.hidden {
  display: none !important;
}

body {
  font-family: var(--main-font-family);
  margin: 0;
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 3.5rem 0;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.section-lead {
  color: var(--muted);
  max-width: 640px;
  margin: 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.muted {
  color: var(--muted);
}

@media (max-width: 1024px) {
  .container {
    padding: 0 1.25rem;
  }

  .section {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .section-lead {
    font-size: 1rem;
  }
}
@media (max-width: 640px) {
  .container {
    padding: 0 1rem;
  }

  .section {
    padding: 2.5rem 0;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .section-lead {
    font-size: 0.95rem;
  }
}
.meta {
  color: #000;
  font-size: 0.9rem;
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  color: var(--text);
  background: #fff;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 12px 24px rgba(180, 83, 9, 0.24);
}

.card {
  background: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 1.5rem;
}

.card-soft {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: rgba(180, 83, 9, 0.1);
  color: var(--primary-dark);
  font-size: 0.75rem;
  font-weight: 600;
}

.input, select, textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  font: inherit;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.site-header .brand {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  text-decoration: none;
}

.site-header .main-nav a {
  margin: 0 0.5rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
}

.site-header .user-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-header .logout-form .btn {
  color: red;
}

.locale-switcher {
  display: inline-flex;
  gap: 0.35rem;
  padding: 0.25rem;
  border-radius: 999px;
  background: #f4eee4;
}

.locale-switcher a {
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
}

.locale-switcher a.is-active {
  background: #fff;
  color: var(--text);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
}

.site-footer {
  background: #fff;
  background: #f7f2ea;
  margin-top: 4rem;
}

.site-footer .footer-inner {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 1.5rem;
  padding: 2.5rem;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e7dfd3;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
  top: -1.5rem;
  position: relative;
}

.site-footer .footer-col h4 {
  margin: 0 0 0.6rem 0;
  font-size: 0.95rem;
  color: var(--text);
}

.site-footer .brand-col .brand {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}

.site-footer .brand-col .muted {
  color: var(--muted);
  max-width: 320px;
}

.site-footer .site-bottom {
  border-top: 1px solid #f4eee4;
  padding: 1.5rem 0 1rem;
  text-align: center;
  color: var(--muted);
}

.site-footer .social-link.instagram .social-icon {
  background: #b45309;
}

.site-footer .social-link.facebook .social-icon {
  background: #9a3412;
}

.site-footer .social-link.twitter .social-icon {
  background: #111827;
}

.site-footer .social-link.linkedin .social-icon {
  background: #92400e;
}

.site-footer .social-link:hover {
  transform: translateY(-1px);
  border-color: rgba(180, 83, 9, 0.3);
  box-shadow: 0 10px 20px rgba(180, 83, 9, 0.15);
}

.site-footer .social-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--primary);
  color: #fff;
}

.site-footer .social-links {
  display: grid;
  gap: 0.5rem;
}

.site-footer .social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  border: 1px solid #e7dfd3;
  background: #fbf7f1;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.site-footer .footer-col a {
  color: #5c4b3f;
  text-decoration: none;
  font-weight: 500;
}

.site-footer .footer-col a:hover {
  color: var(--primary-dark);
}

.site-footer .footer-socials {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.75rem;
}

.site-footer .footer-socials-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-footer .footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.45rem;
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid.two-col {
  grid-template-columns: repeat(2, 1fr);
}

.alert {
  padding: 0.9rem 1rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  border: 1px solid;
}

.alert-error {
  background: #fff1f2;
  color: #991b1b;
  border-color: #fecdd3;
}

.alert-success {
  background: #ecfdf3;
  color: #166534;
  border-color: #bbf7d0;
}

.alert-note {
  background: #fef9c3;
  color: #854d0e;
  border-color: #fde68a;
}

.auth-surface {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  max-width: 1480px;
  margin: 40px auto;
}

.universal-content {
  width: 100%;
  max-width: 1480px;
  margin: 40px auto 0 auto;
}

@media (max-width: 1520px) {
  .universal-content,
.auth-surface {
    max-width: calc(100% - 80px);
  }
}
@media (max-width: 900px) {
  .site-header .main-nav {
    display: none;
  }

  .grid.two-col {
    grid-template-columns: 1fr;
  }

  .site-footer .footer-inner {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .container {
    padding: 0 1rem;
  }

  .site-header .user-actions {
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}
:root {
  --main-font-family: "Inter", sans-serif;
  --main-font-family-melodrama: "Melodrama", serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
}

[x-cloak],
.hidden {
  display: none !important;
}

@font-face {
  font-family: "Melodrama";
  src: url("/assets/fonts/melodrama/Melodrama-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Melodrama";
  src: url("/assets/fonts/melodrama/Melodrama-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Melodrama";
  src: url("/assets/fonts/melodrama/Melodrama-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Melodrama";
  src: url("/assets/fonts/melodrama/Melodrama-Semibold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Melodrama";
  src: url("/assets/fonts/melodrama/Melodrama-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --max-page-width: 1500px ;
}

.global-label {
  font-family: var(--main-font-family);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 16px;
  position: relative;
  margin: 0 0 32px 5px;
  display: inline-block;
  z-index: 50;
}
.global-label::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #f5f0e6;
  transform: skewX(-12deg);
  z-index: -1;
  border-radius: 2px;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  left: -5px;
  top: -5px;
}
.global-label.invert::before {
  background: #fff;
}

.wrapper {
  max-width: var(--max-page-width);
  margin: 0 auto;
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.animate-fade {
  animation: fadeUp 0.7s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .animate-fade {
    animation: none;
  }
}
@media (max-width: 1500px) {
  .wrapper {
    padding: 0 50px;
  }
}
@media (max-width: 1024px) {
  .wrapper {
    padding: 0 32px;
  }
}
@media (max-width: 640px) {
  .wrapper {
    padding: 0 16px;
  }
}
.btn-group {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.btn-group a {
  min-width: 120px;
  padding: 15px;
}
.btn-group a:first-child {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group a:last-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left: 2px solid #bcd15a6b;
}

.btn-action {
  background-color: #454E17;
  min-width: 150px;
  height: 49px;
  padding: 15px 32px;
  border-radius: 32px;
  font-family: var(--main-font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  color: #FFFFFF;
  cursor: pointer;
  text-decoration: unset;
  text-align: center;
}
.btn-action:hover {
  background-color: #22270b;
}
.btn-action.negative {
  border: 2px solid red;
  background-color: rgba(255, 0, 0, 0.1);
  font-size: 16px;
  color: red;
}
.btn-action.negative:hover {
  background-color: red;
  color: #fff;
}

.btn-transparent {
  min-width: 200px;
  height: 64px;
  padding: 20px 34px;
  border-radius: 32px;
  cursor: pointer;
  text-decoration: unset;
  color: #fff;
  font-family: var(--main-font-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 22px;
  justify-content: center;
  text-align: center;
}
.btn-transparent.gray {
  background: #00000059;
}
.btn-transparent.gray:hover {
  background: rgba(0, 0, 0, 0.7);
}

.btn-bordered {
  min-width: 200px;
  height: 64px;
  padding: 20px 34px;
  border-radius: 32px;
  cursor: pointer;
  text-decoration: unset;
  color: #fff;
  font-family: var(--main-font-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 22px;
  display: inline-flex;
  background-color: #454E17;
  border: 3px solid #BCD15A;
}
.btn-bordered.has-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.btn-bordered:hover {
  background-color: #BCD15A;
  border: 3px solid #454E17;
  color: #454E17;
}
.btn-bordered:hover.has-icon path {
  fill: #454E17;
}

.new-link {
  font-family: var(--main-font-family);
  font-family: Inter;
  font-weight: 600;
  font-size: 20px;
  color: #454E17;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2px;
  text-decoration: unset;
  cursor: pointer;
}
.new-link:hover img {
  transform: rotate(90deg);
}

.btn-outline {
  color: var(--text);
  box-shadow: none;
  background-color: #fff;
  min-width: 120px;
  text-align: center;
  justify-content: center;
  border: 2px solid #171212;
}
.btn-outline.negative {
  border-color: red;
  background-color: rgba(255, 0, 0, 0.1);
  font-size: 16px;
  color: red;
}
.btn-outline.negative:hover {
  background-color: red;
  color: #fff;
}
.btn-outline:hover {
  background-color: #000;
  color: #fff;
}

.btn-link {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  color: var(--text);
}

@media (max-width: 1024px) {
  .btn-group {
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-start;
  }
  .btn-group a {
    min-width: 140px;
    padding: 12px 18px;
  }
  .btn-group a:first-child, .btn-group a:last-child {
    border-radius: 32px;
    border-left: 0;
  }

  .btn-action {
    min-width: 140px;
    height: 44px;
    padding: 12px 24px;
    font-size: 15px;
  }

  .btn-transparent,
.btn-bordered {
    min-width: 180px;
    height: 56px;
    padding: 16px 26px;
    font-size: 18px;
  }
}
@media (max-width: 640px) {
  .btn-group {
    width: 100%;
  }
  .btn-group a {
    width: 100%;
    min-width: unset;
    text-align: center;
  }

  .btn-action {
    width: 100%;
    min-width: unset;
    height: 42px;
    padding: 12px 18px;
    font-size: 14px;
    justify-content: center;
    text-align: center;
  }

  .btn-transparent,
.btn-bordered {
    width: 100%;
    min-width: unset;
    height: 52px;
    padding: 14px 20px;
    font-size: 16px;
  }
}
.global-hero-mini-content {
  max-width: var(--max-page-width);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 210;
  min-height: 80px;
  background: #BCD15A;
  border-bottom: 1px solid rgba(23, 18, 18, 0.2);
}
.site-header .header-content {
  max-width: var(--max-page-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem;
}
.site-header .brand {
  font-family: var(--main-font-family);
  font-weight: 700;
  font-size: clamp(1.35rem, 1rem + 1vw, 1.8rem);
  line-height: 1.1;
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
}
.site-header .brand strong span {
  color: #fff;
}
.site-header .brand img {
  display: none;
}
.site-header .main-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.site-header .main-nav a {
  color: var(--text);
  text-decoration: none;
  font-family: var(--main-font-family);
  font-size: 1rem;
  font-weight: 600;
}
.site-header .main-nav a:hover {
  color: #fff;
}
.site-header .user-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.site-header .nav-toggle {
  display: none;
}
.site-header .mobile-links,
.site-header .mobile-actions {
  display: grid;
  gap: 0.75rem;
}

.mobile-nav {
  height: calc(100vh - 81px) !important;
  top: 81px !important;
}

@media (max-width: 1550px) {
  .site-header .header-content {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (max-width: 1024px) {
  .site-header .header-content {
    height: 81px;
  }
  .site-header .main-nav,
.site-header .actions {
    display: none;
  }
  .site-header .nav-toggle {
    display: block;
  }
}
@media (max-width: 900px) {
  .site-header {
    min-height: 72px;
  }
  .site-header .main-nav,
.site-header .desktop-actions {
    display: none;
  }
}
@media (max-width: 640px) {
  .site-header {
    min-height: 64px;
  }
  .site-header .header-content {
    padding-left: 16px;
    padding-right: 16px;
  }
  .site-header .brand {
    font-size: 1.3rem;
  }
}
body.nav-open .site-header .nav-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
body.nav-open .site-header .nav-toggle span:nth-child(2) {
  opacity: 0;
}
body.nav-open .site-header .nav-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 70px 0 0 0;
  background-color: #171212;
  padding: 32px 24px;
  z-index: 200;
  overflow-y: auto;
  height: calc(100vh - 64px);
  top: 64px;
}
.mobile-nav nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mobile-nav nav a {
  font-family: var(--main-font-family);
  font-weight: 500;
  font-size: clamp(16px, 3vw, 20px);
  color: #fff;
  text-decoration: none;
}
.mobile-nav nav a.active {
  color: #BCD15A;
}
.mobile-nav nav hr {
  width: 100%;
  height: 1px;
  border: 0;
  background-color: #FFFFFF22;
  margin: 16px 0;
}

@media (max-width: 640px) {
  .mobile-nav {
    padding: 24px 16px;
  }
}
@media (max-width: 480px) {
  .mobile-nav {
    inset: 60px 0 0 0;
  }
}
.global-hero-mini {
  width: 100%;
  height: auto;
  position: relative;
}
.global-hero-mini > img {
  height: 400px;
  object-fit: cover;
  object-position: center;
  width: 100%;
  display: block;
  line-height: 1;
}
.global-hero-mini::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 25;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.global-hero-mini-content {
  position: absolute;
  left: calc((100% - 1500px) - ((100% - 1500px) / 2));
  top: 140px;
  z-index: 100;
  max-width: var(--max-page-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.global-hero-mini-content h2 span {
  display: block;
  line-height: 1;
}
.global-hero-mini-content h2 span:first-child {
  font-family: var(--main-font-family-melodrama);
  font-weight: 700;
  font-size: 92.11px;
  color: #BCD15A;
}
.global-hero-mini-content h2 span:last-child {
  font-family: var(--main-font-family);
  font-weight: 500;
  font-size: 90.17px;
  color: #fff;
}
.global-hero-mini-content-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

@media (max-width: 1600px) {
  .global-hero-mini-content {
    left: 50px;
  }
}
@media (max-width: 1600px) {
  .global-hero-mini-content h2 span:first-child {
    font-size: 71.11px;
  }

  .global-hero-mini-content h2 span:last-child {
    font-size: 70.17px;
  }
}
@media (max-width: 1280px) {
  .global-hero-mini-content h2 span:first-child {
    font-size: 51.11px;
  }

  .global-hero-mini-content h2 span:last-child {
    font-size: 50.17px;
  }
}
@media (max-width: 1060px) {
  .global-hero-mini-content {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}
/* ---------- Tablet (≤ 1024px) ---------- */
@media (max-width: 1024px) {
  .global-hero-mini > img {
    height: 380px;
  }
  .global-hero-mini-content {
    left: 40px;
    top: 100px;
    width: calc(100% - 80px);
    gap: 16px;
  }
  .global-hero-mini-content h2 span:first-child {
    font-size: 64px;
  }
  .global-hero-mini-content h2 span:last-child {
    font-size: 60px;
  }
}
/* ---------- Mobile (≤ 768px) ---------- */
@media (max-width: 768px) {
  .global-hero-mini > img {
    height: 300px;
  }
  .global-hero-mini::before {
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
  }
  .global-hero-mini-content {
    left: 32px;
    top: 72px;
    width: calc(100% - 32px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 12px;
  }
  .global-hero-mini-content h2 span:first-child {
    font-size: 40px;
  }
  .global-hero-mini-content h2 span:last-child {
    font-size: 36px;
  }
  .global-hero-mini-content-actions {
    flex-wrap: wrap;
    gap: 12px;
  }
}
@media (max-width: 640px) {
  .global-hero-mini-content {
    left: 16px;
    top: 62px;
    align-items: center;
  }

  .global-hero-mini-content-actions {
    flex-wrap: nowrap;
    gap: 16px;
    width: 100%;
  }
}
/* ---------- Small mobile (≤ 480px) ---------- */
@media (max-width: 480px) {
  .global-hero-mini-content-actions {
    flex-wrap: wrap;
  }

  .global-hero-mini-content h2 {
    margin-bottom: 0;
  }

  .global-hero-mini-content h2 span:first-child {
    font-size: 32px;
  }
  .global-hero-mini-content h2 span:last-child {
    font-size: 28px;
  }
}
.job-card {
  background: #fff;
  border-radius: 18px;
  padding: 1.5rem;
  display: grid;
  gap: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 3px solid #000000;
}

.job-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(15, 23, 42, 0.12);
}

.job-card h3 a {
  color: var(--text);
  text-decoration: none;
}

.job-card h3 a:hover {
  color: #454E17;
}

.job-card .meta {
  color: var(--muted);
  font-size: 0.9rem;
}

.job-card .job-card-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.job-card .job-card-tags .badge {
  background: rgba(20, 184, 166, 0.15);
  color: #0f766e;
}

.job-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.job-date {
  font-size: 0.85rem;
  color: var(--muted);
}

.job-card-body {
  display: grid;
  gap: 1.25rem;
}

.job-card-main {
  display: grid;
  gap: 0.35rem;
}
.job-card-main h3 {
  margin: 0;
}

.job-excerpt {
  margin: 0.5rem 0 0;
  color: var(--muted);
}

.job-card-info {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.job-card-info span {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.25rem;
  color: rgba(100, 116, 139, 0.75);
}

.job-card-info strong {
  font-size: 0.9rem;
  color: var(--text);
}

.job-card-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  background: #F7F3E7;
  border-radius: 14px;
  padding: 1rem;
  border: 1px solid rgba(226, 232, 240, 0.7);
}

.job-card-metrics span {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.job-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 20px 0 0 0;
}

.job-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.job-card-actions .btn-link {
  padding-left: 0;
  padding-right: 0;
}

.job-card-link {
  font-weight: 600;
  color: var(--primary-dark);
}

@media (max-width: 640px) {
  .job-card-top,
.job-card-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .job-card-info {
    grid-template-columns: 1fr;
  }

  .job-card-metrics {
    grid-template-columns: 1fr;
  }
}
footer {
  width: 100%;
  background-color: #171212;
  padding: 80px 100px;
}
footer .footer-heading {
  max-width: var(--max-page-width);
  margin: 0 auto 75px auto;
}
footer .footer-heading span {
  display: block;
  line-height: 1;
}
footer .footer-heading span:first-child {
  font-family: var(--main-font-family-melodrama);
  font-weight: 400;
  font-size: 54px;
  color: #BCD15A;
}
footer .footer-heading span:last-of-type {
  font-family: var(--main-font-family);
  font-weight: 400;
  font-size: 48px;
  color: #fff;
}
footer .footer-heading a {
  margin: 32px 0 0 0;
  height: 64px;
  width: max-content;
}
footer .footer-body {
  max-width: var(--max-page-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
footer .footer-body .brand-col .brand {
  text-decoration: none;
}
footer .footer-body .brand-col .brand strong {
  font-family: var(--main-font-family);
  font-weight: 500;
  font-size: 39.54px;
  line-height: 100%;
  color: #fff;
}
footer .footer-body .brand-col .copyright,
footer .footer-body .brand-col .muted {
  font-family: var(--main-font-family);
  font-weight: 400;
  font-size: 16px;
  color: #FFFFFF99;
  max-width: 420px;
}
footer .footer-body .footer-col strong {
  font-family: var(--main-font-family);
  font-weight: 600;
  font-size: 20px;
  color: #FFFFFF;
  display: block;
  margin: 0 0 20px 0;
}
footer .footer-body .footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer .footer-body .footer-col a {
  font-family: var(--main-font-family);
  font-weight: 400;
  font-size: 16px;
  color: #FFFFFF99;
  text-decoration: unset;
  padding: 7px 0;
  display: block;
}
footer .footer-body .footer-col a:hover {
  color: #fff;
}

/* =========================
   TABLET ≤ 1024px
========================= */
@media (max-width: 1024px) {
  footer {
    padding: 64px 48px;
  }
  footer .footer-heading {
    margin-bottom: 56px;
  }
  footer .footer-heading span:first-child {
    font-size: 44px;
  }
  footer .footer-heading span:last-of-type {
    font-size: 40px;
  }
  footer .footer-body {
    grid-template-columns: 1fr 1fr;
    gap: 48px 32px;
  }
}
/* =========================
   MOBILE ≤ 640px
========================= */
@media (max-width: 640px) {
  footer {
    padding: 48px 24px;
  }
  footer .footer-heading {
    margin-bottom: 40px;
  }
  footer .footer-heading span:first-child {
    font-size: 34px;
  }
  footer .footer-heading span:last-of-type {
    font-size: 30px;
  }
  footer .footer-heading a {
    width: 100%;
    height: 56px;
  }
  footer .footer-body {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  footer .footer-body .brand-col .brand strong {
    font-size: 32px;
  }
  footer .footer-body .brand-col .copyright,
footer .footer-body .brand-col .muted {
    font-size: 14px;
  }
  footer .footer-body .footer-col strong {
    font-size: 18px;
    margin-bottom: 16px;
  }
  footer .footer-body .footer-col a {
    font-size: 15px;
    padding: 6px 0;
  }
}
.business-hero {
  padding: 4rem 0 3rem;
  background: #f7f2ea;
}

.business-hero h1 {
  font-size: 2.6rem;
  margin: 0.75rem 0 1rem;
}

.business-hero-stats {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.business-hero-stats.grid-3 {
  margin-top: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.business-hero-actions {
  margin-top: 2rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  width: 100%;
  justify-content: flex-end;
}

.stat-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: 0 12px 30px rgba(23, 18, 18, 0.08);
  border: 2px solid #171212;
}

.stat-card h3 {
  margin: 0.35rem 0 0;
  font-size: 1.7rem;
}

.stat-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.7rem;
  color: var(--muted);
  margin: 0;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.business-card {
  background: #fff;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 12px 30px rgba(23, 18, 18, 0.08);
  border: 2px solid #171212;
  display: grid;
  gap: 1.25rem;
}

.business-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(15, 23, 42, 0.12);
}

.business-card-header {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.business-card-header img,
.business-avatar {
  width: 82px;
  height: 82px;
  border-radius: 16px;
  object-fit: cover;
  background: rgba(180, 83, 9, 0.12);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-dark);
}

.business-card-header a {
  display: block;
}
.business-card-header a:hover {
  text-decoration: unset;
}

.business-card-header img {
  background: #bcd15a;
  border: 2px solid #171212;
  padding: 4px;
  color: #bcd15a;
}

.business-card-header h3 {
  margin: 0.35rem 0 0.25rem;
}

.business-card-body {
  display: grid;
  gap: 0.75rem;
}

.business-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.business-meta span {
  background: #bcd15a;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  border: 1px solid #bcd15a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text);
}

.business-card-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
}
.business-card-actions .btn-action {
  width: 100%;
  text-align: center;
  justify-content: center;
}

.business-highlights {
  padding-top: 1rem;
}

.business-highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.highlight-card {
  background: #fff;
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 12px 30px rgba(23, 18, 18, 0.08);
  border: 2px solid #171212;
  display: grid;
  gap: 0.5rem;
}

.highlight-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.7rem;
  color: var(--muted);
  margin: 0;
}

.highlight-card h3 {
  margin: 0;
}

.business-profile-hero {
  padding: 3.5rem 0 2.5rem;
  background: #f7f2ea;
}

.business-profile-hero h1 {
  font-size: 2.4rem;
  margin: 0.75rem 0 1rem;
}

.profile-layout {
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.profile-card {
  border-radius: 18px;
  position: sticky;
  top: 110px;
  display: grid;
  gap: 1.25rem;
  padding: 1rem 1.25rem;
  border-radius: 16px;
  background: var(--surface-muted);
  border: 2px solid #171212;
  box-shadow: 0 12px 30px rgba(23, 18, 18, 0.08);
}

.profile-card-top {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.profile-card-top img,
.profile-avatar {
  width: 82px;
  height: 82px;
  border-radius: 16px;
  object-fit: cover;
  background: rgba(180, 83, 9, 0.12);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-dark);
}

.profile-card-top img {
  background: #bcd15a;
  border: 2px solid #171212;
  padding: 4px;
  color: #bcd15a;
}

.profile-card-top a:hover {
  text-decoration: unset;
}

.profile-contact {
  display: grid;
  gap: 0.4rem;
}

.profile-contact a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.profile-stats {
  display: grid;
  gap: 0.75rem;
}

.profile-stat {
  background: #bcd15a;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  border: 1px solid #bcd15a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.profile-stat strong {
  font-size: 1rem;
  color: var(--text);
}

.profile-actions {
  display: grid;
  gap: 0.75rem;
}

.profile-card .badge {
  background: rgba(180, 83, 9, 0.12);
  color: var(--primary-dark);
}

.profile-card h3 {
  margin-bottom: 0;
}

.profile-main {
  display: grid;
  gap: 1.5rem;
}

.profile-main .card {
  border: 2px solid #171212;
  box-shadow: 0 12px 30px rgba(23, 18, 18, 0.08);
}

.profile-main .card h3 {
  margin-bottom: 0.5rem;
}

.list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.list li {
  background: var(--surface-muted);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(231, 223, 211, 0.7);
}

.job-list {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
  margin: 30px 0 0 0;
}
.job-list .job-card-footer {
  padding: 0;
}
.job-list .btn-action {
  width: 100%;
  text-align: center;
  justify-content: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.job-card {
  border: 2px solid #000000;
}

.feature-card {
  background: #fff;
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.pricing-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
  display: grid;
  gap: 1rem;
}

.pricing-card.highlight {
  border: 2px solid rgba(180, 83, 9, 0.4);
}

.past-job {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

  .business-highlights-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid,
.pricing-grid {
    grid-template-columns: 1fr;
  }

  .profile-layout {
    grid-template-columns: 1fr;
  }

  .profile-card {
    position: static;
  }

  .job-card {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 640px) {
  .business-hero-stats {
    grid-template-columns: 1fr;
  }

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

/*# sourceMappingURL=business.css.map */
