

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

:root {
  --c-deep:      #0D1F14;
  --c-mid:       #1B3A2D;
  --c-light:     #2A5040;
  --c-gold:      #C9A84C;
  --c-gold-lt:   #E2C97A;
  --c-gold-pl:   #F0E4BC;
  --c-gold-rgb:  201, 168, 76;
  --c-cream:     #F5F0E8;
  --c-cream-d:   #EDE5D4;
  --c-white:     #FDFAF4;
  --c-text:      #0D1F15;
  --c-text-m:    #2A3D30;
  --f-serif:     'Cormorant Garamond', serif;
  --f-sans:      'Jost', sans-serif;
  --ease-out:    cubic-bezier(.22,.68,0,1.2);
  --tr-default:  .3s;
  --tr-long:     .45s;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--f-sans);
  background: var(--c-cream);
  color: var(--c-text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar              { width: 6px; }
::-webkit-scrollbar-track        { background: var(--c-deep); }
::-webkit-scrollbar-thumb        { background: var(--c-gold); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover  { background: var(--c-gold-lt); }

/* ── Selection ── */
::selection { background: rgba(201,168,76,.25); color: var(--c-deep); }

/* ═══════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════ */
#nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 1.25rem 5vw;
  display: flex; align-items: center; justify-content: space-between;
  transition: background var(--tr-long) ease, box-shadow var(--tr-long) ease, padding var(--tr-long) ease;
}
#nav.scrolled {
  background: rgba(13,31,20,.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(var(--c-gold-rgb),.12), 0 8px 40px rgba(0,0,0,.35);
  padding: .9rem 5vw;
}

.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img {
  height: 44px;
  opacity: .85;
  transition: opacity var(--tr-default), transform var(--tr-default);
}
.nav-logo img:hover { opacity: 1; transform: scale(1.05); }

.nav-links { display: flex; gap: 2.4rem; list-style: none; align-items: center; }
.nav-links a {
  font-family: var(--f-sans); font-size: .75rem; font-weight: 400;
  letter-spacing: .14em; color: rgba(255,255,255,.65);
  text-decoration: none; transition: color var(--tr-default);
  position: relative;
}
.nav-links a:not(.nav-cta)::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1px; background: var(--c-gold);
  transition: width var(--tr-long) var(--ease-out);
}
.nav-links a:not(.nav-cta):hover { color: var(--c-gold-lt); }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
  padding: .55rem 1.5rem;
  border: 1px solid rgba(var(--c-gold-rgb),.5);
  color: var(--c-gold) !important;
  letter-spacing: .14em !important;
  transition: background var(--tr-default), border-color var(--tr-default) !important;
}
.nav-cta:hover { background: var(--c-gold); color: var(--c-deep) !important; border-color: var(--c-gold); }



/* ======================================================
   SUBMENU ARTIGOS
   Adicione este bloco logo após os estilos de .nav-links
   (já inserido automaticamente neste arquivo)
====================================================== */
.nav-dropdown{
  position:relative;
}
.nav-dropdown > a{
  display:flex;
  align-items:center;
  height:100%;
  padding:12px 0;
}
.nav-dropdown::after{
  content:"";
  position:absolute;
  left:0;
  top:100%;
  width:100%;
  height:20px;
}
.dropdown-menu{
  position:absolute;
  top:100%;
  left:50%;
  transform:translate(-50%,10px);
  min-width:190px;
  list-style:none;
  padding:.8rem 0;
  background:rgba(13,31,20,.98);
  backdrop-filter:blur(16px);
  border:1px solid rgba(var(--c-gold-rgb),.12);
  box-shadow:0 15px 40px rgba(0,0,0,.35);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity .28s,transform .28s,visibility .28s;
  z-index:1001;
}
.dropdown-menu li{width:100%;}
.dropdown-menu a{
  display:block;
  padding:.8rem 1.3rem;
}
.dropdown-menu a::after{display:none!important;}
.dropdown-menu a:hover{
  background:rgba(var(--c-gold-rgb),.06);
  color:var(--c-gold);
  padding-left:1.6rem;
}
.nav-dropdown:hover>.dropdown-menu{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform:translate(-50%,0);
}
@media (max-width:900px){
 .nav-dropdown::after{display:none;}
 .dropdown-menu{
   position:static;
   transform:none;
   opacity:1;
   visibility:visible;
   pointer-events:auto;
   display:none;
   background:none;
   border:none;
   box-shadow:none;
 }
}

