:root {
  --bg: #0b0805;
  --bg-soft: #150f0a;
  --paper: #fff5df;
  --muted: #cdbb9d;
  --gold: #f3b64b;
  --orange: #e76522;
  --red: #b92f1d;
  --border: rgba(255, 245, 223, 0.14);
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--paper);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px clamp(18px, 5vw, 72px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #211004;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 26px;
  font-weight: 900;
  box-shadow: 0 10px 30px rgba(231, 101, 34, 0.28);
}

.brand-text {
  display: grid;
  line-height: 1;
}

.brand-text strong {
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-text small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  padding: 13px 24px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(11, 8, 5, 0.54);
  backdrop-filter: blur(18px);
}

.main-nav a {
  color: rgba(255, 245, 223, 0.76);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.main-nav a:hover {
  color: var(--gold);
}

.header-call {
  min-width: max-content;
  padding: 13px 22px;
  border-radius: 999px;
  background: var(--paper);
  color: #1b0e06;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.25s ease, background 0.25s ease;
}

.header-call:hover {
  transform: translateY(-2px);
  background: var(--gold);
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 138px clamp(18px, 5vw, 72px) 58px;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 18%, rgba(231, 101, 34, 0.22), transparent 32%),
    radial-gradient(circle at 78% 24%, rgba(243, 182, 75, 0.14), transparent 30%),
    linear-gradient(135deg, #080604 0%, #140d08 48%, #070504 100%);
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -4;
  opacity: 0.25;
  background-image:
    linear-gradient(rgba(255, 245, 223, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 245, 223, 0.05) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at center, black 0%, transparent 74%);
}

.hero-section::after {
  content: "FRANKLIN";
  position: absolute;
  left: 50%;
  bottom: -4vw;
  transform: translateX(-50%);
  z-index: -3;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 245, 223, 0.07);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(92px, 18vw, 265px);
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 0.8;
  pointer-events: none;
}

.hero-bg-shape {
  position: absolute;
  z-index: -2;
  border-radius: 999px;
  filter: blur(8px);
  opacity: 0.72;
}

.hero-bg-shape-one {
  width: 420px;
  height: 420px;
  top: 22%;
  left: -180px;
  background: radial-gradient(circle, rgba(185, 47, 29, 0.38), transparent 64%);
}

.hero-bg-shape-two {
  width: 520px;
  height: 520px;
  right: -230px;
  bottom: 2%;
  background: radial-gradient(circle, rgba(243, 182, 75, 0.24), transparent 66%);
}

.hero-lines {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, transparent 0 44%, rgba(255, 245, 223, 0.05) 44.2% 44.5%, transparent 44.7% 100%),
    linear-gradient(115deg, transparent 0 57%, rgba(255, 245, 223, 0.04) 57.2% 57.5%, transparent 57.7% 100%);
  pointer-events: none;
}

.hero-shell {
  width: min(1320px, 100%);
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(330px, 1.1fr) minmax(250px, 0.78fr);
  align-items: center;
  gap: clamp(22px, 4vw, 62px);
}

.hero-copy {
  position: relative;
  z-index: 4;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
}

.hero-copy h1 {
  margin: 0;
  max-width: 560px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(54px, 7.2vw, 112px);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.055em;
}

.hero-copy h1 span {
  color: var(--gold);
}

.hero-copy p {
  max-width: 460px;
  margin: 26px 0 0;
  color: rgba(255, 245, 223, 0.74);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--gold));
  color: #1f1006;
  box-shadow: 0 18px 44px rgba(231, 101, 34, 0.26);
}

.btn-secondary {
  border: 1px solid var(--border);
  color: var(--paper);
  background: rgba(255, 245, 223, 0.04);
}

.btn-secondary:hover {
  border-color: rgba(243, 182, 75, 0.7);
  background: rgba(243, 182, 75, 0.08);
}

.hero-plate-area {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(420px, 52vw, 720px);
}

