:root {
	/* Refined, desaturated luxury palette */
	--bg: #FDFCF8;      /* Alabaster/Ivory */
	--bg2: #F4F2EA;     /* Soft Oat for alternate sections */
	--card: #FFFFFF;    
	--ink: #1A1A1A;     /* Softer than pure black, looks like expensive ink */
	--muted: #736F66;   /* Warmer, deeper grey for secondary text */

	/* Champagne Gold - less yellow, more metallic */
	--gold: #C2A878;
	--gold2: #D1B888;
	--goldDark: #9E8555;
	--sand: #EAE3D2;

	--radius: 12px;     /* Slightly sharper corners (12px instead of 18px) feel more editorial/mature */
	--shadow: 0 24px 60px rgba(26, 26, 26, 0.08); /* Softer, wider spread */
	--shadow2: 0 10px 30px rgba(26, 26, 26, 0.04);
	--line: rgba(26, 26, 26, 0.08);
	
  --font-brand: "Telma", cursive;
	--font-body: "Montserrat", system-ui, -apple-system, sans-serif;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body {
    /* Simplify the background gradient so it doesn't fight the content */
	background: var(--bg);
  font-family: var(--font-body); /* This will now pull Montserrat */
}

img{max-width:100%; display:block}

.container{
  width:min(1120px, calc(100% - 40px));
  margin-inline:auto;
}

.section { padding: 120px 0; }
.section.alt{
  background:
    radial-gradient(900px 520px at 18% 15%, rgba(233,205,139,.22), transparent 58%),
    linear-gradient(180deg, rgba(254,247,200,.65), rgba(255,255,255,0));
  border-top: 1px solid rgba(28, 26, 22, 0.06);
  border-bottom: 1px solid rgba(28, 26, 22, 0.06);
}

.topbar{
  background: rgba(202,157,39,.14);
  border-bottom: 1px solid rgba(28, 26, 22, 0.08);
  font-family: telma;
  font-weight: 600;
}
.topbar p{
  margin:0;
  padding:10px 18px;
  text-align:center;
  font-size: 20px;
  color: rgba(28,26,22,.82);
}

/* Nav */
.nav{
  position: sticky;
  top:0;
  z-index: 50;
  background: rgba(255, 253, 246, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(28, 26, 22, 0.08);
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 20px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color:inherit;
  min-width: 180px;
}
.brand img{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(28,26,22,.08);
  box-shadow: var(--shadow2);
  object-fit: cover;
}
.brandText{display:flex; flex-direction:column; line-height:1.05}
.brandName{
  font-family: "Cormorant Garamond", serif;
  letter-spacing: .2px;
  font-weight: 700;
  font-size: 20px;
}
.brandTag{ font-size: 12px; color: rgba(28,26,22,.70); }

.navLinks{
  display:flex;
  align-items:center;
  gap: 18px;
}
.navLinks a{
  text-decoration:none;
  color: rgba(28,26,22,.88);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 10px;
  border-radius: 12px;
}
.navLinks a:hover{
  background: rgba(202,157,39,.12);
}

.navToggle{
  display:none;
  border: 1px solid rgba(28,26,22,.12);
  background: rgba(255,255,255,.5);
  border-radius: 14px;
  padding: 10px;
  box-shadow: var(--shadow2);
}
.navToggle span{
  display:block;
  width: 22px;
  height: 2px;
  background: rgba(28,26,22,.86);
  margin: 5px 0;
  border-radius: 2px;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius: 16px;
  padding: 12px 16px;
  text-decoration:none;
  font-weight: 600;
  color: rgba(28,26,22,.95);
  border: 1px solid rgba(28,26,22,.12);
  background: linear-gradient(135deg, rgba(202,157,39,.28), rgba(225,180,64,.22));
  box-shadow: var(--shadow2);
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover{ transform: translateY(-1px); box-shadow: var(--shadow); }
.btn:active{ transform: translateY(0px); }

.btnGhost{
  background: rgba(255,255,255,.55);
}
.btnSm{ padding: 10px 14px; border-radius: 14px; }
.btnFull{ width:100%; }

.pill{
  display:inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  border: 1px solid rgba(28,26,22,.10);
  background: rgba(255,255,255,.5);
  color: rgba(28,26,22,.78);
}

/* Type */
h1, h2, h3{
  font-family: "Cormorant Garamond", serif;
  margin: 0 0 12px;
}
h1 {
  font-size: clamp(48px, 6vw, 82px); /* Slightly larger on desktop */
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 500; /* Dropping from 700 to 500 makes Garamond look more elegant */
}

h2 {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 500;
  letter-spacing: -0.01em;
}
h3{
  font-size: 24px;
  line-height: 1.12;
}
.lead{
  font-size: 16px;
  line-height: 1.75;
  color: rgba(28,26,22,.78);
  margin: 16px 0 0;
  font-family:"Cormorant Garamond", serif;
}

.sectionHead{
  max-width: 700px;
  margin-bottom: 28px;
  
}
.sectionHead p{
  margin: 10px 0 0;
  color: rgba(28,26,22,.72);
  line-height: 1.7;
}

/* Hero */
.heroGrid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 30px;
  align-items: center;
}
.heroCtas{ display:flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }

.heroBadges{
  margin-top: 22px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.badge{
  padding: 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(28,26,22,.08);
}
.badgeTitle{ display:block; font-weight: 700; font-size: 13px; }
.badgeSub{ display:block; font-size: 12px; color: rgba(28,26,22,.70); margin-top: 2px; }

.heroCard{
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(28,26,22,.10);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
}
.mock{
  border-radius: 16px;
  overflow:hidden;
  border: 1px solid rgba(28,26,22,.10);
  background: linear-gradient(180deg, rgba(254,247,200,.65), rgba(255,255,255,.1));
}
.mockTop{
  display:flex;
  gap:8px;
  padding: 10px 12px;
  background: rgba(255,255,255,.55);
  border-bottom: 1px solid rgba(28,26,22,.08);
}
.dot{width:9px;height:9px;border-radius:999px;background: rgba(28,26,22,.15)}
.mockBody{ padding: 16px; }
.mockLine{
  height: 10px;
  border-radius: 999px;
  background: rgba(28,26,22,.10);
  margin: 10px 0;
}
.w80{ width:80% } .w65{ width:65% } .w90{ width:90% } .w70{ width:70% } .w55{ width:55% }
.mockBlock{
  height: 160px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(202,157,39,.26), rgba(233,205,139,.26));
  border: 1px dashed rgba(28,26,22,.16);
  margin: 16px 0;
}
.mockPills{ display:flex; gap:8px; margin-top: 14px; }
.mockPill{
  width: 58px;
  height: 12px;
  border-radius: 999px;
  background: rgba(202,157,39,.26);
  border: 1px solid rgba(28,26,22,.08);
}
.heroCardFooter{
  margin-top: 12px;
  font-size: 12px;
  color: rgba(28,26,22,.72);
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content:center;
}

/* Cards */
.cards{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.card{
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.60);
  border: 1px solid rgba(28,26,22,.10);
  box-shadow: var(--shadow2);
}
.card p{ margin: 8px 0 0; color: rgba(28,26,22,.72); line-height:1.7; }

/* Pricing */
.pricing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch; /* Forces cards to be equal height */
}
.priceCard {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 40px 30px;
    
    /* THE FIX: Turn the card into a flex container */
    display: flex;
    flex-direction: column; 
    height: 100%; 
}
.priceCard.featured{
  border-color: rgba(202,157,39,.38);
  box-shadow: 0 22px 60px rgba(202,157,39,.18);
  transform: translateY(-2px);
}
.flag{
  position:absolute;
  top: 14px;
  right: 14px;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(202,157,39,.18);
  border: 1px solid rgba(28,26,22,.10);
}
.priceTop{ padding-right: 92px; }
.price{ margin: 8px 0 0; font-family:"Cormorant Garamond", serif; font-size: 26px; font-weight:700; }
.price span{ font-size: 44px; letter-spacing:-.4px; }
.priceSub{ margin: 0; color: rgba(28,26,22,.72); }
.priceCard ul{
  margin: 14px 0 16px;
  padding-left: 18px;
  color: rgba(28,26,22,.74);
  line-height: 1.85;
}
.priceCard li{ margin: 2px 0; }

/* Gallery */
.gallery{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.shot{
  text-decoration:none;
  color: inherit;
  border-radius: 22px;
  overflow:hidden;
  border: 1px solid rgba(28,26,22,.10);
  background: rgba(255,255,255,.60);
  box-shadow: var(--shadow2);
  transition: transform .15s ease, box-shadow .15s ease;
}
.shot:hover{ transform: translateY(-2px); box-shadow: var(--shadow); }
.shotThumb{ height: 150px; }
.t1{ background: radial-gradient(circle at 25% 25%, rgba(202,157,39,.45), rgba(28,26,22,.88)); }
.t2{ background: linear-gradient(135deg, rgba(254,247,200,.95), rgba(233,205,139,.55)); }
.t3{ background: radial-gradient(circle at 70% 30%, rgba(225,180,64,.42), rgba(255,255,255,.65)); }
.t4{ background: linear-gradient(135deg, rgba(28,26,22,.12), rgba(202,157,39,.22)); }
.shotMeta{ padding: 14px 14px 16px; }
.shotTitle{ display:block; font-weight: 700; }
.shotSub{ display:block; margin-top: 4px; color: rgba(28,26,22,.72); font-size: 13px; }

/* Steps */
.steps{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.step{
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.60);
  border: 1px solid rgba(28,26,22,.10);
  box-shadow: var(--shadow2);
}
.stepNum{
  display:inline-block;
  font-weight: 700;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(28,26,22,.10);
  background: rgba(202,157,39,.16);
}
.step p{ margin: 10px 0 0; color: rgba(28,26,22,.72); line-height: 1.7; }

/* Quotes */
.quotes{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.quote{
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.60);
  border: 1px solid rgba(28,26,22,.10);
  box-shadow: var(--shadow2);
}
.quote blockquote{
  margin:0;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(28,26,22,.84);
}
.quote figcaption{
  margin-top: 12px;
  font-size: 13px;
  color: rgba(28,26,22,.70);
}

/* FAQ */
.faq{
  max-width: 900px;
}
.faqItem{
  width: 100%;
  border: 1px solid rgba(28,26,22,.10);
  background: rgba(255,255,255,.58);
  border-radius: 18px;
  padding: 14px 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  font-weight: 700;
  cursor:pointer;
  box-shadow: var(--shadow2);
  margin: 12px 0 0;
}
.faqPanel{
  display:none;
  padding: 12px 14px 4px;
  color: rgba(28,26,22,.72);
  line-height: 1.75;
}
.faqIcon{
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(28,26,22,.14);
  position: relative;
}
.faqIcon::before, .faqIcon::after{
  content:"";
  position:absolute;
  inset:0;
  margin:auto;
  width: 10px;
  height: 2px;
  background: rgba(28,26,22,.70);
  border-radius: 2px;
}
.faqIcon::after{
  width: 2px;
  height: 10px;
}
.faqItem[aria-expanded="true"] .faqIcon::after{ display:none; }

/* Contact */
.contactGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items:start;
}
.contactChips{ display:flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.chip{
  display:inline-flex;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(28,26,22,.10);
  background: rgba(255,255,255,.55);
  font-size: 13px;
}
.note{
  margin-top: 14px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(28,26,22,.10);
  background: rgba(202,157,39,.10);
  color: rgba(28,26,22,.80);
}
.contactForm{
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(28,26,22,.10);
  box-shadow: var(--shadow2);
}
.formRow{ display:grid; grid-template-columns: 1fr 1fr; gap: 12px; }

label{
  display:block;
  font-size: 13px;
  color: rgba(28,26,22,.75);
  font-weight: 600;
}
input, select, textarea{
  width:100%;
  margin-top: 6px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(28,26,22,.12);
  background: rgba(255,255,255,.72);
  color: rgba(28,26,22,.92);
  outline: none;
  font: inherit;
}
textarea{ resize: vertical; min-height: 120px; }
input:focus, select:focus, textarea:focus{
  border-color: rgba(202,157,39,.55);
  box-shadow: 0 0 0 4px rgba(202,157,39,.14);
}
.formHint{
  margin: 10px 0 0;
  font-size: 12px;
  color: rgba(28,26,22,.60);
  line-height: 1.6;
}

/* Footer */
.footer{
  padding: 24px 0;
  border-top: 1px solid rgba(28,26,22,.08);
  background: rgba(255,255,255,.55);
}
.footerInner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(28,26,22,.70);
}
.footerLinks{ display:flex; gap: 12px; }
.footerLinks a{
  color: rgba(28,26,22,.72);
  text-decoration:none;
  padding: 8px 10px;
  border-radius: 14px;
}
.footerLinks a:hover{ background: rgba(202,157,39,.12); }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(80px); /* Slightly longer travel distance */
  /* This bezier curve creates that "gliding" high-end feel */
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.isVisible {
  opacity: 1;
  transform: translateY(0px);
}

/* Responsive */
@media (max-width: 980px){
  .heroGrid{ grid-template-columns: 1fr; }
  .heroBadges{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: repeat(2, 1fr); }
  .pricing{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: repeat(2, 1fr); }
  .steps{ grid-template-columns: repeat(2, 1fr); }
  .quotes{ grid-template-columns: 1fr; }
  .contactGrid{ grid-template-columns: 1fr; }
}

@media (max-width: 720px){
  .navLinks{
    position: fixed;
    inset: 62px 14px auto 14px;
    display:none;
    flex-direction: column;
    align-items: stretch;
    background: rgba(255, 253, 246, 0.92);
    border: 1px solid rgba(28,26,22,.10);
    border-radius: 18px;
    padding: 12px;
    box-shadow: var(--shadow);
  }
  .navLinks a{ padding: 12px; }
  .navToggle{ display:block; }
  .navLinks.open{ display:flex; }
  .formRow{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: 1fr; }
}

.hero{
  background:
    radial-gradient(900px 450px at 20% 20%, rgba(225,180,64,.18), transparent 55%),
    radial-gradient(700px 400px at 70% 55%, rgba(202,157,39,.12), transparent 60%),
    var(--bg);
  padding: clamp(40px, 6vw, 90px) 18px;
}

.hero__inner{
  max-width: 1100px;
  margin: 0 auto;

  /* keeps the hero text from becoming too wide */
  max-width: 980px;
}

.hero__badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.55);
  border: 1px solid var(--border);
  color: rgba(29,27,22,.78);
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: .2px;
  backdrop-filter: blur(10px);
}