.hamburger {
  display: none; flex-direction: column;
  gap: 5px; cursor: pointer; padding: 6px;
}
.hamburger span {
  width: 22px; height: 1.5px; background: var(--c-gold);
  display: block; transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,4px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-4px); }

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  background: var(--c-deep);
  display: grid; place-items: center;
  position: relative; overflow: hidden;
  text-align: center;
}

/* Subtle noise texture overlay */
#hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: .4;
  pointer-events: none;
}

/* Atmospheric gradients */
.hero-atm {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 55% at 50% 45%, rgba(201,168,76,.1) 0%, transparent 65%),
    radial-gradient(ellipse 80% 40% at 15% 60%, rgba(27,58,45,.6) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 85% 30%, rgba(13,31,20,.8) 0%, transparent 60%);
}

/* Orbital ring system */
.hero-rings {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -52%);
  pointer-events: none;
}
.hero-rings i {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,.16);
  transform: translate(-50%, -50%);
  top: 0; left: 0;
  animation: ring-pulse 5s ease-in-out infinite;
}
.hero-rings i:nth-child(1) { width: 300px; height: 300px; animation-delay: 0s; }
.hero-rings i:nth-child(2) { width: 420px; height: 420px; border-color: rgba(201,168,76,.10); animation-delay: .6s; }
.hero-rings i:nth-child(3) { width: 560px; height: 560px; border-color: rgba(201,168,76,.06); animation-delay: 1.2s; }
.hero-rings i:nth-child(4) { width: 720px; height: 720px; border-color: rgba(201,168,76,.03); animation-delay: 1.8s; }

@keyframes ring-pulse {
  0%, 100% { opacity: .5; transform: translate(-50%,-50%) scale(1); }
  50%       { opacity: 1;  transform: translate(-50%,-50%) scale(1.035); }
}

/* Hero content stack */
.hero-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 1.6rem;
  padding: 9rem 2rem 5rem;
}

/* Logo hero — centrepiece */
.hero-logo-wrap {
  position: relative;
  width: 190px; height: 190px;
  display: flex; align-items: center; justify-content: center;
  animation: anim-down .9s ease forwards; opacity: 0;
}
.hero-logo-glow {
  position: absolute; inset: -20px; border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--c-gold-rgb),.22) 0%, rgba(var(--c-gold-rgb),.06) 50%, transparent 75%);
  animation: glow-pulse 3.5s ease-in-out infinite;
}
.hero-logo-wrap img {
  width: 230px; position: relative; z-index: 1;
  filter: drop-shadow(0 0 22px rgba(var(--c-gold-rgb),.45)) drop-shadow(0 0 6px rgba(var(--c-gold-rgb),.2));
  transition: transform var(--tr-long) var(--ease-out);
}
.hero-logo-wrap:hover img { transform: scale(1.06); }

