/* ==============================
   BASE
============================== */
:root {
  --cream: #f8f6f2;
  --paper: #fcfaf6;
  --paper-deep: #f5efe3;
  --ink: #2d2a26;
  --muted: #6a645d;
  --green: #3a5a40;
  --gold: #c9a35a;
  --gold-dark: #9d762f;
  --line: #e8dfc9;
  --nav-height: 82px;
  --shadow: 0 18px 50px rgba(45, 42, 38, 0.09);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  min-width: 280px;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.2; }
main { min-height: calc(100vh - 150px); }
.container { width: min(1100px, calc(100% - 40px)); margin-inline: auto; }
.centered { text-align: center; margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* ==============================
   NAVIGATION
============================== */
.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  min-height: var(--nav-height);
  padding: 16px clamp(24px, 5vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid #e9f3ec;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.logo {
  flex: 0 0 auto;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
  white-space: nowrap;
}
.nav-links { display: flex; align-items: center; gap: clamp(20px, 4vw, 45px); }
.nav-links a {
  position: relative;
  padding: 8px 0;
  color: var(--green);
  font-size: .86rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 2px;
  height: 2px;
  border-radius: 10px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .25s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-dark); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

/* ==============================
   BUTTONS
============================== */
.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 27px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, #d9b56b, #b78733);
  box-shadow: 0 12px 30px rgba(201, 163, 90, .32);
  color: #17130d;
  cursor: pointer;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(201, 163, 90, .42); }
.btn-outline { background: rgba(255,255,255,.88); border-color: var(--gold); color: var(--green); box-shadow: none; }
.btn-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* ==============================
   HOME
============================== */
.hero {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--nav-height) + 40px) 24px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.home-hero {
  background:
   
    url("linny logo final.png") center / cover no-repeat;
}
.hero .btn-row {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
}
.hero .btn-row .btn:first-child {
    transform: translateX(-70px);
}

.hero .btn-row .btn:last-child {
    transform: translateX(140px);
}
.hero-inner { width: min(620px, 100%); }
.experience { padding: 100px 24px; background: var(--paper); text-align: center; }
.section-tag {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--gold-dark);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.section-title, .experience h1 { margin-bottom: 24px; font-size: clamp(2rem, 4vw, 3rem); }
.experience-intro { max-width: 780px; margin: 0 auto 64px; color: var(--muted); font-size: 1.06rem; }
.experience-grid, .grid, .values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.experience-card, .card {
  min-width: 0;
  padding: clamp(32px, 4vw, 48px);
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--paper), var(--paper-deep));
  box-shadow: 0 10px 40px rgba(0,0,0,.05);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.experience-card h2, .card h2 { margin-bottom: 16px; color: var(--green); font-size: 1.45rem; }