.hero__title{
  margin: 18px 0 10px;
  font-family: var(--font-body);
  font-weight: 700;

  /* smooth scaling */
  font-size: clamp(44px, 4.6vw, 78px);
  line-height: 1.03;

  /* keeps headings elegant */
  max-width: 18ch;

  /* modern multi-line balancing */
  text-wrap: balance;
  color: var(--text);
}

.hero__accent{
  font-family: var(--font-accent);
  font-weight: 900;
  font-size: 1.08em;
  color: var(--gold);

  /* optional: subtle highlight glow */
  text-shadow: 0 8px 25px rgba(202,157,39,.18);
}

.hero__sub{
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 62ch;
}

.hero__actions{
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.btn--primary{
  background: linear-gradient(180deg, rgba(225,180,64,.95), rgba(202,157,39,.95));
  color: #1a1406;
  box-shadow: 0 10px 26px rgba(202,157,39,.18);
}

.btn--ghost{
  background: rgba(255,255,255,.6);
  color: var(--text);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(0,0,0,.08);
}

.btn:active{
  transform: translateY(0);
  box-shadow: none;
}

/* Emphasize the whole feature area */
.hero__features{
  margin-top: 22px;
  max-width: 820px;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;

  /* subtle highlighted tray */
  padding: 14px;
  border-radius: 22px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(202,157,39,.18);
  box-shadow: 0 18px 40px rgba(0,0,0,.08);
  backdrop-filter: blur(10px);
}

/* Make each feature card more premium + noticeable */
.feature{
  position: relative;
  padding: 16px 16px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(29,27,22,.12);
  box-shadow: 0 12px 26px rgba(0,0,0,.08);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

/* Gold accent line on top to "emphasize" */
.feature::before{
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 10px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(202,157,39,.9), rgba(225,180,64,.35));
  opacity: .9;
}

.feature__title{
  margin-top: 10px; /* gives space from the gold line */
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .2px;
  color: #1d1b16;
}

.feature__sub{
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(29,27,22,.72);
}

/* Hover = premium lift */
.feature:hover{
  transform: translateY(-2px);
  border-color: rgba(202,157,39,.35);
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
}

/* Mobile stacking */
@media (max-width: 780px){
  .hero__features{
    grid-template-columns: 1fr;
  }
}

.feature__title{
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
}

.feature__sub{
  margin-top: 2px;
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(29,27,22,.70);
}

@media (max-width: 780px){
  .hero__features{
    grid-template-columns: 1fr;
    max-width: 520px;
  }
  .hero__title{
    max-width: 22ch;
  }
}

.eyebrow {
  font-family: var(--font-body); /* This will now pull Montserrat */
  text-transform: uppercase;
  letter-spacing: 0.2em; /* Wide spacing looks very luxurious */
  font-size: 11px;
  font-weight: 500;
  color: var(--goldDark);
  margin-bottom: 16px;
  display: block;
}

/* Make cards feel more like glass */
.card, .priceCard, .step, .quote, .contactForm {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px); /* Stronger blur */
  border: 1px solid rgba(255, 255, 255, 0.5); /* White border catches the light */
  box-shadow: var(--shadow2);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.card:hover, .priceCard:hover, .shot:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

/* Primary Button - make it metallic but subtle */
.btn--primary {
  background: linear-gradient(135deg, var(--gold2), var(--goldDark));
  color: #FFFFFF;
  border: none;
  box-shadow: 0 8px 20px rgba(194, 168, 120, 0.25);
}

:root {
    --font-body: "Montserrat", sans-serif; /* Montserrat Integration */
}

/* 2-Column Hero Layout */
.hero__inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    padding-top: 60px;
    padding-bottom: 40px;
}

