:root{
  --dark:#2b2620;
  --cream:#f1ece2;
  --near-black:#100d0a;
  --ink:#2b2620;
  --muted:#8a8172;
  --line:rgba(255,255,255,.4);
}
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  font-family:'Jost',sans-serif;
  font-weight:300;
  color:var(--ink);
  background:var(--cream);
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
}
img{display:block;max-width:100%}
h1,h2{
  font-family:'Cormorant Garamond',serif;
  font-weight:400;
  line-height:1.15;
  letter-spacing:.01em;
}
a{color:inherit;text-decoration:none}

/* ---------- HEADER ---------- */
.site-header{
  position:absolute;top:0;left:0;right:0;z-index:20;
  display:flex;align-items:center;justify-content:space-between;
  padding:34px 46px;
  color:#fff;
}
.brand-name{
  font-family:'Cormorant Garamond',serif;
  font-size:22px;letter-spacing:.42em;display:block;
}
.brand-tag{
  font-size:9px;letter-spacing:.34em;text-transform:uppercase;
  display:block;margin-top:4px;opacity:.8;
}
.access-btn{
  font-size:11px;letter-spacing:.28em;text-transform:uppercase;
  color:#f4efe6;padding:13px 30px;
  border:1px solid rgba(244,239,230,.55);
  transition:background-color .3s,color .3s,letter-spacing .3s;
}
.access-btn:hover{
  background:#f4efe6;color:#2b2620;letter-spacing:.34em;
}

