: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:
    linear-gradient(rgba(244,237,228,0.85), rgba(244,237,228,0.85)),
    url("../images/paper-texture.jpg");
  background-size:450px;
  background-repeat:repeat;
  line-height:1.6;
}

a{
  color:var(--red);
  text-decoration:none;
}

a:hover{
  color:var(--green);
}

.container{
  width:min(1150px,92%);
  margin:auto;
}

.container > h2{
  margin:56px 0 20px;
}

.container > h2:first-child{
  margin-top:0;
}

/* HEADER */

.site-header{
  background:var(--white);
  border-bottom:4px solid var(--red);
  position:sticky;
  top:0;
  z-index:1000;
  box-shadow:0 8px 20px rgba(0,0,0,0.16);
}

.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:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.btn:hover{
  background:var(--gold);
  border-color:var(--gold);
  color:#2b160f;
  transform:translateY(-1px);
}

.btn-secondary{
  background:transparent;
  color:var(--red);
  border:2px solid var(--red);
}

.btn-secondary:hover{
  background:var(--red);
  color:#fff;
  border-color:var(--red);
  transform:translateY(-1px);
}

.btn-small{
  padding:8px 14px;
}

nav .btn{
  color:#fff;
}

nav .btn:hover{
  color:#2b160f;
}

/* HERO */

.hero{
  padding:80px 0;
  background:
    linear-gradient(rgba(244,237,228,0.78), rgba(244,237,228,0.78)),
    radial-gradient(circle at top right, rgba(212,175,55,0.14), transparent 30%),
    url("../images/paper-texture.jpg");
  background-size:auto, auto, 450px;
  background-repeat:no-repeat, no-repeat, repeat;
}

.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.6rem,4.8vw,4.2rem);
  line-height:1.05;
  margin:0 0 20px;
  color:var(--red-dark);
}

.hero .lead{
  font-size:1.2rem;
  color:var(--muted);
  margin:0 0 18px;
}

.hero-note{
  margin-top:10px;
  font-weight:600;
  color:var(--red-dark);
}

.actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:10px;
}

.hero-image-wrap{
  display:flex;
  justify-content:center;
}

.hero-image{
  width:100%;
  max-width:720px;
  border-radius:20px;
  border:6px solid #d4af37;
  box-shadow:
    0 20px 40px rgba(0,0,0,0.22),
    0 0 0 8px rgba(255,255,255,0.6),
    0 0 18px rgba(202,164,59,0.25);
}

/* 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;
}

/* PANELS */

.panel{
  background:#fffdf9;
  border:1px solid var(--line);
  border-top:6px solid var(--gold);
  border-radius:18px;
  padding:30px;
  box-shadow:0 6px 18px rgba(0,0,0,0.08);
}

.panel p{
  margin-top:18px;
  color:#444;
  font-style:italic;
}

.panel ul{
  padding-left:22px;
}

.panel ul li{
  margin-bottom:8px;
}

/* CARD LAYOUT */

.cards{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  align-items:start;
}

.card{
  background:var(--white);
  border:1px solid var(--line);
  border-top:4px solid var(--red);
  border-radius:14px;
  padding:24px;
  box-shadow:0 8px 20px rgba(0,0,0,0.08);
  height:auto;
}

.card h3{
  margin-top:0;
  margin-bottom:12px;
  color:var(--red-dark);
}

.price{
  font-size:1.25rem;
  font-weight:bold;
  color:var(--green);
  margin:14px 0 18px;
}

/* BOOKING BUTTON */

.book-btn{
  display:inline-block;
  margin-top:16px;
  padding:10px 18px;
  background:var(--red);
  color:#fff;
  text-decoration:none;
  font-weight:600;
  border-radius:999px;
  text-align:center;
}

.book-btn:hover{
  background:var(--red-dark);
  color:#fff;
}

/* 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;
}

.portfolio-highlight {
  margin-bottom: 40px;
}

.portfolio-highlight h3 {
  margin-bottom: 10px;
}

.portfolio-highlight p {
  margin-bottom: 10px;
}

.portfolio-highlight img {
  margin-top: 15px;
  border: 2px solid #c9a34a;
  border-radius: 6px;
  max-width: 100%;
  height: auto;
}

/* 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);
}

.gallery-grid img {
  transition: transform 0.2s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

/* 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;
}

/* INFO NOTE */

.info-note{
  margin-top:18px;
  padding:14px 16px;
  background:#fff8e6;
  border-left:4px solid #caa43b;
  border-radius:6px;
  font-size:0.95rem;
  line-height:1.6;
}

/* 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:1000px){
  .cards{
    grid-template-columns:repeat(2,1fr);
  }
}

@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;
  }

  .hero-image{
    max-width:640px;
  }
}

@media (max-width:640px){

  .nav-toggle{
    display:inline-block;
  }

  .nav{
    width:100%;
  }

  .brand{
    font-size:1.3rem;
  }

  .hero{
    padding:55px 0;
  }

  .hero h1{
    font-size:clamp(2.3rem,10vw,3.3rem);
  }

  .hero .lead{
    font-size:1.08rem;
  }

  .panel,
  .card{
    padding:20px;
  }

  .embed-box iframe{
    min-height:650px;
  }

  .cards{
    grid-template-columns:1fr;
  }
}