:root{
  --bg:#f4ede4;
  --bg-alt:#fff8f2;
  --text:#2b160f;
  --muted:#6e4d40;

  --red:#b71c1c;
  --red-dark:#7f1212;

  --green:#1f5a3f;
  --green-dark:#153d2b;

  --gold:#d4af37;

  --line:#d9c7b4;
  --white:#ffffff;

  --shadow:0 12px 30px rgba(0,0,0,0.14);
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Georgia,"Times New Roman",serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
}

img{
  max-width:100%;
  display:block;
}

a{
  color:var(--red);
  text-decoration:none;
}

a:hover{
  color:var(--green);
}

.container{
  width:min(1150px,92%);
  margin:auto;
}

/* HEADER */

.site-header{
  background:var(--white);
  border-bottom:4px solid var(--red);
  position:sticky;
  top:0;
  z-index:1000;
}

.nav-wrap{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 0;
  gap:20px;
}

.brand{
  font-size:1.5rem;
  font-weight:bold;
  color:var(--red);
}

.nav-toggle{
  display:none;
  background:var(--red);
  color:#fff;
  border:none;
  border-radius:999px;
  padding:10px 16px;
  font-weight:bold;
  cursor:pointer;
}

.nav{
  list-style:none;
  display:flex;
  gap:20px;
  margin:0;
  padding:0;
  align-items:center;
}

.nav a{
  color:var(--red);
  font-weight:600;
}

.nav a:hover,
.nav a.active{
  color:var(--green);
}

/* BUTTONS */

.btn{
  display:inline-block;
  background:var(--red);
  color:#fff;
  padding:12px 22px;
  border-radius:999px;
  border:2px solid var(--red);
  font-weight:bold;
  transition:0.2s ease;
}

.btn:hover{
  background:var(--gold);
  border-color:var(--gold);
  color:#2b160f;
}

.btn-secondary{
  background:transparent;
  color:#fff;
  border-color:#fff;
}

.btn-secondary:hover{
  background:#fff;
  color:var(--red);
  border-color:#fff;
}

.btn-small{
  padding:8px 14px;
}

/* HERO */

.hero{
  padding:80px 0;
  background:
    radial-gradient(circle at top right, rgba(212,175,55,0.2), transparent 25%),
    linear-gradient(135deg,#f8f1e8 0%,#efe0cf 100%);
}

.hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}

.hero-text{
  max-width:620px;
}

.eyebrow{
  text-transform:uppercase;
  letter-spacing:0.1em;
  font-size:0.85rem;
  color:var(--green);
  font-weight:bold;
  margin-bottom:14px;
}

.hero h1{
  font-size:clamp(2.8rem,5vw,4.5rem);
  line-height:1.05;
  margin:0 0 20px 0;
  color:var(--red-dark);
}

.hero .lead{
  font-size:1.2rem;
  color:var(--muted);
  margin-bottom:28px;
}

.actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.hero-image-wrap{
  display:flex;
  justify-content:center;
}

.hero-image{
  width:100%;
  max-width:720px;
  border-radius:20px;
  border:5px solid var(--gold);
  box-shadow:
    0 16px 34px rgba(0,0,0,0.18),
    0 0 0 8px rgba(255,255,255,0.6);
}

/* PAGE HEADER */

.page-header{
  padding:60px 0 30px;
}

.page-header h1{
  margin:0 0 12px;
  color:var(--red-dark);
  font-size:clamp(2rem,4vw,3.2rem);
}

.lead{
  font-size:1.15rem;
  color:var(--muted);
  max-width:820px;
}

/* GENERAL SECTIONS */

.section{
  padding:70px 0;
}

.section-alt{
  background:var(--bg-alt);
}

h1,h2,h3{
  line-height:1.15;
}

h2{
  color:var(--red-dark);
  margin-top:0;
}

.grid-2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
}

.panel{
  background:var(--white);
  border:1px solid var(--line);
  border-top:6px solid var(--gold);
  border-radius:18px;
  padding:30px;
  box-shadow:var(--shadow);
}

.panel ul{
  padding-left:22px;
}

/* CARD LAYOUT */

.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:24px;
}

.card{
  background:var(--white);
  border:1px solid var(--line);
  border-top:6px solid var(--red);
  border-radius:18px;
  padding:24px;
  box-shadow:var(--shadow);
}

.card h3{
  margin-top:0;
  margin-bottom:12px;
  color:var(--red-dark);
}

.price{
  font-size:1.25rem;
  font-weight:bold;
  color:var(--green);
  margin-bottom:14px;
}

/* FEATURE LIST */

.feature-list{
  margin:0;
  padding-left:22px;
}

.feature-list li{
  margin-bottom:10px;
}

.note{
  color:var(--muted);
  font-style:italic;
}

/* PORTFOLIO */

.portfolio-list{
  padding-left:22px;
}

.portfolio-list li{
  margin-bottom:18px;
  line-height:1.5;
}

.portfolio-list img{
  max-width:100%;
  border-radius:10px;
  margin-top:10px;
  border:3px solid var(--gold);
  box-shadow:var(--shadow);
}

blockquote{
  background:#faf6f0;
  border-left:4px solid var(--red);
  padding:10px 14px;
  margin:10px 0;
  font-style:italic;
  color:var(--muted);
  border-radius:8px;
}

/* GALLERY */

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.gallery-grid img{
  width:100%;
  border-radius:14px;
  border:4px solid var(--gold);
  box-shadow:var(--shadow);
}

/* EMBEDS */

.embed-box iframe{
  width:100%;
  min-height:900px;
  border:none;
  border-radius:16px;
  box-shadow:var(--shadow);
}

/* CTA */

.cta-band{
  background:linear-gradient(90deg,var(--green),var(--green-dark));
  color:#fff;
  padding:44px 0;
  border-top:5px solid var(--gold);
}

.cta-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
}

.cta-band h2,
.cta-band p{
  color:#fff;
}

/* FOOTER */

.site-footer{
  border-top:4px solid var(--red);
  background:var(--white);
  padding:26px 0;
  color:var(--muted);
}

.site-footer-inner{
  display:flex;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}

.small{
  margin:0;
  font-size:0.95rem;
}

/* MOBILE */

@media (max-width:900px){

  .hero-grid,
  .grid-2,
  .gallery-grid{
    grid-template-columns:1fr;
  }

  .nav-wrap{
    flex-direction:column;
    align-items:flex-start;
  }

  .nav{
    flex-wrap:wrap;
    gap:12px 16px;
  }

  .cta-row{
    flex-direction:column;
    align-items:flex-start;
  }

  .page-header{
    padding:45px 0 20px;
  }

  .section{
    padding:50px 0;
  }
}

@media (max-width:640px){

  .nav-toggle{
    display:inline-block;
  }

  .nav{
    width:100%;
  }

  .brand{
    font-size:1.3rem;
  }

  .hero{
    padding:55px 0;
  }

  .panel,
  .card{
    padding:20px;
  }

  .embed-box iframe{
    min-height:650px;
  }
}