/* ---------- HERO ---------- */
.hero{position:relative;min-height:100vh;display:flex;align-items:center;overflow:hidden}
.hero-img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.hero-overlay{
  position:absolute;inset:0;
  background:linear-gradient(100deg,rgba(20,17,13,.92) 0%,rgba(28,23,18,.6) 34%,rgba(28,23,18,.12) 60%,rgba(28,23,18,.28) 100%);
}
.hero-content{position:relative;z-index:5;color:#f4efe6;padding:0 46px;max-width:640px;margin-left:20px}
.hero h1{font-size:56px;font-weight:300}
.hero-sub{
  margin-top:30px;font-size:13px;letter-spacing:.06em;line-height:1.9;color:#e7e0d3;
}
.btn-line{
  display:inline-block;margin-top:40px;
  font-size:11px;letter-spacing:.28em;text-transform:uppercase;color:#f4efe6;
  padding-bottom:10px;border-bottom:1px solid rgba(244,239,230,.5);
  transition:letter-spacing .3s,border-color .3s;
}
.btn-line span{margin-left:18px}
.btn-line:hover{letter-spacing:.36em;border-color:#f4efe6}
.hero-side{
  position:absolute;right:56px;top:50%;transform:translateY(-50%);z-index:5;
  font-size:10px;letter-spacing:.3em;text-transform:uppercase;color:#e7e0d3;
  text-align:right;line-height:2.4;
}
.hero-place{
  position:absolute;right:56px;bottom:52px;z-index:5;
  font-size:10px;letter-spacing:.28em;text-transform:uppercase;color:#d9d1c2;
  text-align:right;line-height:2.2;
}

/* ---------- SOBRE ---------- */
.about{
  display:grid;grid-template-columns:1fr 1fr;gap:80px;
  padding:120px 90px;align-items:center;
}
.about-gallery{
  display:grid;grid-template-columns:1fr 1fr;
  grid-template-rows:250px 262px;
  gap:20px;
}
.about-gallery figure{overflow:hidden}
.about-gallery img{width:100%;height:100%;object-fit:cover}
.about-gallery .g1{grid-row:1 / span 2}
.about-text h2{font-size:38px;margin-bottom:36px}
.about-text p{
  font-size:13px;letter-spacing:.05em;line-height:2;color:#4a4238;
  margin-bottom:24px;max-width:440px;
}

/* ---------- STORIES ---------- */
.stories{position:relative;padding:130px 90px;color:#efe8db;overflow:hidden}
.stories-bg{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.stories-overlay{position:absolute;inset:0;background:linear-gradient(90deg,rgba(12,10,8,.9),rgba(12,10,8,.55))}
.stories-content{position:relative;z-index:5}
.stories h2{font-size:38px;margin-bottom:70px}
.quotes{display:grid;grid-template-columns:repeat(3,1fr);gap:56px;max-width:1100px}
.quotes blockquote p{
  font-family:'Cormorant Garamond',serif;font-size:19px;font-style:italic;
  line-height:1.6;color:#e9e1d3;
}
.quotes cite{
  display:block;margin-top:22px;font-style:normal;
  font-size:10px;letter-spacing:.26em;text-transform:uppercase;color:#b3a892;
}

/* ---------- CONTACT ---------- */
.contact{position:relative;padding:120px 90px;overflow:hidden}
.contact-bg{position:absolute;inset:0;z-index:0;width:100%;height:100%;object-fit:cover}
.contact::after{
  content:"";position:absolute;inset:0;z-index:1;pointer-events:none;
  background:linear-gradient(105deg,rgba(238,232,222,.95) 0%,rgba(238,232,222,.75) 36%,rgba(238,232,222,.3) 68%,rgba(238,232,222,.12) 100%);
}
.contact-inner{
  position:relative;z-index:5;
  display:grid;grid-template-columns:1fr 1fr;gap:70px;align-items:center;
  max-width:1180px;
}
.contact-intro h2{font-size:40px;margin-bottom:28px;color:#1c1712}
.contact-intro p{font-size:13px;letter-spacing:.05em;line-height:2;color:#2e2820}

/* The lace invitation PNG is the form background, STRETCHED to exactly cover the
   padding box (background-size:100% 100%). Height is driven by the fields, so the
   paper always wraps them — content can never overflow the lace, at any width or
   on mobile. Every inner measure is in cqw (of .form-wrap) so the whole card
   keeps identical proportions when it scales down. */
.form-wrap{container-type:inline-size;position:relative}
.contact-form{
  background:url('assets/site/form-paper.png') center/100% 100% no-repeat;
  filter:drop-shadow(0 30px 60px rgba(40,30,20,.35));
  display:flex;flex-direction:column;
  padding:15.5cqw 17cqw;
}
.contact-form label{
  display:block;margin-bottom:3.6cqw;
  font-size:clamp(9px,2.3cqw,11px);
  letter-spacing:.2em;text-transform:uppercase;
  font-weight:500;color:#4a453e;
}
.contact-form label:last-of-type{margin-bottom:4cqw}
.contact-form input,
.contact-form textarea{
  width:100%;margin-top:1.3cqw;
  border:none;border-bottom:1px solid #a99d87;background:transparent;
  font-family:'Jost',sans-serif;font-size:clamp(11px,2.8cqw,15px);
  color:#3c372f;padding:1cqw 0;letter-spacing:.04em;
}
.contact-form textarea{resize:none;line-height:1.5}
.contact-form input:focus,
.contact-form textarea:focus{outline:none;border-color:#3c372f}
.contact-form .btn-line{
  align-self:center;margin:2.5cqw 0 0;
  font-family:'Jost',sans-serif;font-weight:500;
  font-size:clamp(9px,2.2cqw,11px);letter-spacing:.24em;
  color:#4a453e;cursor:pointer;background:none;
  border:0;border-bottom:1px solid #4a453e;
  padding:0 0 2.2cqw;
}
.contact-form .btn-line span{margin-left:2.6cqw}
.contact-form .btn-line:hover{color:#2b2620;border-color:#2b2620;letter-spacing:.3em}

/* ---------- FOOTER ---------- */
.site-footer{position:relative;padding:60px 60px;color:#e4ddce;overflow:hidden}
.footer-bg{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.footer-overlay{position:absolute;inset:0;background:rgba(14,12,10,.72)}
.footer-inner{
  position:relative;z-index:5;
  display:flex;align-items:center;justify-content:space-between;gap:40px;
}
.footer-nav{display:flex;gap:30px}
.footer-nav a{font-size:10px;letter-spacing:.22em;text-transform:uppercase;opacity:.85}
.footer-nav a:hover{opacity:.55}
.footer-slogan{
  font-size:10px;letter-spacing:.24em;text-transform:uppercase;
  text-align:right;line-height:2.2;padding-left:40px;border-left:1px solid rgba(255,255,255,.3);
}

/* ---------- RESPONSIVE ---------- */
@media(max-width:1000px){
  .site-header{padding:20px 20px}
  .brand-name{font-size:16px;letter-spacing:.28em}
  .brand-tag{font-size:7px;letter-spacing:.24em}
  .access-btn{font-size:9px;letter-spacing:.2em;padding:10px 18px}
  .hero h1{font-size:40px}
  .hero-side{display:none}
  .about{grid-template-columns:1fr;gap:48px;padding:80px 28px}
  .about-text h2{font-size:30px}
  .stories{padding:80px 28px}
  .quotes{grid-template-columns:1fr;gap:40px}
  .stories h2,.about-text h2{font-size:30px}
  .contact{padding:80px 28px}
  .contact::after{background:rgba(238,232,222,.92)}
  .contact-inner{grid-template-columns:1fr;gap:40px}
  .form-wrap{max-width:440px;margin:0 auto;width:100%}
  .footer-inner{flex-direction:column;text-align:center}
  .footer-slogan{border-left:none;padding-left:0;text-align:center}
}
@media(max-width:520px){
  .hero-content{padding:0 24px;margin-left:0}
  .hero h1{font-size:32px}
  .about-gallery{grid-template-columns:1fr}
  .about-gallery .g1{grid-row:auto}
  .about-gallery .g1 img{min-height:0;height:360px}
}