/* The Showcase Frame */
.hero__visual {
    position: relative;
    perspective: 1000px; /* Gives 3D depth */
}

.showcase__frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    /* Soft tilt for a premium, organic feel */
    transform: rotate3d(0.5, -1, 0, 12deg); 
    box-shadow: 
        -20px 20px 50px rgba(0,0,0,0.1),
        0 10px 20px rgba(194, 168, 120, 0.15);
    border: 8px solid #fff;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase__frame:hover {
    transform: rotate3d(0, 0, 0, 0deg) scale(1.02);
}

.showcase__img {
    width: 100%;
    height: auto;
    display: block;
}

/* Glass Reflection Overlay */
.showcase__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, transparent 50%, rgba(0,0,0,0.05) 100%);
    pointer-events: none;
}

/* Floating Badge Styling */
.floating__badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: #fff;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--goldDark);
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Mobile Fix */
@media (max-width: 980px) {
    .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero__actions { justify-content: center; }
    .showcase__frame {
        transform: none; /* Remove tilt on mobile for better visibility */
        max-width: 400px;
        margin: 0 auto;
    }
    .floating__badge { left: 50%; transform: translateX(-50%); }
}

/* Highlights / Trust Bar Section */
.highlights {
    padding: 20px 0;
    margin-top: -40px; /* Overlaps the hero slightly for a modern look */
    position: relative;
    z-index: 10;
}

