:root {
  --bg: #f7f4ee;
  --paper: #fffdf9;
  --white: #ffffff;
  --text: #2f302c;
  --muted: #74766f;
  --green: #6f7b63;
  --green-dark: #536049;
  --bamboo: #c8ad86;
  --line: #e5ddd1;
  --shadow: 0 28px 80px rgba(47, 48, 44, 0.10);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Poppins", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

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

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

/* HEADER */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  height: 78px;
  padding: 0 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  color: #fff;
  transition: 0.35s ease;
}

.header.scrolled{

background:rgba(247,244,238,.82);

backdrop-filter:blur(30px);

-webkit-backdrop-filter:blur(30px);

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

box-shadow:0 10px 35px rgba(0,0,0,.05);

}

.logo img {
  height: 54px;
  object-fit: contain;
}

.nav {
  display: flex;
  gap: 34px;
  align-items: center;
}

.nav a {
  position: relative;
  font-size: 13px;
  font-weight: 500;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: 0.25s ease;
}

.nav a:hover::after {
  width: 100%;
}

.header-btn,
.btn {
  min-height: 48px;
  padding: 0 26px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  transition: 0.3s ease;
}

.header-btn {
  background: rgba(111, 123, 99, 0.92);
  color: #fff;
}

.header-btn:hover,
.btn.primary{

background:linear-gradient(135deg,#6f7b63,#59654f);

box-shadow:0 15px 35px rgba(83,96,73,.28);

}

.btn.primary:hover{

transform:translateY(-3px);

box-shadow:0 22px 45px rgba(83,96,73,.35);

}

.btn.white {
  background: var(--white);
  color: var(--green-dark);
}

.btn.white:hover {
  transform: translateY(-2px);
}

/* MOBILE MENU BUTTON */
.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-btn span {
  width: 24px;
  height: 2px;
  background: currentColor;
  display: block;
  margin: 7px auto;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px 7% 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(
        90deg,
        rgba(42,37,29,.72) 0%,
        rgba(42,37,29,.45) 38%,
        rgba(42,37,29,.12) 100%
    ),
    url("/assets/img/hero/hero-bg.jpg")
    center center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 40%, rgba(255,255,255,0.08), transparent 30%),
    radial-gradient(circle at 85% 15%, rgba(111,123,99,0.20), transparent 34%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.small-title,
.section-label {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 11px;
  letter-spacing: 4px;
  font-weight: 600;
  color: var(--green);
}

.hero .small-title {
  color: rgba(255,255,255,0.78);
}

.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(58px, 7vw, 96px);
  line-height: 0.96;
  font-weight: 600;
  letter-spacing: -1.5px;
  margin-bottom: 26px;
}

.hero p {
  max-width: 470px;
  font-size: 16px;
  line-height: 1.9;
  color: rgba(255,255,255,0.86);
  margin-bottom: 34px;
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 78px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: rgba(255,255,255,0.76);
}

.scroll-hint span {
  width: 20px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.75);
  border-radius: 999px;
  position: relative;
}

.scroll-hint span::after {
  content: "";
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
}

/* STATS */
.stats {
  padding: 56px 7%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.stats div {
  text-align: center;
  padding: 0 34px;
  border-right: 1px solid var(--line);
}

.stats div:last-child {
  border-right: 0;
}

.stats span {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  line-height: 1;
  margin-bottom: 10px;
}

.stats strong {
  display: block;
  margin-bottom: 9px;
  font-size: 14px;
}

.stats p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

/* SECTION */
.section {
  padding: 90px 7%;
}

.section-top {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 34px;
}

.section-top h2,
.studio-content h2,
.cta h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1;
  font-weight: 600;
}

.soft-link {
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  color: var(--text);
  background: rgba(255,255,255,0.55);
	transition:.30s ease;
}

.soft-link:hover{

background:#fff;

transform:translateY(-2px);

box-shadow:0 12px 30px rgba(0,0,0,.08);

}

/* SERVICES */
.services-section {
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 18px;
}

.service-card {
  position: relative;
  height: 360px;
  overflow: hidden;
  border-radius: 26px;
  background: #ddd;
  box-shadow: 0 18px 46px rgba(47,48,44,0.08);
}

.service-card:first-child {
  grid-row: span 2;
  height: 738px;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.45s ease;
}

.service-card:hover img {
  transform: scale(1.06);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(31,32,29,0.72), rgba(31,32,29,0.05));
}

.service-card div {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  color: #fff;
}

.service-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
}

/* STUDIO */
.studio {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 70px;
  padding: 70px 7%;
  background: var(--paper);
}

.studio-image {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.studio-image img {
  width: 100%;
  height: 580px;
  object-fit: cover;
}

.studio-content p {
  margin: 26px 0 28px;
  color: var(--muted);
  line-height: 1.9;
  max-width: 620px;
}

.studio-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 30px;
}

