/* ========================================
   COMPLETE STANDALONE CONTACT CSS
   NO OTHER CSS REQUIRED
======================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ========================================
   ROOT
======================================== */

:root{
  --bg:#090909;
  --bg2:#141414;
  --gold:#c8a46a;
  --gold-soft:#e0c28e;
  --text:#f1ece4;
  --muted:#b8b1a8;
  --border:rgba(255,255,255,.08);
}

/* ========================================
   RESET
======================================== */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  background:
  radial-gradient(
    circle at top,
    rgba(255,255,255,.02),
    transparent 30%
  ),
  var(--bg);

  color:var(--text);

  font-family:'Inter',sans-serif;

  overflow-x:hidden;
}

img{
  width:100%;
  display:block;
}

a{
  text-decoration:none;
  color:inherit;
}

button,
input,
textarea{
  font-family:'Inter',sans-serif;
}

/* ========================================
   GRAIN
======================================== */

.grain{
  position:fixed;

  inset:0;

  pointer-events:none;

  opacity:.045;

  z-index:999;

  background-image:
  url("https://www.transparenttextures.com/patterns/paper-fibers.png");
}

/* ========================================
   NAVBAR
======================================== */

.navbar{
  position:fixed;

  top:0;
  left:0;

  width:100%;

  z-index:100;

  padding:26px 7%;

  display:flex;
  justify-content:space-between;
  align-items:center;

  background:rgba(0,0,0,.22);

  backdrop-filter:blur(18px);

  border-bottom:1px solid rgba(255,255,255,.05);
}

.logo{
  font-size:38px;

  color:var(--gold);

  font-family:'Cormorant Garamond',serif;
}

nav{
  display:flex;

  gap:36px;
}

nav a{
  position:relative;

  font-size:13px;

  text-transform:uppercase;

  letter-spacing:2px;

  transition:.35s;
}

nav a::after{
  content:"";

  position:absolute;

  left:0;
  bottom:-8px;

  width:0%;
  height:1px;

  background:var(--gold);

  transition:.35s;
}

nav a:hover{
  color:var(--gold);
}

nav a:hover::after{
  width:100%;
}

/* ========================================
   HERO
======================================== */

.contact-hero{
  position:relative;

  height:72vh;

  overflow:hidden;
}

.contact-hero img{
  width:100%;
  height:100%;

  object-fit:cover;

  transform:scale(1.08);

  filter:brightness(.72);
}

.contact-overlay{
  position:absolute;

  inset:0;

  background:
  linear-gradient(
    to bottom,
    rgba(0,0,0,.35),
    rgba(0,0,0,.9)
  );
}

.contact-hero-content{
  position:absolute;

  top:50%;
  left:8%;

  transform:translateY(-50%);

  max-width:820px;

  z-index:5;
}

.contact-hero-content span{
  color:var(--gold);

  text-transform:uppercase;

  letter-spacing:5px;

  font-size:12px;
}

.contact-hero-content h1{
  font-size:110px;

  line-height:.9;

  margin:28px 0;

  font-family:'Cormorant Garamond',serif;

  text-shadow:
  0 10px 40px rgba(0,0,0,.45);
}

.contact-hero-content p{
  color:var(--muted);

  font-size:18px;

  line-height:2;

  max-width:700px;
}

/* ========================================
   CONTACT SECTION
======================================== */

.contact-section{
  padding:140px 7%;
}

/* ========================================
   CONTACT GRID
======================================== */

.contact-grid{
  display:grid;

  grid-template-columns:1fr .8fr;

  gap:40px;
}

/* ========================================
   FORM CARD
======================================== */

.contact-form-card{
  padding:50px;

  border-radius:28px;

  border:1px solid rgba(255,255,255,.08);

  background:
  linear-gradient(
    145deg,
    rgba(255,255,255,.03),
    rgba(255,255,255,.01)
  );

  backdrop-filter:blur(20px);
}

.contact-form-card span{
  color:var(--gold);

  text-transform:uppercase;

  letter-spacing:4px;

  font-size:12px;
}

