@import url('https://fonts.googleapis.com/css2?family=Sacramento&family=Dancing+Script:wght@400;500&family=Jost:wght@200;300;400;500&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&display=swap');

/*
  BRITTANY SIGNATURE FONT (self-hosted)
  Download from: https://www.dafont.com/brittany-signature.font
  Place BrittanySignature.otf in your /fonts/ folder.
  Sacramento and Dancing Script are web fallbacks until the file is added.
*/
@font-face {
  font-family: 'Brittany Signature';
  src: url('../fonts/brittanysignature.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #1a1a1a;
  --off-black: #2a2a2a;
  --dark-grey: #4a4a4a;
  --mid-grey: #888;
  --light-grey: #ccc;
  --off-white: #f5f4f0;
  --white: #ffffff;
  --accent: #c8b89a;
  --font-script: 'Brittany Signature', 'Sacramento', 'Dancing Script', cursive;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Jost', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); background: var(--white); color: var(--black); font-weight: 300; overflow-x: hidden; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 60px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 0.5px solid rgba(0,0,0,0.08);
  transition: padding 0.3s;
}
nav.scrolled { padding: 14px 60px; }

.nav-logo {
  font-family: var(--font-script);
  font-size: 36px;
  color: var(--black);
  text-decoration: none;
  line-height: 1;
  letter-spacing: 0.02em;
}

.nav-links { display: flex; gap: 44px; list-style: none; }
.nav-links a {
  font-size: 10px; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--dark-grey); text-decoration: none; transition: color 0.2s; position: relative;
}
.nav-links a::after { content:''; position:absolute; bottom:-4px; left:0; width:0; height:1px; background:var(--black); transition:width 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--black); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:4px; background:none; border:none; }
.hamburger span { display:block; width:24px; height:1px; background:var(--black); transition:all 0.3s; }

.mobile-menu { display:none; position:fixed; inset:0; background:var(--white); z-index:99; flex-direction:column; justify-content:center; align-items:center; gap:36px; }
.mobile-menu.open { display:flex; }
.mobile-menu a { font-family:var(--font-script); font-size:48px; color:var(--black); text-decoration:none; transition:opacity 0.2s; }
.mobile-menu a:hover { opacity:0.45; }
.mobile-close { position:absolute; top:28px; right:32px; font-size:10px; font-weight:400; letter-spacing:0.2em; text-transform:uppercase; cursor:pointer; color:var(--mid-grey); background:none; border:none; }

/* BUTTONS */
.btn-primary { display:inline-block; padding:16px 44px; background:var(--black); color:var(--white); font-family:var(--font-sans); font-size:10px; font-weight:400; letter-spacing:0.25em; text-transform:uppercase; text-decoration:none; border:1px solid var(--black); cursor:pointer; transition:all 0.2s; }
.btn-primary:hover { background:var(--off-black); }
.btn-outline { display:inline-block; padding:16px 44px; background:transparent; color:var(--black); font-family:var(--font-sans); font-size:10px; font-weight:400; letter-spacing:0.25em; text-transform:uppercase; text-decoration:none; border:1px solid var(--black); cursor:pointer; transition:all 0.2s; }
.btn-outline:hover { background:var(--black); color:var(--white); }
.btn-outline-white { display:inline-block; padding:16px 44px; background:transparent; color:rgba(255,255,255,0.7); font-family:var(--font-sans); font-size:10px; font-weight:400; letter-spacing:0.25em; text-transform:uppercase; text-decoration:none; border:1px solid rgba(255,255,255,0.3); cursor:pointer; transition:all 0.2s; }
.btn-outline-white:hover { background:rgba(255,255,255,0.1); color:var(--white); border-color:rgba(255,255,255,0.6); }

/* TYPE */
.section-label { font-size:10px; font-weight:400; letter-spacing:0.25em; text-transform:uppercase; color:var(--mid-grey); margin-bottom:24px; display:block; }
.section-label-light { font-size:10px; font-weight:400; letter-spacing:0.25em; text-transform:uppercase; color:rgba(255,255,255,0.35); margin-bottom:24px; display:block; }
.section-headline { font-family:var(--font-serif); font-size:44px; font-weight:300; line-height:1.2; color:var(--black); }
.section-headline em { font-style:italic; }
.section-body { font-size:15px; font-weight:300; line-height:1.9; color:var(--dark-grey); }