.studio-features div {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.studio-features strong {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
}

.studio-features span {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 16px 42px rgba(47,48,44,0.08);
}

/* CTA */
.cta {
  margin: 40px 7% 90px;
  padding: 58px 64px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(83,96,73,0.98), rgba(111,123,99,0.90)),
    linear-gradient(45deg, transparent, rgba(255,255,255,0.12));
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 34px;
	overflow:hidden;
position:relative;
}

.cta h2 {
  font-size: clamp(36px, 4vw, 54px);
}

.cta p {
  margin-top: 14px;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
}

/* FOOTER */
.footer {
  padding: 70px 7%;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.1fr;
  gap: 50px;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.footer-logo {
  height: 58px;
  width: auto;
  margin-bottom: 20px;
}

.footer h4 {
  margin-bottom: 18px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer p,
.footer a {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

/* RESPONSIVE */
@media (max-width: 1180px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .header {
    height: 72px;
    padding: 0 22px;
  }

  .logo img {
    height: 44px;
  }

  .header-btn {
    display: none;
  }

  .menu-btn {
    display: block;
    color: inherit;
  }

  .nav {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    padding: 28px 22px;
    background: rgba(247,244,238,0.98);
    color: var(--text);
    border-bottom: 1px solid var(--line);
  }

  .nav.active {
    display: flex;
  }

  .nav a {
    font-size: 18px;
  }

  .hero {
    min-height: 92vh;
    padding: 110px 22px 70px;
    background-position: center;
  }

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

  .hero p {
    font-size: 15px;
  }

  .stats {
    grid-template-columns: 1fr 1fr;
    padding: 36px 22px;
    gap: 24px;
  }

  .stats div {
    border-right: 0;
    padding: 0;
  }

  .section,
  .studio {
    padding: 68px 22px;
  }

  .section-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .services-grid {
    padding: 0;
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card:first-child {
    height: 320px;
    grid-row: auto;
  }

  .studio-image img {
    height: 390px;
  }

  .studio-features {
    grid-template-columns: 1fr;
  }

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

  .gallery-grid img {
    height: 190px;
  }

  .cta {
    margin: 28px 22px 70px;
    padding: 42px 24px;
    flex-direction: column;
    align-items: flex-start;
  }

  .cta .btn {
    width: 100%;
  }

  .footer {
    grid-template-columns: 1fr;
    padding: 58px 22px;
    gap: 34px;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 48px;
  }

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

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

  .gallery-grid img {
    height: 260px;
  }
}

.hero-content{
    animation: heroFade .9s ease;
}

.hero h1{
    text-shadow:0 8px 40px rgba(0,0,0,.25);
}

.hero p{
    text-shadow:0 3px 15px rgba(0,0,0,.18);
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:
    linear-gradient(180deg,
    rgba(255,255,255,.04),
    rgba(0,0,0,.18));
    pointer-events:none;
}

@keyframes heroFade{

from{
opacity:0;
transform:translateY(35px);
}

to{
opacity:1;
transform:none;
}

}
/* PREMIUM SERVICE CARDS UPDATE */

.service-card {
  isolation: isolate;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 20px;
  z-index: 2;
  opacity: 0;
  transition: .35s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card::after {
  background:
    linear-gradient(
      to top,
      rgba(31,32,29,.82) 0%,
      rgba(31,32,29,.48) 38%,
      rgba(31,32,29,.05) 100%
    );
}

.service-card div {
  bottom: 28px;
  left: 28px;
  right: 28px;
  transition: .35s ease;
}

.service-card:hover div {
  transform: translateY(-8px);
}

.service-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 12px;
}

.service-card p {
  max-width: 320px;
  font-size: 13px;
  line-height: 1.75;
}

.service-card:first-child h3 {
  font-size: 42px;
}

.service-card:first-child p {
  font-size: 14px;
}
/* PREMIUM STATS UPDATE */

.stats {
  position: relative;
  margin: -34px 7% 0;
  padding: 34px 38px;
  border-radius: 26px;
  z-index: 5;
  background: rgba(255,253,249,.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 24px 70px rgba(47,48,44,.10);
  border: 1px solid rgba(229,221,209,.82);
}

.stats div {
  padding: 8px 30px;
}

.stats span {
  color: var(--green-dark);
  font-size: 38px;
}

.stats strong {
  font-size: 13px;
  letter-spacing: .5px;
}

.stats p {
  max-width: 210px;
  margin: 0 auto;
}

/* PREMIUM STUDIO UPDATE */

.studio {
  position: relative;
  overflow: hidden;
}

.studio::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -160px;
  top: -120px;
  background: radial-gradient(circle, rgba(200,173,134,.24), transparent 68%);
  pointer-events: none;
}

.studio-image {
  position: relative;
}

.studio-image::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 22px;
  pointer-events: none;
}

.studio-content {
  position: relative;
  z-index: 2;
}

.studio-content h2 {
  max-width: 660px;
}

.studio-content p {
  font-size: 15px;
}

.studio-features div {
  background: rgba(255,255,255,.54);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  border-top: 0;
}

.studio-features strong {
  color: var(--green-dark);
  font-size: 14px;
}

.studio-features span {
  display: block;
  margin-top: 8px;
}

/* PREMIUM GALLERY */

.gallery-grid{
    grid-auto-rows:260px;
}

.gallery-grid img{

    transition:.45s ease;

    cursor:pointer;

}

.gallery-grid img:nth-child(1){

    grid-column:span 2;
    grid-row:span 2;
    height:100%;

}

.gallery-grid img:hover{

    transform:scale(1.035);

    box-shadow:0 28px 70px rgba(47,48,44,.18);

}

.gallery-grid img{

    filter:saturate(.95);

}

.gallery-grid img:hover{

    filter:saturate(1.08);

}

@media (max-width:768px){

.gallery-grid{

grid-template-columns:1fr 1fr;

grid-auto-rows:180px;

}

.gallery-grid img:nth-child(1){

grid-column:span 2;
grid-row:span 1;

}

}
.cta::before{

content:"";

position:absolute;

width:500px;

height:500px;

right:-220px;

top:-220px;

background:radial-gradient(circle,rgba(255,255,255,.12),transparent 70%);

pointer-events:none;

}

.cta::after{

content:"";

position:absolute;

left:-120px;

bottom:-120px;

width:280px;

height:280px;

border:1px solid rgba(255,255,255,.08);

border-radius:50%;

}

/* 3 SERVICE LAYOUT */

.services-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.services-grid-3 .service-card,
.services-grid-3 .service-card:first-child {
  height: 470px;
  grid-row: auto;
}

.services-grid-3 .service-card:first-child h3 {
  font-size: 34px;
}

@media (max-width: 768px) {
  .services-grid-3 {
    grid-template-columns: 1fr;
  }

  .services-grid-3 .service-card,
  .services-grid-3 .service-card:first-child {
    height: 320px;
  }
}

/* INSTAGRAM GALLERY */

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.instagram-item {
  position: relative;
  height: 260px;
  overflow: hidden;
  border-radius: 18px;
  display: block;
  box-shadow: 0 16px 42px rgba(47,48,44,.08);
  background: var(--paper);
}

.instagram-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
  height: 536px;
}

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .45s ease;
}

.instagram-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(31,32,29,.58), rgba(31,32,29,.02));
  opacity: 0;
  transition: .35s ease;
}