@keyframes glow-pulse {
  0%, 100% { opacity: .65; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.1); }
}
@keyframes anim-down {
  from { opacity: 0; transform: translateY(-22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes anim-up {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-brand {
  display: flex; flex-direction: column; align-items: center; gap: .45rem;
  animation: anim-down .9s ease .22s forwards; opacity: 0;
}
.hero-brand h1 {
  font-family: var(--f-serif);
  font-size: clamp(3.8rem, 9vw, 7rem);
  font-weight: 300; letter-spacing: .32em; line-height: .9;
  color: var(--c-gold);
  text-shadow: 0 0 60px rgba(201,168,76,.2);
}
.hero-brand span {
  font-family: var(--f-sans); font-size: .66rem; font-weight: 400;
  letter-spacing: .5em; color: rgba(201,168,76,.5);
}

.hero-rule {
  width: 50px; height: 1px; background: var(--c-gold); opacity: .4;
  animation: anim-up 1s ease .48s forwards; opacity: 0;
}

.hero-tagline {
  font-family: var(--f-serif); font-style: italic; font-weight: 300;
  font-size: clamp(.95rem, 2.4vw, 1.3rem);
  color: rgba(245,240,232,.58);
  line-height: 1.95; max-width: 560px;
  animation: anim-up 1s ease .6s forwards; opacity: 0;
}

.hero-ctas {
  display: flex; gap: 1.1rem; flex-wrap: wrap; justify-content: center;
  animation: anim-up 1s ease .9s forwards; opacity: 0;
}
.btn-solid {
  padding: .88rem 2.4rem;
  background: var(--c-gold); color: var(--c-deep);
  font-family: var(--f-sans); font-size: .72rem; font-weight: 500;
  letter-spacing: .18em; text-decoration: none;
  transition: background var(--tr-default), transform var(--tr-default), box-shadow var(--tr-default);
}
.btn-solid:hover {
  background: var(--c-gold-lt);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(var(--c-gold-rgb),.3);
}
.btn-ghost {
  padding: .88rem 2.4rem;
  border: 1px solid rgba(var(--c-gold-rgb),.35); color: var(--c-gold);
  font-family: var(--f-sans); font-size: .72rem; font-weight: 400;
  letter-spacing: .18em; text-decoration: none;
  transition: border-color var(--tr-default), background var(--tr-default);
}
.btn-ghost:hover { border-color: var(--c-gold); background: rgba(var(--c-gold-rgb),.07); }

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 2.2rem; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .45rem;
  animation: anim-up 1s ease 1.6s forwards; opacity: 0;
}
.hero-scroll span {
  font-size: .6rem; letter-spacing: .28em;
  color: rgba(201,168,76,.4); font-family: var(--f-sans);
}
.scroll-bar {
  width: 1px; height: 46px;
  background: linear-gradient(to bottom, var(--c-gold), transparent);
  animation: scroll-drop 2.2s ease-in-out infinite;
}
@keyframes scroll-drop {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  55%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* ═══════════════════════════════════════════════
   SECTION UTILITIES
═══════════════════════════════════════════════ */
section { padding: 7.5rem 5vw; }
.s-label {
  display: block; font-size: .62rem; font-weight: 400;
  letter-spacing: .3em; color: var(--c-gold); margin-bottom: .9rem;
}
.s-title {
  font-family: var(--f-serif);
  font-size: 2rem;
  font-weight: 400; line-height: 1.18;
  color: var(--c-text);
}
.s-title.on-dark { color: var(--c-cream); }
.gold-rule { width: 46px; height: 2px; background: var(--c-gold); margin: 1.4rem 0; }
.gold-rule.centered { margin: 1.4rem auto; }

/* ── Reveal animation ── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity var(--tr-long) ease, transform var(--tr-long) ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════ */
#about { background: var(--c-white); }

.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem;
  align-items: center; max-width: 1200px; margin: 0 auto;
}

/* Logo medallion — premium */
.about-visual {
  position: relative; display: flex; justify-content: center; align-items: center;
}
.about-glow {
  position: absolute;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle,
    rgba(201,168,76,.18) 0%,
    rgba(201,168,76,.07) 40%,
    rgba(201,168,76,.02) 65%,
    transparent 80%);
  animation: glow-pulse 4s ease-in-out infinite;
  pointer-events: none;
}
.about-medallion {
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, var(--c-light) 0%, var(--c-mid) 40%, var(--c-deep) 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
  box-shadow:
    0 0 0 1px rgba(201,168,76,.22),
    0 0 0 26px rgba(201,168,76,.05),
    0 0 0 52px rgba(201,168,76,.025),
    0 0 80px rgba(201,168,76,.14),
    0 30px 80px rgba(0,0,0,.4),
    inset 0 0 80px rgba(0,0,0,.35);
}
.about-medallion img {
  width: 240px;
  filter: drop-shadow(0 0 24px rgba(var(--c-gold-rgb),.5)) drop-shadow(0 0 8px rgba(var(--c-gold-rgb),.25));
  transition: transform var(--tr-long) var(--ease-out);
  position: relative; z-index: 1;
}
.about-medallion:hover img { transform: scale(1.05); }

/* Orbiting rings */
.ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(201,168,76,.16);
  top: 50%; left: 50%;
}
.ring-1 {
  width: calc(100% + 38px); height: calc(100% + 38px);
  transform: translate(-50%,-50%);
  animation: spin-cw 22s linear infinite;
}
.ring-1::before, .ring-1::after {
  content: '✦'; position: absolute;
  color: var(--c-gold); font-size: .6rem; opacity: .55;
  left: 50%; transform: translateX(-50%);
}
.ring-1::before { top: -9px; }
.ring-1::after  { bottom: -9px; opacity: .28; }

.ring-2 {
  width: calc(100% + 82px); height: calc(100% + 82px);
  transform: translate(-50%,-50%);
  border-color: rgba(201,168,76,.07);
  animation: spin-ccw 38s linear infinite;
}
.ring-2::before {
  content: '✦'; position: absolute;
  color: var(--c-gold); font-size: .5rem; opacity: .3;
  top: -7px; left: 50%; transform: translateX(-50%);
}

.ring-3 {
  width: calc(100% + 130px); height: calc(100% + 130px);
  transform: translate(-50%,-50%);
  border-color: rgba(201,168,76,.035);
  animation: spin-cw 55s linear infinite;
}

@keyframes spin-cw  { to { transform: translate(-50%,-50%) rotate(360deg);  } }
@keyframes spin-ccw { to { transform: translate(-50%,-50%) rotate(-360deg); } }

/* About text */
.about-text p {
  font-size: .97rem; line-height: 2; color: var(--c-text-m);
  margin-bottom: 1.4rem; font-weight: 300;
}
.about-text em { font-style: italic; color: var(--c-text); }
.about-text strong { font-weight: 500; color: var(--c-text); }

.values-list { display: flex; flex-direction: column; gap: 1.1rem; margin-top: 2rem; }
.value-item { display: flex; align-items: flex-start; gap: .85rem; }
.v-star { color: var(--c-gold); font-size: .85rem; margin-top: .18rem; flex-shrink: 0; }
.v-body h4 {
  font-family: var(--f-serif); font-size: 1.1rem; font-weight: 600;
  color: var(--c-text); margin-bottom: .18rem;
}
.v-body p { font-size: .84rem; color: #667; line-height: 1.65; margin: 0; font-weight: 300; }

/* ═══════════════════════════════════════════════
   MISSION
═══════════════════════════════════════════════ */
#mission {
  background: var(--c-deep);
  position: relative; overflow: hidden; text-align: center;
}
#mission::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 65% at 50% 50%, rgba(201,168,76,.08) 0%, transparent 70%);
}
.mission-inner { max-width: 800px; margin: 0 auto; position: relative; z-index: 1; }

