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

/* --- RESET & VARIABLES --- */
:root {
  /* Palette */
  --c-primary: #4A4E69; /* Muted Slate/Grey-Blue */
  --c-primary-dark: #222233;
  --c-accent: #9A8C98; /* Dusty Lilac */
  --c-bg-body: #F9F8F6; /* Warm Cream */
  --c-bg-card: #FFFFFF;
  --c-bg-alt: #EFEFED; /* Soft Stone */
  --c-text-main: #2B2B2B;
  --c-text-muted: #666666;
  --c-border: #E5E5E5;

  /* Typography */
  --f-head: 'Cormorant Garamond', serif;
  --f-body: 'Manrope', sans-serif;

  /* Spacing & Layout */
  --s-space-xs: 0.5rem;
  --s-space-sm: 1rem;
  --s-space-md: 2rem;
  --s-space-lg: 4rem;
  --s-space-xl: 8rem;
  
  --s-width-max: 1240px;
  --s-pad-outer: clamp(1.5rem, 5vw, 4rem);
  --s-radius: 2px; /* Minimalist sharpness */
  
  /* Transitions */
  --t-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--c-bg-body);
  color: var(--c-text-main);
  font-family: var(--f-body);
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--t-smooth);
}

ul {
  list-style: none;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--f-head);
  font-weight: 400;
  color: var(--c-primary-dark);
  line-height: 1.2;
}

.s-head-xl {
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: -0.02em;
}

.s-head-lg {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.s-head-md {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.s-lead {
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  color: var(--c-text-muted);
  max-width: 60ch;
}

.s-text {
  font-size: 1rem;
  color: var(--c-text-main);
}

.s-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
  color: var(--c-accent);
}

/* --- LAYOUT UTILITIES --- */
/* The Mandatory Container */
.vv-wrap {
  width: 100%;
  max-width: var(--s-width-max);
  margin: 0 auto;
  padding-inline: var(--s-pad-outer);
}

/* Section Structure */
.vv-sec {
  padding-block: var(--s-space-xl);
  width: 100%;
}

.vv-sec--alt {
  background-color: var(--c-bg-alt);
}

/* Grids & Flex */
.vv-row {
  display: flex;
  gap: var(--s-space-md);
  align-items: flex-start;
}

.vv-row--center {
  align-items: center;
}

.vv-row--space {
  justify-content: space-between;
}

.vv-col {
  display: flex;
  flex-direction: column;
  gap: var(--s-space-sm);
}

.vv-col--center {
  align-items: center;
  text-align: center;
}

.vv-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--s-space-md);
}

.vv-grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--s-space-md);
}

/* Spacing Utils */
.mt-sm { margin-top: var(--s-space-sm); }
.mt-md { margin-top: var(--s-space-md); }
.mt-lg { margin-top: var(--s-space-lg); }
.mb-md { margin-bottom: var(--s-space-md); }

/* --- COMPONENTS --- */

/* Buttons */
.vv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-family: var(--f-body);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--t-smooth);
}

.vv-btn--primary {
  background-color: var(--c-primary);
  color: #fff;
}

.vv-btn--primary:hover {
  background-color: var(--c-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -10px rgba(74, 78, 105, 0.3);
}

.vv-btn--outline {
  background-color: transparent;
  border-color: var(--c-primary);
  color: var(--c-primary);
}

.vv-btn--outline:hover {
  background-color: var(--c-primary);
  color: #fff;
}

/* Cards */
.vv-card {
  background: var(--c-bg-card);
  padding: var(--s-space-md);
  border: 1px solid var(--c-border);
  transition: var(--t-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.vv-card:hover {
  border-color: var(--c-accent);
  box-shadow: 0 15px 30px -15px rgba(0,0,0,0.05);
  transform: translateY(-5px);
}

.vv-card__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  margin-bottom: var(--s-space-sm);
  filter: grayscale(20%);
  transition: var(--t-smooth);
}

.vv-card:hover .vv-card__img {
  filter: grayscale(0%);
}

/* Form Elements */
.vv-form {
  display: flex;
  flex-direction: column;
  gap: var(--s-space-sm);
  max-width: 500px;
}

.vv-input, .vv-textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--c-border);
  background: transparent;
  font-family: var(--f-body);
  font-size: 1rem;
  color: var(--c-text-main);
}

.vv-input:focus, .vv-textarea:focus {
  outline: none;
  border-color: var(--c-primary);
  background: #fff;
}

.vv-textarea {
  min-height: 120px;
  resize: vertical;
}

/* --- HEADER SPECIFIC --- */
.vv-header {
  border-bottom: 1px solid var(--c-border);
  background: rgba(249, 248, 246, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  padding-block: var(--s-space-sm);
}

.vv-header__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.vv-logo {
  font-family: var(--f-head);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--c-primary-dark);
  letter-spacing: -0.03em;
}

.vv-nav {
  display: flex;
  align-items: center;
  gap: var(--s-space-md);
}

.vv-nav__links {
  display: flex;
  gap: var(--s-space-md);
}

.vv-nav__link {
  font-size: 0.95rem;
  color: var(--c-text-main);
  position: relative;
}

.vv-nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--c-primary);
  transition: var(--t-smooth);
}

.vv-nav__link:hover::after {
  width: 100%;
}

.vv-btn--nav {
  padding: 0.6rem 1.5rem;
  font-size: 0.8rem;
}

/* --- FOOTER SPECIFIC --- */
.vv-footer {
  background-color: var(--c-primary-dark);
  color: #fff;
  padding-block: var(--s-space-xl);
  margin-top: auto;
}

.vv-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--s-space-lg);
}

.vv-footer__brand h2 {
  color: #fff;
  margin-bottom: var(--s-space-sm);
}

.vv-footer__brand p {
  color: rgba(255,255,255,0.7);
  max-width: 300px;
}

.vv-footer__col h4 {
  font-family: var(--f-body);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--s-space-sm);
}

.vv-footer__col ul li {
  margin-bottom: var(--s-space-xs);
}

.vv-footer__col a {
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
}

.vv-footer__col a:hover {
  color: #fff;
  text-decoration: underline;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .vv-nav__links {
    display: none; /* In real scenario, toggle menu */
  }
  
  .vv-footer__grid {
    grid-template-columns: 1fr;
    gap: var(--s-space-md);
  }
  
  .vv-row {
    flex-direction: column;
  }
  
  .vv-sec--hero {
    padding-block: var(--s-space-lg);
  }
} *{box-sizing:border-box} img,svg,video{max-width:100%;height:auto} body{margin:0} html{-webkit-text-size-adjust:100%} 