.highlights__inner {
    background: #FFFFFF;
    border: 1px solid rgba(194, 168, 120, 0.3); /* Soft Gold Border */
    border-radius: 20px;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 15px 45px rgba(28, 26, 22, 0.05); /* Very soft shadow */
}

.highlight__item {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.icon__circle {
    width: 48px;
    height: 48px;
    background: rgba(194, 168, 120, 0.1); /* Very pale gold circle */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.highlight__title {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 25px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ink);
}

.highlight__sub {
    margin: 2px 0 0;
    font-size: 13px;
    color: var(--muted);
}

/* Thin Gold Dividers */
.highlight__divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(194, 168, 120, 0.4), transparent);
    margin: 0 30px;
}

/* Responsive Fix for Mobile */
@media (max-width: 980px) {
    .highlights { margin-top: 0; padding: 40px 0; }
    .highlights__inner {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        padding: 40px 20px;
    }
    .highlight__item { flex-direction: column; }
    .highlight__divider {
        width: 60px;
        height: 1px;
        margin: 10px auto;
    }
} 

/* Showcase Grid */
/* Update the grid for 4 items */
.services__display {
    display: grid;
    /* This creates a 4-column layout that drops to 2 and then 1 as the screen gets smaller */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 24px;
    margin-top: 50px;
}