.mission-quote {
  font-family: var(--f-serif); font-style: italic; font-weight: 300;
  font-size: clamp(1.3rem, 2.8vw, 2.1rem);
  color: var(--c-cream); line-height: 1.8; margin: 2.2rem 0;
}
.mission-quote em { color: var(--c-gold); font-style: normal; }

.mission-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem;
  margin-top: 4.5rem;
}
.m-card {
  padding: 2.2rem 1.6rem;
  border: 1px solid rgba(var(--c-gold-rgb),.12);
  position: relative; overflow: hidden;
  transition: border-color var(--tr-long), background var(--tr-long);
}
.m-card::before {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 2px; background: var(--c-gold);
  transform: scaleX(0); transition: transform var(--tr-long) var(--ease-out);
}
.m-card:hover { border-color: rgba(var(--c-gold-rgb),.35); background: rgba(var(--c-gold-rgb),.04); }
.m-card:hover::before { transform: scaleX(1); }
.m-card .ornament { color: var(--c-gold); font-size: .8rem; display: block; margin-bottom: .9rem; }
.m-card h4 {
  font-family: var(--f-serif); font-size: 1.25rem; font-weight: 600;
  color: var(--c-gold-lt); margin-bottom: .55rem;
}
.m-card p { font-size: .84rem; color: rgba(245,240,232,.52); line-height: 1.75; font-weight: 300; }

/* ═══════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════ */
#services { background: var(--c-cream); }
.services-head { max-width: 560px; margin-inline: auto; margin-bottom: 4rem; text-align: center; }
.services-head p {
  font-size: .93rem; color: var(--c-text-m); line-height: 1.85; font-weight: 300;
  max-width: 480px;
  margin-inline: auto;
}