.instagram-item span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(8px);
  transition: .35s ease;
}

.instagram-item:hover img {
  transform: scale(1.06);
}

.instagram-item:hover::after,
.instagram-item:hover span {
  opacity: 1;
  transform: translateY(0);
}

.gallery-loading {
  grid-column: 1 / -1;
  padding: 40px;
  text-align: center;
  color: var(--muted);
  background: var(--paper);
  border-radius: 20px;
}

@media (max-width: 768px) {
  .instagram-grid {
    grid-template-columns: 1fr 1fr;
  }

  .instagram-item,
  .instagram-item:first-child {
    height: 190px;
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 420px) {
  .instagram-grid {
    grid-template-columns: 1fr;
  }

  .instagram-item,
  .instagram-item:first-child {
    height: 280px;
  }
}

/* STATS FINAL TOUCH */

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

.stats div {
  position: relative;
}

.stats div::after {
  content: "";
  position: absolute;
  right: 0;
  top: 18%;
  width: 1px;
  height: 64%;
  background: linear-gradient(to bottom, transparent, rgba(200,173,134,.55), transparent);
}

.stats div:last-child::after {
  display: none;
}

.stats span {
  font-size: 44px;
  letter-spacing: -1px;
}

.stats strong {
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: 11px;
  color: var(--text);
}

.stats p {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .stats {
    transform: none;
  }

  .stats div::after {
    display: none;
  }

  .stats span {
    font-size: 38px;
  }
}

.scroll-hint {
  z-index: 6;
}

@media (max-width: 768px) {
  .scroll-hint {
    bottom: 42px;
  }
}

/* PREMIUM SERVICE CARD */

.service-card{

cursor:pointer;

transition:.45s ease;

}

.service-card:hover{

transform:translateY(-12px);

box-shadow:0 35px 70px rgba(0,0,0,.18);

}

.service-content{

display:flex;

flex-direction:column;

height:100%;

justify-content:flex-end;

}

.service-number{
opacity:1;
    transform:translateY(-2px);
	opacity:.35;
    transition:.3s;
	
display:inline-block;

margin-bottom:14px;

font-size:13px;

letter-spacing:3px;



color:#fff;

}

.service-link{

display:inline-flex;

align-items:center;

	gap:6px;
    transition:.3s;
margin-top:20px;

width:max-content;

padding-bottom:3px;

font-size:13px;

font-weight:600;

border-bottom:1px solid rgba(255,255,255,.45);

transition:.35s ease;


    
}

.service-card:hover .service-link{

letter-spacing:1px;

border-color:#fff;
gap:12px;
    color:#7d8d74;
}

.service-card:hover h3{

	    color:#8c947d;

transform:translateX(6px);

}

.service-card h3{


	    transition:.3s;


}

.service-card:hover p{

opacity:1;

}

.service-card p{

opacity:.88;

transition:.35s ease;

}

.service-card:hover img{

transform:scale(1.09);

}

/* 4 SERVICE */

.services-grid-4{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:20px;

}

.services-grid-4 .service-card{

height:430px;

}

@media(max-width:1100px){

.services-grid-4{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.services-grid-4{

grid-template-columns:1fr;

}

.services-grid-4 .service-card{

height:320px;

}

}
/* 6 SERVICE LAYOUT */

.services-grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.services-grid-6 .service-card,
.services-grid-6 .service-card:first-child {
  height: 430px;
  grid-row: auto;
}

.services-grid-6 .service-card:first-child h3 {
  font-size: 30px;
}

@media (max-width: 1024px) {
  .services-grid-6 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid-6 {
    grid-template-columns: 1fr;
  }

  .services-grid-6 .service-card,
  .services-grid-6 .service-card:first-child {
    height: 320px;
  }
}

/* PREMIUM FOOTER UPDATE */

.cta {
  margin-top: 70px;
	margin-bottom:0;
}

.cta-label {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 11px;
  letter-spacing: 4px;
  font-weight: 600;
  color: rgba(255,255,255,.72);
}

.premium-footer {
  position: relative;
  padding-top: 82px;
  padding-bottom: 64px;
	margin-top:50px;
    padding-top:95px;
    border-radius:40px 40px 0 0;
}

.footer-brand p {
  max-width: 420px;
}

.footer-socials{

display:flex;

flex-wrap:wrap;

gap:14px;

margin-top:28px;

}

.footer-socials a{

display:inline-flex;

align-items:center;

gap:10px;

padding:13px 18px;

border-radius:50px;

background:#fff;

border:1px solid rgba(0,0,0,.06);

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

font-size:13px;

font-weight:500;

color:var(--text);

transition:.35s ease;

}

.footer-socials a span{

font-size:17px;

transition:.35s ease;

}

.footer-socials a:hover{

background:var(--green);

color:#fff;

transform:translateY(-4px);

box-shadow:0 18px 35px rgba(83,96,73,.25);

}

.footer-socials a:hover span{

transform:scale(1.15);

}

.premium-footer h4 {
  color: var(--text);
}

.premium-footer a {
  transition: .25s ease;
}

.premium-footer a:hover {
  color: var(--green-dark);
  transform: translateX(4px);
}

.premium-footer p strong {
  color: var(--text);
  font-size: 12px;
  letter-spacing: .6px;
}

.footer-bottom {
  padding: 22px 7%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background: var(--paper);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.footer-bottom div {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-bottom a {
  color: var(--muted);
  transition: .25s ease;
}

.footer-bottom a:hover {
  color: var(--green-dark);
}

@media (max-width: 768px) {
  .premium-footer {
    padding-top: 58px;
    padding-bottom: 48px;
  }

  .footer-socials {
    margin-top: 22px;
  }

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

  .footer-bottom div {
    gap: 14px;
  }
}
.footer{
    position:relative;
    overflow:hidden;
    background:
        linear-gradient(rgba(250,247,242,.97),rgba(250,247,242,.97)),
        url("/assets/img/bg/footer-bg.png") center/cover no-repeat;
}

.premium-footer {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(255,253,249,.86), rgba(255,253,249,.90)),
    url("/assets/img/bg/footer-bg.png") center center / cover no-repeat;
}

.premium-footer > * {
  position: relative;
  z-index: 2;
}

/* FOOTER BG VISIBLE FIX */

.premium-footer {
  background:
    linear-gradient(rgba(255,253,249,.58), rgba(255,253,249,.66)),
    url("/assets/img/bg/footer-bg.png") left bottom / cover no-repeat !important;
}

.footer-bottom {
  background:
    linear-gradient(rgba(255,253,249,.78), rgba(255,253,249,.86)),
    url("/assets/img/bg/footer-bg.png") center bottom / cover no-repeat !important;
}

/* FOOTER SOCIAL MINIMAL FIX */

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}

.footer-socials a {
  width: auto;
  min-height: auto;
  padding: 0 0 6px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  border-bottom: 1px solid rgba(83,96,73,.35);
  transition: .25s ease;
}

.footer-socials a:hover {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: none;
}

/* ================================
   HERO PREMIUM ANIMATION
================================ */

.hero-premium {
  position: relative;
  overflow: hidden;
}

.hero-premium::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 20% 30%, rgba(188, 166, 126, 0.22), transparent 34%),
    radial-gradient(circle at 80% 20%, rgba(142, 157, 129, 0.18), transparent 36%);
  animation: heroAura 14s ease-in-out infinite alternate;
  z-index: 1;
  pointer-events: none;
}