.plate-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.ring-one {
  width: min(92vw, 570px);
  height: min(92vw, 570px);
  border: 1px dashed rgba(243, 182, 75, 0.24);
  animation: rotateSlow 30s linear infinite;
}

.ring-two {
  width: min(76vw, 460px);
  height: min(76vw, 460px);
  border: 1px solid rgba(255, 245, 223, 0.09);
  box-shadow: inset 0 0 80px rgba(243, 182, 75, 0.06);
}

.plate-shadow {
  position: absolute;
  width: min(74vw, 470px);
  height: 80px;
  bottom: 12%;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.52);
  filter: blur(22px);
}

.hero-food-img {
  position: relative;
  z-index: 3;
  width: min(82vw, 530px);
  max-height: 620px;
  object-fit: contain;
  filter: drop-shadow(0 42px 50px rgba(0, 0, 0, 0.56));
  transform: translateY(10px);
  animation: floatFood 4.8s ease-in-out infinite;
}

.floating-card {
  position: absolute;
  z-index: 5;
  min-width: 190px;
  padding: 15px 18px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(17, 11, 7, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.floating-card span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.floating-card strong {
  display: block;
  color: var(--paper);
  font-size: 16px;
}

.card-top {
  top: 15%;
  left: 3%;
}

.card-bottom {
  right: 0;
  bottom: 19%;
}

.hero-info-card {
  position: relative;
  z-index: 4;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--border);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 245, 223, 0.09), rgba(255, 245, 223, 0.035)),
    rgba(15, 10, 6, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.info-label {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-info-card h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.quick-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
}

.quick-list li {
  display: grid;
  gap: 4px;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 245, 223, 0.11);
}

.quick-list span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quick-list strong {
  color: var(--paper);
  font-size: 16px;
}

.mini-call {
  display: inline-flex;
  margin-top: 24px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
}

@keyframes floatFood {
  0%, 100% {
    transform: translateY(10px) rotate(-1.2deg);
  }
  50% {
    transform: translateY(-12px) rotate(1.2deg);
  }
}