.services-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px;
  max-width: 1200px; margin: 0 auto;
  border: 2px solid rgba(27,58,45,.06);
}
.s-card {
  background: var(--c-white); padding: 3.2rem 2.8rem;
  position: relative; overflow: hidden;
  transition: all var(--tr-long);
  display: flex; flex-direction: column; gap: .9rem;
  cursor: default;
}
.s-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--c-mid) 0%, var(--c-deep) 100%);
  opacity: 0; transition: opacity var(--tr-long); z-index: 0;
}
.s-card:hover::after { opacity: 1; }
.s-card:hover .s-num   { color: rgba(201,168,76,.18) !important; }
.s-card:hover .s-title { color: var(--c-cream); }
.s-card:hover .s-desc  { color: rgba(245,240,232,.65); }
.s-card:hover .s-tag   { border-color: rgba(var(--c-gold-rgb),.35); color: var(--c-gold-pl); }
.s-card:hover .s-icon  { opacity: .1; }

.s-num {
  font-family: var(--f-serif); font-size: 3.2rem; font-weight: 300;
  color: rgba(27,58,45,.09); line-height: 1;
  transition: color var(--tr-long); position: relative; z-index: 1;
}
.s-title {
  font-family: var(--f-serif); font-size: 1.8rem; font-weight: 600;
  color: var(--c-text); line-height: 1.3;
  transition: color var(--tr-long); position: relative; z-index: 1;
}
.s-desc {
  font-size: .87rem; color: var(--c-text-m); line-height: 1.9; font-weight: 300;
  transition: color var(--tr-long); position: relative; z-index: 1;
}
.s-tags {
  display: flex; flex-wrap: wrap; gap: .45rem; margin-top: .35rem;
  position: relative; z-index: 1;
}
.s-tag {
  font-size: .63rem; letter-spacing: .08em; font-weight: 400;
  padding: .28rem .75rem; border: 1px solid rgba(27,58,45,.12);
  color: var(--c-text-m); transition: all var(--tr-long);
}
.s-icon {
  position: absolute; bottom: 1.8rem; right: 2rem;
  font-family: var(--f-serif); font-size: 3.5rem;
  color: var(--c-gold); opacity: .04;
  transition: opacity var(--tr-long); pointer-events: none; z-index: 1;
}

/* ═══════════════════════════════════════════════
   TEAM
═══════════════════════════════════════════════ */
#team { background: var(--c-deep); text-align: center; }
.team-inner { max-width: 680px; margin: 0 auto; }

.team-medallion-wrap {
  position: relative; width: 180px; height: 180px;
  margin: 2.8rem auto;
  display: flex; align-items: center; justify-content: center;
}
.team-glow {
  position: absolute; inset: -18px; border-radius: 50%;
  background: radial-gradient(circle,
    rgba(201,168,76,.22) 0%, rgba(201,168,76,.07) 50%, transparent 72%);
  animation: glow-pulse 4s ease-in-out infinite;
}
.team-avatar {
  width: 128px; height: 128px; border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, var(--c-light), var(--c-deep));
  border: 1.5px solid rgba(201,168,76,.35);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-serif); font-size: 2.5rem; font-weight: 400;
  color: var(--c-gold); position: relative; z-index: 1;
  box-shadow: 0 0 40px rgba(201,168,76,.16), inset 0 0 30px rgba(0,0,0,.25);
  letter-spacing: .06em;
}
.team-ring {
  position: absolute;
  top: 50%; left: 50%;
  width: calc(100% + 28px); height: calc(100% + 28px);
  transform: translate(-50%,-50%);
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,.18);
  animation: spin-cw 18s linear infinite;
}
.team-ring::before {
  content: '✦'; position: absolute;
  top: -7px; left: 50%; transform: translateX(-50%);
  color: var(--c-gold); font-size: .58rem; opacity: .55;
}

.team-name {
  font-family: var(--f-serif); font-size: 1.95rem; font-weight: 400;
  color: var(--c-gold-lt); margin-bottom: .35rem;
}
.team-role {
  font-size: .7rem; letter-spacing: .24em;
  color: rgba(245,240,232,.4); font-weight: 400;
}
.team-bio {
  font-size: .93rem; color: rgba(245,240,232,.62); line-height: 2;
  margin: 1.6rem 0 2.2rem; font-weight: 300;
}
.team-linkedin {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .72rem 1.9rem; border: 1px solid rgba(var(--c-gold-rgb),.28);
  color: var(--c-gold); font-size: .7rem; letter-spacing: .15em;
  text-decoration: none; transition: all var(--tr-default); font-weight: 400;
}
.team-linkedin:hover { background: rgba(var(--c-gold-rgb),.1); border-color: var(--c-gold); }
.team-linkedin svg { width: 15px; height: 15px; fill: currentColor; }