.hero-premium::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(255, 255, 255, 0.08) 42%,
    transparent 58%
  );
  animation: heroLight 8s ease-in-out infinite;
  z-index: 2;
  pointer-events: none;
}

.hero-premium .hero-overlay {
  z-index: 3;
}

.hero-premium .hero-content,
.hero-premium .scroll-hint {
  position: relative;
  z-index: 4;
}

.hero-animate .small-title,
.hero-animate h1,
.hero-animate p,
.hero-animate .btn {
  opacity: 0;
  transform: translateY(22px);
  animation: heroTextReveal 0.9s ease forwards;
}

.hero-animate .small-title {
  animation-delay: 0.1s;
}

.hero-animate h1 {
  animation-delay: 0.25s;
}

.hero-animate p {
  animation-delay: 0.42s;
}

.hero-animate .btn {
  animation-delay: 0.58s;
}

.hero-premium .btn.primary {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}

.hero-premium .btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(40, 35, 28, 0.22);
}

.hero-premium .scroll-hint {
  animation: scrollHintFloat 2.6s ease-in-out infinite;
}

@keyframes heroTextReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroAura {
  from {
    transform: translate3d(-2%, -1%, 0) scale(1);
  }

  to {
    transform: translate3d(2%, 1.5%, 0) scale(1.05);
  }
}