/* Service 4: Midnight Blue Theme */
.service__showcase:nth-child(4) { 
    background: #0F172A; /* Deep Midnight Blue */
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service__showcase:nth-child(4) h3 {
    color: #94A3B8; /* Slate Silver for a more "tech" luxury feel */
}

.service__showcase:nth-child(4) .btn--luxe {
    background: #94A3B8;
    color: #0F172A;
}

/* Enhancing the "Showcase" Image for Web Dev */
.showcase--other .showcase__img {
    filter: grayscale(20%) brightness(0.9); /* Makes it look sleeker */
    transform: translateY(20px) scale(1.05); /* Different "peek-a-boo" effect */
}

/* The Showcase Card */
.service__showcase {
    background: #5b1c20; /* Deep Burgundy from your reference image */
    border-radius: 40px; /* Extra rounded for a modern look */
    overflow: hidden;
    text-align: center;
    transition: transform 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service__showcase:hover {
    transform: translateY(-10px);
}

/* The Image Area */
.showcase__visual {
    padding: 40px 20px 0;
    background: rgba(0, 0, 0, 0.1);
    height: 320px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.showcase__img {
    width: 90%;
    height: auto;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* The Content Area */
.showcase__content {
    padding: 40px 30px;
    color: #FFFFFF;
}

.showcase__content h3 {
    color: #e6d5b8; /* Soft champagne gold for the title */
    font-size: 28px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.showcase__content p {
    font-family: "Montserrat", sans-serif; /* Montserrat for readability */
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

/* Luxe Button */
.btn--luxe {
    background: #e6d5b8;
    color: #5b1c20;
    padding: 14px 32px;
    border-radius: 999px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
}

.btn--luxe:hover {
    background: #FFFFFF;
    color: #1C1A16;
}

/* Alternate Colors for Different Services */
.service__showcase:nth-child(2) { background: #1C1A16; } /* Black for Birthday */
.service__showcase:nth-child(3) { background: #3d4a3e; } /* Deep Green for Baptism */

/* Showcase Grid - Locked to 2x2 */
.services__display {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* This creates exactly 2 columns */
    gap: 30px;
    margin-top: 50px;
}

/* Base Card Styling */
.service__showcase {
    border-radius: 40px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.4s ease;
    border: 1px solid rgba(28, 26, 22, 0.1);
}

/* Individual Colors based on your images */
.service__showcase:nth-child(1) { background: #5b1c20; } /* Burgundy - Wedding */
.service__showcase:nth-child(2) { background: #1C1A16; } /* Black - Birthday */
.service__showcase:nth-child(3) { background: #3d4a3e; } /* Deep Green - Baptism */
.service__showcase:nth-child(4) { background: #0F172A; } /* Midnight Blue - Web Dev */

/* Image Formatting */
.showcase__visual {
    padding: 30px 20px 0;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow: hidden;
}

.showcase__img {
    width: 90%;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Content Styling */
.showcase__content {
    padding: 40px 30px;
    color: #FFFFFF;
}

.showcase__content h3 {
    font-family: "Cormorant Garamond", serif;
    color: #e6d5b8; /* Champagne gold */
    font-size: 26px;
    margin-bottom: 15px;
}

.showcase__content p {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .services__display {
        grid-template-columns: 1fr; /* Drops to 1 column on smaller screens */
    }
}

/* Pricing Section Layout */
.pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    align-items: start;
}

.priceCard {
    background: #FFFFFF;
    padding: 50px 40px;
    border-radius: 30px;
    border: 1px solid var(--line);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

/* Featured (Regular) Package Styling */
.priceCard.featured {
    border: 2px solid var(--gold);
    transform: scale(1.05); /* Slightly larger */
    box-shadow: 0 20px 50px rgba(169, 127, 25, 0.15);
    z-index: 2;
}

.priceCard.featured .flag {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--goldDark);
    color: white;
    padding: 8px 20px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* Typography Inside Cards */
.priceCard h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--ink);
}

.price {
    font-family: "Montserrat", sans-serif;
    font-size: 42px;
    font-weight: 600;
    color: var(--ink);
    margin: 15px 0;
}

.price span {
    letter-spacing: -1px;
}

.priceSub {
    font-size: 14px;
    color: var(--goldDark);
    font-weight: 500;
    margin-bottom: 30px;
}

/* List Styling */
.priceCard {
  height: 100% !important;
}

.priceCard ul {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    text-align: left;
}

.priceCard li {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    color: var(--muted);
}

.priceCard li strong {
    color: var(--ink);
}

/* Corporate Specific Styling */
.priceCard.corporate {
    background: #1C1A16;
    color: #FFFFFF;
}

.priceCard.corporate h3, 
.priceCard.corporate .price {
    color: var(--sand);
}

.priceCard.corporate .corp-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
}

.priceCard.corporate li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
}

/* Responsive Fix */
@media (max-width: 980px) {
    .priceCard.featured {
        transform: scale(1);
        margin: 20px 0;
    }
}

/* Styling the Inline Header Tag */
.priceCard h3 {
    display: flex;
    flex-direction: column; /* Stacks the 'Most Loved' neatly under or above */
    align-items: center;
    gap: 4px;
    font-family: "Cormorant Garamond", serif;
    font-size: 34px;
    line-height: 1.1;
}

.loved-tag {
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em; /* Extra wide spacing for that luxury feel */
    color: var(--goldDark);
    display: inline-block;
    background: rgba(169, 127, 25, 0.08); /* Soft gold tint background */
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 8px;
}

/* Enhancing the 'Featured' Card Glow */
.priceCard.featured {
  content: "Popular Choice";
    position: absolute;
    top: -12px;
    font-family: "Montserrat", sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #FFF;
    background: var(--ink);
    padding: 4px 15px;
    border-radius: 4px;
}

.btnFull {
    width: 100%;
    margin-top: auto; /* This pushes the button to the very bottom floor */
    display: block;
    text-align: center;
}