/* ═══════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════ */
#contact { background: var(--c-cream-d); text-align: center; }
.contact-inner { max-width: 660px; margin: 0 auto; }
.contact-sub {
  font-size: .93rem; color: var(--c-text-m); line-height: 1.9;
  font-weight: 300; margin-bottom: .5rem;
}
.contact-email {
  display: block; font-family: var(--f-serif); font-weight: 400;
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  color: var(--c-text); text-decoration: none;
  margin: 1.8rem 0 .5rem; letter-spacing: .04em;
  transition: color var(--tr-default);
}
.contact-email:hover { color: var(--c-gold); }
.contact-url {
  font-size: .74rem; letter-spacing: .14em; color: var(--c-text-m); font-weight: 400;
}
.contact-url a { color: inherit; text-decoration: none; transition: color var(--tr-default); }
.contact-url a:hover { color: var(--c-gold); }

.contact-form {
  margin-top: 3rem; display: flex; flex-direction: column; gap: .9rem;
  text-align: left;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.contact-form input,
.contact-form textarea {
  padding: .95rem 1.2rem;
  background: var(--c-white); border: 1px solid rgba(27,58,45,.11);
  font-family: var(--f-sans); font-size: .88rem; font-weight: 300;
  color: var(--c-text); outline: none; width: 100%;
  transition: border-color var(--tr-default), box-shadow var(--tr-default);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(42,61,48,.36); }
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--c-gold);
  box-shadow: 0 0 0 3px rgba(var(--c-gold-rgb),.08);
}
.contact-form textarea { resize: vertical; min-height: 115px; }
.btn-submit {
  padding: .95rem 2.5rem; background: var(--c-deep);
  color: var(--c-gold); border: none; cursor: pointer;
  font-family: var(--f-sans); font-size: .71rem; font-weight: 500;
  letter-spacing: .18em; align-self: flex-start;
  transition: background var(--tr-default), transform var(--tr-default), box-shadow var(--tr-default);
}
.btn-submit:hover {
  background: var(--c-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13,31,20,.35);
}

footer {
  background: var(--c-deep);
  padding: 2rem 5vw;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem;
}
.footer-logo img { height: 36px; opacity: .5; }
.footer-tagline {
  font-family: var(--f-serif); font-style: italic;
  font-size: .88rem; color: rgba(201,168,76,.35);
}
.footer-copy { font-size: .66rem; letter-spacing: .08em; color: rgba(245,240,232,.25); font-weight: 300; }

.whats a {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #25D366;
  border-radius: 50%;
  transition: .3s ease;
}

.whats a:hover {
  background-color: #128c7e;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .about-visual { order: -1; }
  .about-medallion { width: 280px; height: 280px; }
  .about-medallion img { width: 170px; }
  .about-glow { width: 300px; height: 300px; }
  .mission-cards { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    height: 100vh !important;
    display: flex; flex-direction: column;
    position: fixed; inset: 0; background: rgba(13,31,20,.98);
    align-items: center; justify-content: center; gap: 2.5rem;
    z-index: 999;
  }
  .nav-links.open .nav-cta { display: block; }
  .nav-dropdown > a{
      display:flex;
      align-items:center;
      height:auto !important;
      padding:12px 0;
    }
    
    .dropdown-menu {
        min-width: auto !important;
        display: block !important;
    }
    
    .nav-dropdown:hover>.dropdown-menu{
      transform: none !important;
    }
}

@media (max-width: 600px) {
  section { padding: 5.5rem 6vw; }
  .hero-logo-wrap { width: 150px; height: 150px; }
  .hero-logo-wrap img { width: 120px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .about-medallion { width: 230px; height: 230px; }
  .about-medallion img { width: 140px; }
  .form-row { grid-template-columns: 1fr; }
  footer { flex-direction: column; align-items: center; text-align: center; gap: 1rem; }
}

.whats {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 15;
  
}