@keyframes rotateSlow {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1120px) {
  .site-header {
    position: absolute;
  }

  .main-nav {
    display: none;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy p,
  .hero-copy h1 {
    margin-left: auto;
    margin-right: auto;
  }

  .eyebrow {
    justify-content: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-info-card {
    max-width: 560px;
    margin: 0 auto;
    text-align: left;
  }

  .hero-plate-area {
    order: 2;
    min-height: 520px;
  }

  .hero-info-card {
    order: 3;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 22px 18px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-text strong {
    font-size: 14px;
  }

  .brand-text small {
    font-size: 10px;
  }

  .header-call {
    padding: 12px 16px;
    font-size: 11px;
  }

  .hero-section {
    padding-top: 126px;
  }

  .hero-copy h1 {
    font-size: clamp(48px, 16vw, 74px);
  }

  .hero-copy p {
    font-size: 15px;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-plate-area {
    min-height: 420px;
  }

  .floating-card {
    min-width: 150px;
    padding: 12px 14px;
    border-radius: 18px;
  }

  .floating-card strong {
    font-size: 13px;
  }

  .card-top {
    left: 0;
    top: 10%;
  }

  .card-bottom {
    right: 0;
    bottom: 13%;
  }
}
/* Updated Hero Layout */
.brand-logo {
  display: inline-flex;
  align-items: center;
}

.brand-logo img {
  width: 185px;
  max-width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.35));
}

@media (min-width: 1121px) {
  .hero-shell {
    width: min(1460px, 100%);
    grid-template-columns: minmax(340px, 0.86fr) minmax(620px, 1.25fr);
    gap: clamp(42px, 5vw, 100px);
  }

  .hero-copy {
    padding-left: clamp(0px, 2vw, 24px);
  }

  .hero-plate-area {
    min-height: clamp(600px, 58vw, 790px);
    transform: translateX(clamp(30px, 6vw, 120px));
  }

  .ring-one {
    width: min(56vw, 720px);
    height: min(56vw, 720px);
  }

  .ring-two {
    width: min(46vw, 590px);
    height: min(46vw, 590px);
  }

  .hero-food-img {
    width: min(58vw, 750px);
    max-height: 780px;
  }

  .plate-shadow {
    width: min(48vw, 620px);
    height: 100px;
    bottom: 10%;
  }

  .card-top {
    top: 14%;
    left: 0;
  }

  .card-bottom {
    right: 3%;
    bottom: 16%;
  }
}

@media (max-width: 1120px) {
  .brand-logo img {
    width: 165px;
  }

  .hero-plate-area {
    transform: none;
  }

  .hero-info-card {
    display: none;
  }
}

@media (max-width: 640px) {
  .brand-logo img {
    width: 138px;
  }

  .hero-plate-area {
    min-height: 460px;
  }

  .hero-food-img {
    width: min(96vw, 500px);
  }

  .ring-one {
    width: min(96vw, 500px);
    height: min(96vw, 500px);
  }

  .ring-two {
    width: min(82vw, 420px);
    height: min(82vw, 420px);
  }
}

/* Comida Picante Section */

.comida-section {
    width: min(1300px, 90%);
    margin: 0 auto;
    padding: 120px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}


.comida-image {
    position: relative;
}


.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}


.image-frame img {
    width: 100%;
    display: block;
    object-fit: cover;
}


.comida-content {
    color: #f7f0e6;
}


.section-tag {
    color: #f4a623;
    letter-spacing: 3px;
    font-size: 13px;
    font-weight: 700;
}


.comida-content h2 {
    font-size: clamp(48px,5vw,72px);
    line-height: 1;
    margin: 20px 0 10px;
    font-family: "Playfair Display", serif;
}


.comida-content h3 {
    font-size: 25px;
    font-weight: 400;
    color: #d6c8b8;
}


.comida-content p {
    color:#b8ada0;
    line-height:1.8;
    margin:25px 0;
    font-size:17px;
}


.food-highlights {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin:35px 0;
}


.food-highlights div {
    border-left:2px solid #f4a623;
    padding-left:15px;
}


.food-highlights strong {
    display:block;
    font-size:18px;
}


.food-highlights span {
    color:#aaa;
    font-size:14px;
}


.comida-btn {
    display:inline-block;
    background:#f4a623;
    color:#111;
    padding:16px 32px;
    border-radius:40px;
    font-weight:700;
    text-decoration:none;
}


@media(max-width:900px){

    .comida-section {
        grid-template-columns:1fr;
        gap:40px;
    }

    .food-highlights {
        grid-template-columns:1fr;
    }

}
/* ABOUT SECTION */


.about-section{

position:relative;

padding:140px 70px;

overflow:hidden;

background:#0b0805;

}


.about-bg-circle{

position:absolute;

width:600px;

height:600px;

right:-250px;

top:20%;

border-radius:50%;

background:radial-gradient(circle,
rgba(243,182,75,.15),
transparent 65%);

filter:blur(20px);

}



.about-inner{

max-width:1400px;

margin:auto;

position:relative;

z-index:2;

}



.about-title{

text-align:center;

margin-bottom:60px;

}



.about-title h2{

font-family:"Playfair Display",serif;

font-size:clamp(45px,6vw,80px);

line-height:1;

margin:20px auto;

max-width:900px;

}



.about-content{

max-width:1100px;

margin:auto;

text-align:center;

}



.about-content>p{

color:#cdbb9d;

font-size:18px;

line-height:1.9;

max-width:850px;

margin:20px auto;

}



.about-features{

margin-top:70px;

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}



.about-card{

padding:35px 25px;

background:rgba(255,245,223,.04);

border:1px solid rgba(255,245,223,.12);

border-radius:25px;

transition:.3s;

}



.about-card:hover{

transform:translateY(-8px);

border-color:#f3b64b;

}



.icon{

font-size:40px;

margin-bottom:20px;

}



.about-card h3{

font-family:"Playfair Display",serif;

font-size:28px;

margin:10px 0;

}



.about-card p{

color:#bca98b;

}



@media(max-width:900px){

.about-section{

padding:90px 25px;

}


.about-features{

grid-template-columns:1fr;

}

}
/* FOOD CONCEPTS SECTION */


.food-concepts-section{

padding:140px 70px;

background:#0b0805;

position:relative;

overflow:hidden;

}



.food-section-header{

text-align:center;

max-width:850px;

margin:auto;

}



.food-section-header h2{

font-family:"Playfair Display",serif;

font-size:clamp(50px,6vw,85px);

line-height:.95;

margin:25px 0;

color:#fff5df;

}



.food-section-header p{

color:#cdbb9d;

font-size:18px;

line-height:1.8;

}





.food-concepts-grid{

max-width:1400px;

margin:90px auto 0;

display:grid;

grid-template-columns:repeat(4,1fr);

gap:45px;

}





.food-concept-card{

text-align:center;

}



.food-circle{

width:240px;

height:240px;

margin:auto;

position:relative;

display:flex;

align-items:center;

justify-content:center;

}



.rotating-ring{

position:absolute;

inset:0;

border-radius:50%;

border:2px dashed #f3b64b;

animation:rotateFoodCircle 18s linear infinite;

}



.rotating-ring:before{

content:"";

position:absolute;

width:14px;

height:14px;

background:#e76522;

border-radius:50%;

top:-7px;

left:50%;

}




.food-circle img{

position:relative;

z-index:2;

width:210px;

height:210px;

object-fit:contain;

filter:drop-shadow(0 25px 35px rgba(0,0,0,.55));

}





.food-concept-card h3{

font-family:"Playfair Display",serif;

font-size:34px;

margin:30px 0 12px;

color:#fff5df;

}



.food-concept-card p{

color:#cdbb9d;

font-size:15px;

line-height:1.7;

}





@keyframes rotateFoodCircle{

from{

transform:rotate(0deg);

}

to{

transform:rotate(360deg);

}

}





@media(max-width:1100px){


.food-concepts-grid{

grid-template-columns:repeat(2,1fr);

}


}



@media(max-width:650px){


.food-concepts-section{

padding:90px 25px;

}


.food-concepts-grid{

grid-template-columns:1fr;

}


.food-circle{

width:220px;

height:220px;

}


}
/* FOOD CONCEPT STYLE */


.concept-section{

padding:150px 70px;

background:#0b0805;

}


.concept-header{

text-align:center;

max-width:800px;

margin:auto;

}


.concept-header h2{

font-family:"Playfair Display",serif;

font-size:clamp(55px,6vw,90px);

line-height:.95;

margin:25px 0;

color:#fff5df;

}


.concept-header p{

color:#cdbb9d;

font-size:18px;

}





.concept-grid{

max-width:1400px;

margin:90px auto 0;

display:grid;

grid-template-columns:repeat(4,1fr);

gap:50px;

}





.concept-item{

text-align:center;

}





.concept-circle{

width:260px;

height:260px;

margin:auto;

position:relative;

display:flex;

align-items:center;

justify-content:center;

}





.circle-animation{

position:absolute;

inset:0;

border-radius:50%;


border:2px dashed #f3b64b;


animation:conceptRotate 22s linear infinite;

}





.circle-animation:before{

content:"";

position:absolute;

top:-7px;

left:50%;

width:14px;

height:14px;

background:#e76522;

border-radius:50%;

}




.concept-circle img{

width:230px;

height:230px;

object-fit:contain;

position:relative;

z-index:2;

filter:drop-shadow(0 35px 35px rgba(0,0,0,.6));

}





.concept-item h3{

font-family:"Playfair Display",serif;

font-size:34px;

color:#fff5df;

margin:30px 0 8px;

}





.concept-item p{

color:#cdbb9d;

font-size:15px;

}





@keyframes conceptRotate{

from{

transform:rotate(0deg);

}

to{

transform:rotate(360deg);

}

}




@media(max-width:1100px){

.concept-grid{

grid-template-columns:repeat(2,1fr);

}

}



@media(max-width:650px){

.concept-section{

padding:90px 25px;

}


.concept-grid{

grid-template-columns:1fr;

}


.concept-circle{

width:230px;

height:230px;

}

}
/* WHY SECTION */

.why-section{

padding:120px 70px;
background:#0b0805;

}


.why-wrapper{

max-width:1350px;
margin:auto;

display:grid;
grid-template-columns:0.8fr 1fr;

gap:100px;

align-items:start;

}



.why-left h2{

font-family:"Playfair Display",serif;

font-size:clamp(45px,5vw,75px);

line-height:.95;

color:#fff5df;

margin-top:25px;

}



.why-right{

display:flex;

flex-direction:column;

}



.why-row{

display:flex;

gap:30px;

padding:28px 0;

border-bottom:1px solid rgba(255,245,223,.15);

}



.why-icon{

width:52px;

height:52px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

flex-shrink:0;

background:linear-gradient(135deg,#e76522,#f3b64b);

color:#1b0e06;

font-size:14px;

font-weight:900;

}



.why-row h3{

font-family:"Playfair Display",serif;

font-size:28px;

color:#fff5df;

margin:0 0 8px;

}



.why-row p{

margin:0;

color:#cdbb9d;

font-size:15px;

line-height:1.6;

}



@media(max-width:900px){

.why-wrapper{

grid-template-columns:1fr;

gap:50px;

}


.why-section{

padding:90px 25px;

}

}
/* CTA SECTION */


.cta-section{

padding:120px 70px;

background:#120c08;

}



.cta-box{

max-width:1100px;

margin:auto;

text-align:center;

padding:80px 50px;

border-radius:35px;

background:
linear-gradient(
135deg,
rgba(243,182,75,.15),
rgba(231,101,34,.08)
);

border:1px solid rgba(243,182,75,.25);

}



.cta-box h2{

font-family:"Playfair Display",serif;

font-size:clamp(45px,6vw,75px);

line-height:1;

margin:25px 0;

color:#fff5df;

}



.cta-box p{

max-width:650px;

margin:0 auto 40px;

color:#cdbb9d;

font-size:17px;

line-height:1.8;

}



.cta-button{

display:inline-flex;

padding:18px 45px;

border-radius:50px;

background:#f3b64b;

color:#1b0e06;

font-weight:900;

letter-spacing:.08em;

text-transform:uppercase;

}




/* FOOTER */


.footer{

background:#080604;

padding:80px 70px 30px;

border-top:1px solid rgba(255,245,223,.1);

}



.footer-container{

max-width:1400px;

margin:auto;

display:grid;

grid-template-columns:1.3fr 1fr 1fr;

gap:60px;

}



.footer-brand img{

width:220px;

}



.footer-brand p{

color:#cdbb9d;

margin-top:20px;

}



.footer h3{

color:#fff5df;

font-family:"Playfair Display",serif;

font-size:25px;

margin-bottom:20px;

}



.footer p,
.footer a{

color:#cdbb9d;

font-size:15px;

line-height:1.8;

}



.footer-links{

display:flex;

flex-direction:column;

}



.footer-links a:hover{

color:#f3b64b;

}



.footer-bottom{

max-width:1400px;

margin:50px auto 0;

padding-top:25px;

border-top:1px solid rgba(255,245,223,.1);

text-align:center;

}



.footer-bottom p{

font-size:13px;

}





@media(max-width:900px){


.cta-section{

padding:80px 25px;

}



.footer{

padding:60px 25px 25px;

}



.footer-container{

grid-template-columns:1fr;

gap:35px;

}



.cta-box{

padding:50px 25px;

}



}

/* FINAL HEADER + FOOTER FIXES */

.site-header{
  position: fixed;
  background: rgba(11,8,5,.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,245,223,.08);
}

.footer-contact-item{
  display:flex;
  align-items:flex-start;
  gap:12px;
}

.footer-icon{
  color:#fff5df;
  font-size:18px;
  line-height:1.5;
}

@media(max-width:900px){
  .site-header{
    background:rgba(11,8,5,.9);
  }
}


/* ================================
   VENDOR INTEREST SECTION
================================ */


.vendor-interest{

    padding:120px 70px;

    background:#0b0805;

}



.vendor-container{

    max-width:1350px;

    margin:auto;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:25px;

    align-items:stretch;

}



/* LEFT SIDE */


.vendor-story{

    background:
    linear-gradient(
    135deg,
    rgba(255,245,223,.09),
    rgba(255,245,223,.03)
    );

    border-radius:35px;

    padding:55px;

    border:1px solid rgba(255,245,223,.12);

}



.vendor-story h2{

    font-family:"Playfair Display",serif;

    font-size:clamp(45px,5vw,70px);

    line-height:.95;

    margin:20px 0;

    color:#fff5df;

}



.vendor-story p{

    color:#cdbb9d;

    font-size:17px;

    line-height:1.8;

    max-width:520px;

}





.vendor-points{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

    margin-top:35px;

}



.vendor-points div{

    padding:12px 18px;

    border-radius:30px;

    background:rgba(255,245,223,.06);

    border:1px solid rgba(255,245,223,.12);

    color:#fff5df;

    font-size:14px;

    font-weight:700;

}





/* RIGHT FORM */


.vendor-form-box{

    background:#32180f;

    border-radius:35px;

    padding:55px;

    color:#fff5df;

    border:1px solid rgba(255,245,223,.08);

}



.vendor-form-box h2{

    font-family:"Playfair Display",serif;

    font-size:clamp(42px,5vw,65px);

    line-height:1;

    margin:20px 0;

}



.vendor-form-box p{

    color:#d7c3b1;

    margin-bottom:30px;

}





.vendor-form-box form{

    display:flex;

    flex-direction:column;

    gap:14px;

}



.vendor-form-box input,
.vendor-form-box select,
.vendor-form-box textarea{


    width:100%;

    padding:16px 18px;

    border-radius:14px;

    border:1px solid rgba(255,255,255,.15);

    background:rgba(255,255,255,.08);

    color:#fff5df;

    font-family:inherit;

    font-size:15px;

}



.vendor-form-box input::placeholder,
.vendor-form-box textarea::placeholder{

    color:#cbb6a5;

}



.vendor-form-box textarea{

    height:120px;

    resize:none;

}



.vendor-form-box select option{

    color:#111;

}



.vendor-form-box button{

    padding:17px;

    border:none;

    border-radius:40px;

    background:linear-gradient(
    90deg,
    #e76522,
    #f3b64b
    );

    color:#1b0e06;

    font-weight:900;

    font-size:15px;

    cursor:pointer;

}

#vendor-submit:disabled{opacity:.6;cursor:not-allowed;}
.form-status{display:none;margin:0;padding:12px 16px;border-radius:12px;font-size:14px;font-weight:600;text-align:center;border:1px solid rgba(255,245,223,.15);}
.form-success{display:block;background:rgba(76,175,80,.15);color:#a5d6a7;}
.form-error{display:block;background:rgba(244,67,54,.15);color:#ff8a80;}





/* MOBILE */


@media(max-width:900px){


    .vendor-interest{

        padding:80px 25px;

    }


    .vendor-container{

        grid-template-columns:1fr;

    }


    .vendor-story,
    .vendor-form-box{

        padding:35px;

    }


}