.experience-card p, .card p { color: var(--muted); }
.experience-card:hover, .card:hover { transform: translateY(-7px); border-color: rgba(201,163,90,.35); box-shadow: var(--shadow); }
.section { width: min(1400px, 100%); margin-inline: auto; padding: 90px clamp(24px, 5vw, 64px) 130px; }
.section > h1 {
  margin-bottom: 14px;
  color: #8b6a2d;
  font-family: 'Allura', cursive;
  font-size: clamp(3.5rem, 7vw, 5rem);
  font-weight: 400;
  line-height: 1;
  text-align: center;
}
.section > h1::after {
  content: '';
  display: block;
  width: 76px;
  height: 3px;
  margin: 20px auto 0;
  border-radius: 10px;
  background: var(--gold);
}
.muted { max-width: 800px; color: #6d8a7f; }
.grid { margin-top: 48px; }
.cta {
  padding: 82px 24px;
  border-block: 1px solid var(--line);
  background: linear-gradient(135deg, var(--paper), var(--paper-deep));
  text-align: center;
}
.cta h2 { margin-bottom: 14px; font-size: clamp(2rem, 5vw, 2.65rem); }
.cta h2::before {
  content: '';
  display: block;
  width: 74px;
  height: 3px;
  margin: 0 auto 24px;
  border-radius: 10px;
  background: var(--gold);
}
.cta p { max-width: 560px; margin: 0 auto 28px; color: var(--muted); }

/* ==============================
   ABOUT
============================== */
.about-hero {
  min-height: 60vh;
  padding: calc(var(--nav-height) + 60px) clamp(24px, 8vw, 120px) 70px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(22,19,15,.55), rgba(22,19,15,.08)),
    url("studio chairs.jpg") center / cover no-repeat;
}
.about-hero h1 { color: #fff8e8; font-size: clamp(2.7rem, 7vw, 4.6rem); text-shadow: 0 10px 45px rgba(0,0,0,.55); }
.split-section {
  padding: 90px clamp(24px, 8vw, 120px);
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 760px);
  justify-content: center;
  align-items: center;
  gap: clamp(45px, 7vw, 90px);
  background: #fdfaf7;
}
.split-image img { width: 100%; border-radius: 48px; box-shadow: var(--shadow); }
.split-text { min-width: 0; }
.split-text h1 { margin-bottom: 24px; font-size: clamp(2.1rem, 4vw, 2.8rem); }
.split-text p { margin-bottom: 22px; color: var(--muted); font-size: 1.03rem; }
.split-text p:last-child { margin-bottom: 0; }
.values { width: min(1180px, calc(100% - 48px)); margin: 0 auto; padding: 90px 0 120px; }

/* ==============================
   CONTACT
============================== */
.contact-hero {
    position: relative;
    min-height: 70vh;
    overflow: visible;          /* Changed from hidden */
    display: flex;
    align-items: flex-start;    /* Show the top of the image */
    justify-content: center;
    background: #efe7dc;
    padding-top: var(--nav-height);
}

.contact-hero-blur {
    position: absolute;
    inset: 0;
    background: url("contact\ blury.png") center 20% / cover no-repeat;
}