@keyframes heroLight {
  0%, 100% {
    opacity: 0.35;
  }

  50% {
    opacity: 0.75;
  }
}

@keyframes scrollHintFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-premium::before,
  .hero-premium::after,
  .hero-animate .small-title,
  .hero-animate h1,
  .hero-animate p,
  .hero-animate .btn,
  .hero-premium .scroll-hint {
    animation: none;
  }

  .hero-animate .small-title,
  .hero-animate h1,
  .hero-animate p,
  .hero-animate .btn {
    opacity: 1;
    transform: none;
  }
}
/* ================================
   PREMIUM HERO UPGRADE
================================ */

.hero-premium {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero-premium::before {
  content: "";
  position: absolute;
  inset: -12%;
  background:
    radial-gradient(circle at 18% 34%, rgba(196, 178, 143, 0.24), transparent 32%),
    radial-gradient(circle at 82% 18%, rgba(147, 164, 134, 0.20), transparent 36%);
  filter: blur(10px);
  animation: heroAuraMove 16s ease-in-out infinite alternate;
  z-index: 1;
  pointer-events: none;
}

.hero-premium::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(255, 255, 255, 0.12) 42%,
    transparent 58%
  );
  opacity: 0.5;
  animation: heroLightSweep 9s ease-in-out infinite;
  z-index: 2;
  pointer-events: none;
}

.hero-premium .hero-overlay {
  z-index: 3;
}

.hero-premium .hero-content,
.hero-premium .scroll-hint {
  position: relative;
  z-index: 4;
}

.hero-animate .small-title,
.hero-animate h1,
.hero-animate p,
.hero-animate .btn,
.hero-animate .hero-trust {
  opacity: 0;
  transform: translateY(24px);
  animation: heroRevealUp 0.9s ease forwards;
}

.hero-animate .small-title {
  animation-delay: 0.08s;
}

.hero-animate h1 {
  animation-delay: 0.22s;
}

.hero-animate p {
  animation-delay: 0.38s;
}

.hero-animate .btn {
  animation-delay: 0.54s;
}

.hero-animate .hero-trust {
  animation-delay: 0.72s;
}