/* PAGE HEADER */
.page-header { padding:160px 60px 80px; background:var(--off-white); border-bottom:0.5px solid rgba(0,0,0,0.08); }
.page-title { font-family:var(--font-serif); font-size:64px; font-weight:300; line-height:1.1; color:var(--black); margin-top:16px; }
.page-title em { font-style:italic; }

/* TESTIMONIALS */
.testimonials { padding:120px 60px; background:var(--black); }
.testimonials-header { text-align:center; margin-bottom:72px; }
.testimonials-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2px; }
.testimonial { padding:48px 40px; background:rgba(255,255,255,0.04); border-top:1px solid rgba(255,255,255,0.08); display:flex; flex-direction:column; }
.testimonial-stars { display:flex; gap:3px; margin-bottom:20px; }
.testimonial-stars span { color:var(--accent); font-size:13px; }
.testimonial-quote { font-family:var(--font-serif); font-size:15px; font-weight:300; font-style:italic; line-height:1.95; color:rgba(255,255,255,0.65); flex:1; margin-bottom:28px; }
.testimonial-author { font-size:10px; font-weight:400; letter-spacing:0.18em; text-transform:uppercase; color:rgba(255,255,255,0.3); }

/* FORM */
.form-field { width:100%; padding:16px 20px; border:0.5px solid rgba(0,0,0,0.15); background:rgba(255,255,255,0.9); font-family:var(--font-sans); font-size:13px; font-weight:300; letter-spacing:0.05em; color:var(--black); outline:none; transition:border-color 0.2s; -webkit-appearance:none; appearance:none; border-radius:0; }
.form-field:focus { border-color:var(--black); }
.form-field::placeholder { color:#aaa; letter-spacing:0.08em; }

/* ANIMATIONS */
.fade-up { opacity:0; transform:translateY(24px); transition:opacity 0.65s ease, transform 0.65s ease; }
.fade-up.visible { opacity:1; transform:translateY(0); }

/* FOOTER */
footer { padding:80px 60px 60px; background:var(--black); display:grid; grid-template-columns:1.5fr 1fr 1fr; gap:60px; }
.footer-logo { font-family:var(--font-script); font-size:40px; color:var(--white); margin-bottom:10px; display:block; text-decoration:none; line-height:1.3; letter-spacing:0.02em; }
.footer-tagline { font-size:10px; font-weight:300; letter-spacing:0.2em; color:rgba(255,255,255,0.3); text-transform:uppercase; display:block; margin-bottom:20px; }
.footer-desc { font-size:13px; font-weight:300; color:rgba(255,255,255,0.4); line-height:1.9; max-width:280px; }
.footer-col-title { font-size:10px; font-weight:400; letter-spacing:0.2em; text-transform:uppercase; color:rgba(255,255,255,0.3); margin-bottom:24px; display:block; }
.footer-links { list-style:none; display:flex; flex-direction:column; gap:14px; }
.footer-links a { font-size:13px; font-weight:300; color:rgba(255,255,255,0.55); text-decoration:none; transition:color 0.2s; }
.footer-links a:hover { color:var(--white); }
.footer-contact p { font-size:13px; font-weight:300; color:rgba(255,255,255,0.45); line-height:2.2; }
.footer-bottom { padding:24px 60px; background:var(--black); border-top:0.5px solid rgba(255,255,255,0.06); display:flex; justify-content:space-between; align-items:center; }
.footer-bottom p, .footer-bottom a { font-size:11px; font-weight:300; color:rgba(255,255,255,0.2); letter-spacing:0.05em; text-decoration:none; transition:color 0.2s; }
.footer-bottom a:hover { color:rgba(255,255,255,0.5); }

/* RESPONSIVE */
@media (max-width:900px) {
  nav { padding:18px 24px; } nav.scrolled { padding:14px 24px; }
  .nav-links { display:none; } .hamburger { display:flex; }
  .page-header { padding:110px 24px 52px; } .page-title { font-size:40px; }
  footer { grid-template-columns:1fr; padding:52px 24px; gap:40px; }
  .footer-bottom { padding:20px 24px; flex-direction:column; gap:8px; text-align:center; }
  .testimonials { padding:80px 24px; } .testimonials-grid { grid-template-columns:1fr; }
}