.contact-section { padding: 110px clamp(24px, 8vw, 120px) 130px; }
.contact-header { max-width: 790px; margin: 0 auto 70px; text-align: center; }
.contact-header h1 { margin-bottom: 20px; font-size: clamp(2.4rem, 6vw, 3.7rem); }
.contact-header p { color: #777; font-size: 1.08rem; }
.contact-grid { max-width: 1160px; margin: auto; display: grid; grid-template-columns: minmax(300px, 380px) minmax(0, 1fr); gap: 48px; align-items: start; }
.contact-card, .contact-form { min-width: 0; border-radius: 32px; background: #fff; box-shadow: var(--shadow); }
.contact-card { position: sticky; top: calc(var(--nav-height) + 28px); padding: 44px; }
.contact-card > h2, .contact-form > h2 { margin-bottom: 34px; font-size: clamp(1.7rem, 3vw, 2.1rem); }
.contact-item { display: grid; grid-template-columns: 56px minmax(0, 1fr); align-items: start; gap: 18px; margin-bottom: 30px; }
.contact-item:last-child { margin-bottom: 0; }
.icon { width: 56px; height: 56px; display: grid; place-items: center; border-radius: 50%; background: var(--green); color: white; font-size: 1.35rem; }
.contact-item h3 { margin-bottom: 3px; font-family: 'Inter', sans-serif; font-size: 1rem; }
.contact-item p, .contact-item a { color: var(--muted); overflow-wrap: anywhere; text-decoration: none; }
.contact-item a:hover { color: var(--gold-dark); }
.appointment-note { font-size: .88rem; font-style: italic; }
.contact-form { padding: clamp(34px, 5vw, 58px); }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%;
  min-width: 0;
  margin-bottom: 20px;
  padding: 17px 20px;
  border: 1px solid transparent;
  border-radius: 16px;
  background: #f6f4ef;
  color: var(--ink);
  font-size: 16px;
  transition: background .2s ease, box-shadow .2s ease;
}
.contact-form textarea { min-height: 170px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { outline: none; background: #fff; box-shadow: 0 0 0 2px var(--gold); }

/* ==============================
   GALLERY
============================== */
.gallery-hero {
    min-height: 85vh;
    padding-top: var(--nav-height);
    background:
        
        url("GALLERY\ HIGH.png") center center / cover no-repeat;
}
.gallery-section { padding-top:30px; }
.gallery-intro { max-width: 720px; margin: 0 auto; color: var(--muted); text-align: center; }
.gallery-filters { margin: 46px 0 58px; display: flex; justify-content: center; flex-wrap: wrap; gap: 13px; }
.filter-btn {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 11px 23px;
  border: 0;
  border-radius: 999px;
  background: var(--paper-deep);
  color: var(--ink);
  cursor: pointer;
  font-weight: 700;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.filter-btn:hover, .filter-btn.active { background: var(--gold); color: white; transform: translateY(-1px); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 28px; }
.gallery-item {
  min-width: 0;
  overflow: hidden;
  border-radius: 25px;
  background: white;
  box-shadow: 0 12px 40px rgba(0,0,0,.08);
  transition: transform .3s ease, opacity .25s ease;
}
.gallery-item[hidden] { display: none !important; }
.gallery-item > img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; transition: transform .4s ease; }
.gallery-item:hover { transform: translateY(-7px); }
.gallery-item:hover > img { transform: scale(1.045); }
.gallery-info { padding: 24px; text-align: center; }
.gallery-info h3 { margin-bottom: 8px; color: var(--green); font-size: 1.35rem; }
.gallery-info p { color: #777; }
.before-after-images { display: grid; grid-template-columns: 1fr 1fr; aspect-ratio: 4 / 3; overflow: hidden; }
.before-after-panel { position: relative; min-width: 0; overflow: hidden; }
.before-after-panel:first-child { border-right: 3px solid white; }
.gallery-item.before-after-card .before-after-panel img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .4s ease; }
.before-after-card:hover .before-after-panel img { transform: scale(1.04); }
.before-after-label {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 4px 15px rgba(0,0,0,.12);
  color: var(--green);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.gallery-social { padding: 80px 24px; text-align: center; }
.gallery-social h2 { margin-bottom: 18px; font-size: clamp(2rem, 5vw, 2.65rem); }
.gallery-social > p { max-width: 680px; margin: 0 auto 30px; color: var(--muted); }
.gallery-social-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; }
.gallery-social-links a { display: inline-flex; align-items: center; gap: 9px; padding: 13px 24px; border-radius: 999px; background: linear-gradient(135deg,#d9b56b,#b78733); color: white; text-decoration: none; font-weight: 700; transition: transform .2s ease; }
.gallery-social-links a:hover { transform: translateY(-3px); }

/* ==============================
   THANK YOU + FOOTER
============================== */
.thank-you {
  min-height: calc(100svh - 90px);
  padding: calc(var(--nav-height) + 70px) 24px 80px;
  display: grid;
  place-items: center;
  background: linear-gradient(rgba(248,246,242,.94),rgba(248,246,242,.94)), url("linny logo final.png") center / cover no-repeat;
}
.thank-you-card { width: min(750px, 100%); padding: clamp(42px, 7vw, 70px); border-radius: 32px; background: white; box-shadow: 0 30px 80px rgba(0,0,0,.08); text-align: center; }
.thank-you-card h1 { margin-bottom: 10px; color: var(--gold); font-family: 'Allura', cursive; font-size: clamp(3.4rem, 9vw, 4.8rem); font-weight: 400; }
.thank-you-card h2 { margin-bottom: 26px; font-size: clamp(1.55rem, 4vw, 2rem); }
.thank-you-card p { margin-bottom: 22px; color: var(--muted); }
.thank-you-card .btn { margin-top: 10px; }
footer { padding: 28px 20px; border-top: 1px solid var(--line); background: var(--paper); color: var(--muted); font-size: .88rem; text-align: center; }

/* ==============================
   TABLET
============================== */
@media (max-width: 900px) {
  .experience-grid, .grid, .values { grid-template-columns: 1fr; }
  .values { max-width: 650px; }
  .split-section { grid-template-columns: minmax(180px, 260px) minmax(0, 1fr); gap: 45px; }
  .contact-grid { grid-template-columns: 1fr; max-width: 720px; }
  .contact-card { position: static; }
}

/* ==============================
   MOBILE
============================== */
/* ==============================
   MOBILE
============================== */
@media (max-width:700px) {

  :root {
    --nav-height:102px;
  }


  /* ==============================
     MOBILE NAVIGATION
  ============================== */

  .site-nav {

    min-height:var(--nav-height);

    padding:10px 14px 9px;

    flex-direction:column;

    justify-content:center;

    gap:5px;

  }


  .logo {

    font-size:1.02rem;

  }


  .nav-links {

    width:100%;

    max-width:430px;

    justify-content:space-between;

    gap:7px;

  }


  .nav-links a {

    padding:7px 2px;

    font-size:.68rem;

  }



  /* ==============================
     UNIVERSAL MOBILE HERO
  ============================== */


  .hero {

    min-height:auto;

    height:auto;

    padding:

    calc(var(--nav-height) + 15px)

    5vw

    30px;


    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

  }



  .home-hero {

    width:100%;

    height:clamp(240px,45vw,360px);

    min-height:0;

    background-image:url("linny logo final.png");

    background-repeat:no-repeat;

    background-position:center;

    background-size:contain;

  }



  .hero-inner {

    width:100%;

    max-width:600px;

    padding:0;

  }



  /* BUTTON AREA */

  .hero .btn-row {

    position:static;

    width:100%;

    margin-top:clamp(130px,4vw,30px);


    display:flex;

    justify-content:center;

    align-items:center;

    flex-wrap:wrap;


    gap:clamp(40px,3vw,20px);


    transform:none;

  }



  /* BUTTON SIZE */

  .hero .btn-row .btn {

    width:clamp(110px,35vw,150px);

    height:clamp(42px,12vw,50px);


    padding:0;


    font-size:clamp(.65rem,2.5vw,.8rem);


    display:flex;

    justify-content:center;

    align-items:center;


    white-space:nowrap;

  }



  /* REMOVE OLD POSITIONING */

  .hero .btn-row .btn:first-child,
  .hero .btn-row .btn:last-child {

    position:static;

    left:auto;

    transform:none;

  }




  /* ==============================
     EXPERIENCE
  ============================== */

  .experience {

    padding:70px 20px;

  }



  /* ==============================
     GENERAL SECTIONS
  ============================== */

  .section {

    padding:68px 18px 88px;

  }



  /* ==============================
     ABOUT
  ============================== */

  .about-hero {

    min-height:48vh;

    padding:

    calc(var(--nav-height) + 35px)

    22px

    48px;


    text-align:center;

    background-position:center;

  }



  .split-section {

    padding:58px 22px;

    grid-template-columns:1fr;

    text-align:center;

  }




  /* ==============================
     CONTACT
  ============================== */


  .contact-hero {

    min-height:44vh;

  }


  .contact-section {

    padding:68px 18px 88px;

  }




  /* ==============================
     GALLERY
  ============================== */


  .gallery-hero {

    height:calc(85vh - var(--nav-height));

    min-height:350px;

    background-position:center center;

  }



  .gallery-grid {

    grid-template-columns:1fr;

  }




  /* ==============================
     THANK YOU
  ============================== */


  .thank-you {

    padding:

    calc(var(--nav-height) + 45px)

    18px

    60px;

  }


}