.contact-form-card h2{
  margin:18px 0 40px;

  font-size:64px;

  line-height:.95;

  font-family:'Cormorant Garamond',serif;
}

/* ========================================
   FORM
======================================== */

.contact-form{
  display:flex;

  flex-direction:column;

  gap:22px;
}

.contact-form input,
.contact-form textarea{
  width:100%;

  background:rgba(255,255,255,.03);

  border:1px solid rgba(255,255,255,.08);

  padding:22px;

  border-radius:18px;

  color:var(--text);

  font-size:15px;

  transition:.35s;
}

.contact-form textarea{
  min-height:220px;

  resize:none;
}

.contact-form input:focus,
.contact-form textarea:focus{
  outline:none;

  border-color:rgba(200,164,106,.45);

  box-shadow:
  0 0 30px rgba(200,164,106,.08);
}

/* ========================================
   BUTTON
======================================== */

.contact-btn{
  border:none;

  background:var(--gold);

  color:#111;

  padding:18px 32px;

  border-radius:999px;

  font-weight:600;

  cursor:pointer;

  transition:.4s;
}

.contact-btn:hover{
  transform:translateY(-4px);

  box-shadow:
  0 18px 40px rgba(200,164,106,.22);
}

/* ========================================
   INFO PANEL
======================================== */

.contact-info{
  display:flex;

  flex-direction:column;

  gap:24px;
}

.info-card{
  padding:36px;

  border-radius:24px;

  border:1px solid rgba(255,255,255,.08);

  background:
  linear-gradient(
    145deg,
    rgba(255,255,255,.025),
    rgba(255,255,255,.01)
  );

  transition:.4s;
}

.info-card:hover{
  transform:translateY(-6px);

  border-color:rgba(200,164,106,.45);
}

.info-card span{
  color:var(--gold);

  text-transform:uppercase;

  letter-spacing:3px;

  font-size:11px;
}

.info-card h3{
  margin:16px 0 14px;

  font-size:34px;

  font-family:'Cormorant Garamond',serif;
}

.info-card p{
  color:var(--muted);

  line-height:1.9;
}

/* ========================================
   FOOTER
======================================== */

footer{
  padding:50px 8%;

  border-top:1px solid rgba(255,255,255,.06);

  text-align:center;

  color:var(--muted);

  font-size:14px;
}

/* ========================================
   RESPONSIVE
======================================== */

@media(max-width:1100px){

  .contact-grid{
    grid-template-columns:1fr;
  }

}

@media(max-width:768px){



  nav.active{
    right:0 !important;


}
  .hamburger{
    display:block;
  }

  nav{
    position:fixed;

    top:0;
    right:-100%;

    width:320px;
    height:100vh;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    gap:30px;

    background:rgba(8,8,8,.97);

    backdrop-filter:blur(30px);

    transition:.45s ease;

    z-index:1000;
  }

  nav.active{
    right:0;
  }

  .contact-hero{
    height:62vh;
  }

  .contact-hero-content h1{
    font-size:58px;
  }

  .contact-form-card h2{
    font-size:42px;
  }

  .contact-form-card{
    padding:34px;
  }

}
/* HAMBURGER FIX */

.hamburger{
  display:none;
  width:48px;
  height:48px;
  border:none;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:14px;
  cursor:pointer;
  z-index:1001;
}

.hamburger span{
  display:block;
  width:22px;
  height:2px;
  background:var(--text);
  margin:5px auto;
  transition:.35s ease;
}

.hamburger.active span:nth-child(1){
  transform:translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2){
  opacity:0;
}

.hamburger.active span:nth-child(3){
  transform:translateY(-7px) rotate(-45deg);
}

@media(max-width:768px){

  .hamburger{
    display:block;
  }

  nav{
    position:fixed;
    top:0;
    right:-335px;

    width:320px;
    height:100vh;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    gap:30px;

    background:rgba(8,8,8,.97);

    backdrop-filter:blur(30px);

    transition:.45s ease;

    z-index:1000;
  }

  nav.active{
    right:0 !important;
  }
}