.hero-trust {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-trust div {
  min-width: 128px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-trust strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  line-height: 1;
  color: #fff;
  margin-bottom: 6px;
}

.hero-trust span {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
}

.hero-premium .btn.primary {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-premium .btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(30, 26, 22, 0.26);
}

.hero-premium .scroll-hint {
  animation: heroScrollFloat 2.8s ease-in-out infinite;
}

@keyframes heroRevealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroAuraMove {
  from {
    transform: translate3d(-2%, -1%, 0) scale(1);
  }

  to {
    transform: translate3d(2%, 1.5%, 0) scale(1.05);
  }
}

@keyframes heroLightSweep {
  0%, 100% {
    transform: translateX(-8%);
    opacity: 0.28;
  }

  50% {
    transform: translateX(8%);
    opacity: 0.62;
  }
}

@keyframes heroScrollFloat {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

@media (max-width: 768px) {
  .hero-trust {
    gap: 10px;
    margin-top: 24px;
  }

  .hero-trust div {
    min-width: calc(50% - 5px);
    padding: 12px 14px;
  }

  .hero-trust strong {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .hero-trust div {
    min-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-premium::before,
  .hero-premium::after,
  .hero-animate .small-title,
  .hero-animate h1,
  .hero-animate p,
  .hero-animate .btn,
  .hero-animate .hero-trust,
  .hero-premium .scroll-hint {
    animation: none;
  }

  .hero-animate .small-title,
  .hero-animate h1,
  .hero-animate p,
  .hero-animate .btn,
  .hero-animate .hero-trust {
    opacity: 1;
    transform: none;
  }
}

/* Scroll hint position fix */

.hero-premium .scroll-hint {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: 70px;
  top: auto;
  transform: translateX(-50%);
  z-index: 5;
  text-align: center;
}

/* ================================
   PREMIUM NAVBAR
================================ */

.header {
  animation: navReveal 0.7s ease forwards;
  transition:
    background 0.3s ease,
    backdrop-filter 0.3s ease,
    box-shadow 0.3s ease,
    padding 0.3s ease;
}

.header.scrolled {
  background: rgba(244, 239, 230, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 14px 34px rgba(60, 52, 42, 0.12);
}

.nav a {
  position: relative;
  transition: color 0.25s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.25s ease;
}

.nav a:hover::after {
  width: 100%;
}

.header-btn {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}

.header-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(40, 35, 28, 0.18);
}

@keyframes navReveal {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================================
   PREMIUM SERVICE CARDS
================================ */

.service-card {
    position: relative;
    overflow: hidden;
    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.service-card img{
    transition:
        transform .6s ease,
        filter .6s ease;
}

.service-card:hover{
    transform: translateY(-10px);
    box-shadow:0 24px 60px rgba(0,0,0,.14);
}

.service-card:hover img{
    transform:scale(1.08);
}

.service-content{
    transition:.35s;
}

.service-card::before{
    content:"";
    position:absolute;
    top:-120%;
    left:-60%;
    width:40%;
    height:300%;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.28),
        transparent
    );
    transform:rotate(20deg);
    transition:.8s;
    pointer-events:none;
}

.service-card:hover::before{
    left:150%;
}

/* ================================
   SERVICE DETAIL PAGE
================================ */

.service-hero {
  min-height: 72vh;
  padding: 160px 7% 90px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(65, 56, 45, 0.48), rgba(65, 56, 45, 0.52)),
    url("https://images.unsplash.com/photo-1632345031435-8727f6897d53?auto=format&fit=crop&w=1600&q=85");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.service-hero-content {
  max-width: 660px;
}

.service-hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(58px, 8vw, 118px);
  line-height: 0.95;
  margin: 20px 0 24px;
}

.service-hero p {
  max-width: 560px;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 34px;
}

@media (max-width: 768px) {
  .service-hero {
    min-height: 68vh;
    padding: 140px 24px 70px;
  }

  .service-hero h1 {
    font-size: 64px;
  }
}

/*==================================
SERVICE DETAIL CONTENT
==================================*/

.service-content-section,
.service-info{

    padding:100px 8%;

    background:#fff;

}

.service-container{

    max-width:1250px;

    margin:auto;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.service-container.reverse{

    direction:rtl;

}

.service-container.reverse>*{

    direction:ltr;

}

.service-text h2{

    margin:18px 0 28px;

    font-size:46px;

    line-height:1.15;

}

.service-text p{

    margin-bottom:22px;

    color:#5c5c5c;

    line-height:1.9;

    font-size:16px;

}

.service-image img{

    width:100%;

    display:block;

    border-radius:24px;

    box-shadow:0 20px 60px rgba(0,0,0,.08);

}

.service-list{

    margin:30px 0;

    padding:0;

    list-style:none;

}

.service-list li{

    position:relative;

    padding-left:34px;

    margin-bottom:18px;

    font-size:16px;

}

.service-list li::before{

    content:"✓";

    position:absolute;

    left:0;

    color:#8a9b7a;

    font-weight:700;

}

@media(max-width:900px){

    .service-container{

        grid-template-columns:1fr;

        gap:45px;

    }

    .service-container.reverse{

        direction:ltr;

    }

    .service-text h2{

        font-size:36px;

    }

}

/* SERVICE BENEFITS */

.service-benefits {
  padding: 100px 8%;
  background: #f7f1e8;
}

.section-top.center {
  max-width: 720px;
  margin: 0 auto 55px;
  text-align: center;
}

.section-top.center p {
  margin-top: 18px;
  color: #666;
  line-height: 1.8;
}

.benefits-grid {
  max-width: 1150px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.benefits-grid div {
  padding: 34px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(70, 60, 45, 0.07);
}

.benefits-grid strong {
  display: block;
  margin-bottom: 14px;
  font-size: 20px;
  color: #343026;
}

.benefits-grid p {
  color: #666;
  line-height: 1.8;
}

@media (max-width: 900px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}
/* Service benefits layout fix */

.service-benefits-head {
  max-width: 760px;
  margin: 0 auto 55px;
  text-align: center;
}

.service-benefits-head .section-label {
  display: block;
  margin-bottom: 16px;
}

.service-benefits-head h2 {
  max-width: 620px;
  margin: 0 auto;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.95;
}

.service-benefits-head p {
  max-width: 560px;
  margin: 24px auto 0;
  color: #666;
  line-height: 1.8;
}

.service-benefits .section-top.center {
  display: block;
}

/* ================================
   SERVICE DETAIL TEMPLATE V1
================================ */

.service-hero-protez {
  background:
    linear-gradient(rgba(54, 48, 38, 0.48), rgba(54, 48, 38, 0.58)),
    url("/assets/img/services/protez-tirnak/hero.jpg");
  background-size: cover;
  background-position: center;
}

.service-editorial {
  padding: 110px 8%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: #fff;
}

.service-editorial-reverse {
  background: #f7f1e8;
}

.service-editorial-text h2,
.service-section-head h2 {
  margin: 18px 0 28px;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.98;
}

.service-editorial-text p {
  color: #5f5a52;
  line-height: 1.9;
  margin-bottom: 22px;
}

.service-editorial-image img {
  width: 100%;
  display: block;
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(55, 45, 35, 0.12);
}

.editorial-list {
  display: grid;
  gap: 24px;
  margin-top: 34px;
}

.editorial-list div {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(70, 60, 45, 0.16);
}

.editorial-list strong {
  display: block;
  margin-bottom: 8px;
  font-size: 19px;
}

.editorial-list p {
  margin: 0;
}

.service-process,
.service-gallery,
.service-faq {
  padding: 110px 8%;
  background: #fff;
}

.service-section-head {
  max-width: 780px;
  margin-bottom: 60px;
}

.process-list {
  max-width: 980px;
  display: grid;
  gap: 0;
}

.process-list div {
  display: grid;
  grid-template-columns: 90px 180px 1fr;
  gap: 30px;
  padding: 34px 0;
  border-top: 1px solid rgba(70, 60, 45, 0.16);
}

.process-list div:last-child {
  border-bottom: 1px solid rgba(70, 60, 45, 0.16);
}

.process-list span {
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  color: #8a9b7a;
}

.process-list strong {
  font-size: 20px;
}

.process-list p {
  margin: 0;
  color: #666;
  line-height: 1.8;
}

.service-gallery {
  background: #f7f1e8;
}

.service-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-gallery-grid img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 26px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-gallery-grid img:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(55, 45, 35, 0.14);
}

.faq-list {
  max-width: 900px;
}

.faq-list details {
  border-top: 1px solid rgba(70, 60, 45, 0.18);
  padding: 24px 0;
}

.faq-list details:last-child {
  border-bottom: 1px solid rgba(70, 60, 45, 0.18);
}

.faq-list summary {
  cursor: pointer;
  font-size: 20px;
  font-weight: 500;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  font-size: 26px;
  color: #8a9b7a;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  max-width: 720px;
  margin-top: 18px;
  color: #666;
  line-height: 1.8;
}

.service-final-cta {
  padding: 110px 8%;
  text-align: center;
  background: #3b352b;
  color: #fff;
}

.service-final-cta h2 {
  margin: 18px auto;
  max-width: 760px;
  font-size: clamp(44px, 6vw, 82px);
  line-height: 0.95;
}

.service-final-cta p {
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 900px) {
  .service-editorial {
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 80px 24px;
  }

  .service-process,
  .service-gallery,
  .service-faq,
  .service-final-cta {
    padding: 80px 24px;
  }

  .process-list div {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-gallery-grid {
    grid-template-columns: 1fr;
  }

  .service-gallery-grid img {
    height: 360px;
  }
}
/* ================================
   FEEDBACK SECTION - FINAL
================================ */

.feedback-section {
  width: 100%;
  padding: 70px 0;
  background: var(--bg);
}

.feedback-section .feedback-card {
  width: auto;
  max-width: none;
  min-height: 320px;
  margin: 0 7%;
  padding: 54px 60px;

  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 60px;

  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 18px 45px rgba(47, 48, 44, 0.07);
}

.feedback-section .feedback-content {
  width: auto;
  min-width: 0;
  max-width: 820px;
  flex: none;
}

.feedback-section .feedback-content .section-label {
  margin-bottom: 16px;
}

.feedback-section .feedback-content h2 {
  max-width: 760px;
  margin: 0 0 18px;

  font-family: "Cormorant Garamond", serif;
  font-size: clamp(40px, 4vw, 58px);
  font-weight: 600;
  line-height: 1.02;
}

.feedback-section .feedback-content p {
  max-width: 760px;
  margin: 0;

  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.feedback-section .feedback-action {
  width: auto;
  min-width: max-content;
  flex: none;
}

.feedback-section .feedback-action .btn {
  width: auto;
  min-width: 194px;
  min-height: 54px;
  padding: 0 30px;
  white-space: nowrap;
}

/* MOBILE */

@media (max-width: 900px) {
  .feedback-section {
    padding: 50px 0;
  }

  .feedback-section .feedback-card {
    min-height: auto;
    margin: 0 22px;
    padding: 40px 28px;

    grid-template-columns: 1fr;
    gap: 28px;
  }

  .feedback-section .feedback-content {
    max-width: none;
  }

  .feedback-section .feedback-content h2 {
    font-size: clamp(38px, 11vw, 50px);
  }

  .feedback-section .feedback-action {
    width: 100%;
    min-width: 0;
  }

  .feedback-section .feedback-action .btn {
    width: 100%;
    min-width: 0;
  }
}
/* ================================
   CAREER SECTION
================================ */

.career-section {
  padding: 20px 0 80px;
  background: var(--bg);
}

.career-card {
  position: relative;
  margin: 0 7%;
  padding: 68px 64px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  align-items: center;
  gap: 80px;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 92% 15%,
      rgba(200, 173, 134, 0.17),
      transparent 32%
    ),
    var(--paper);

  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 20px 55px rgba(47, 48, 44, 0.07);
}

.career-card::before {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -170px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(111, 123, 99, 0.14);
  border-radius: 50%;
  pointer-events: none;
}

.career-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.career-content .section-label {
  margin-bottom: 18px;
}

.career-content h2 {
  margin: 0 0 24px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(44px, 5vw, 70px);
  line-height: 0.98;
  font-weight: 600;
}

.career-content p {
  max-width: 680px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.career-details {
  position: relative;
  z-index: 2;
  padding: 34px;
  background: rgba(111, 123, 99, 0.08);
  border: 1px solid rgba(111, 123, 99, 0.16);
  border-radius: 24px;
}

.career-number {
  display: block;
  margin-bottom: 28px;
  color: var(--green-dark);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
}

.career-detail {
  padding: 20px 0;
  border-top: 1px solid rgba(111, 123, 99, 0.18);
}

.career-detail:last-child {
  padding-bottom: 0;
}

.career-detail strong {
  display: block;
  margin-bottom: 7px;
  color: var(--text);
  font-size: 12px;
  letter-spacing: 0.4px;
}

.career-detail span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .career-section {
    padding: 10px 0 60px;
  }

  .career-card {
    margin: 0 22px;
    padding: 46px 28px;
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .career-content h2 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .career-content .btn {
    width: 100%;
  }

  .career-details {
    padding: 26px 24px;
  }
}

/* ================================
   NAV DROPDOWN
================================ */

.nav-dropdown {
  position: relative;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
}

.nav-dropdown-toggle {
  position: relative;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;

  border: 0;
  background: transparent;
  color: inherit;

  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
}

.nav-dropdown-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.25s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown.is-open .nav-dropdown-toggle::after {
  width: 100%;
}

.nav-dropdown-arrow {
  display: inline-block;
  font-size: 13px;
  line-height: 1;
  transition: transform 0.25s ease;
}

.nav-dropdown:hover .nav-dropdown-arrow,
.nav-dropdown.is-open .nav-dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 270px;
  padding: 10px;

  background: rgba(255, 253, 249, 0.96);
  border: 1px solid rgba(229, 221, 209, 0.95);
  border-radius: 18px;
  box-shadow: 0 22px 55px rgba(47, 48, 44, 0.14);

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  pointer-events: none;

  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-dropdown-menu a {
  display: block;
  padding: 13px 14px;
  border-radius: 12px;

  color: var(--text);
  font-size: 12px;
  line-height: 1.5;

  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.nav-dropdown-menu a::after {
  display: none;
}

.nav-dropdown-menu a:hover {
  background: rgba(111, 123, 99, 0.10);
  color: var(--green-dark);
  transform: translateX(3px);
}

/* Mobile */

@media (max-width: 768px) {
  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    font-size: 18px;
  }

  .nav-dropdown-toggle::after {
    display: none;
  }

  .nav-dropdown-menu {
    position: static;
    width: 100%;
    margin-top: 12px;
    padding: 8px;

    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;

    background: rgba(255, 255, 255, 0.62);
    box-shadow: none;
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    display: block;
  }

  .nav-dropdown-menu a {
    padding: 12px 14px;
    font-size: 14px;
  }
}