@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@400;700&display=swap');

:root {
  --primary: #2563eb;
  --secondary: #1e40af;
  --accent: #f59e0b;
  --bg: #f9f8f6;
  --surface: #fff;
  --text: #1a1a2e;
  --muted: #6b7280;
  --radius: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,.10);
  --transition: all .3s cubic-bezier(.4,0,.2,1);
  --max-width: 1200px;
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {font-size: 100%; scroll-behavior: smooth;}
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
}
a {
  color: inherit;
  text-decoration: none;
}
img {max-width: 100%; height: auto; display: block;}
ul {list-style: none;}

/* Layout helpers */
.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
  padding-inline: 1rem;
}
.grid {
  display: grid;
  gap: 1.5rem;
}
.three-col {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.two-col {
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 768px) {
  .two-col {grid-template-columns: 1fr;}
}

/* Sticky glass navigation */
.sticky-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
}
.glass {
  background: rgba(255,255,255,.6);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}
.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 0;
}
.logo {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--primary);
}
.nav-links {
  display: flex;
  gap: 1.5rem;
}
.nav-links a {
  position: relative;
  font-size: clamp(.875rem, 2vw, 1rem);
  font-weight: 500;
  color: var(--text);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  height: 2px;
  width: 100%;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.nav-links a:hover::after {
  transform: scaleX(1);
}

/* Hero section */
.hero-section {
  position: relative;
  min-height: 70vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}
.hero-section .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.4);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  text-align: center;
  color: #fff;
}
.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: .5rem;
}
.hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  margin-bottom: 1.5rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: .75rem 1.5rem;
  font-size: clamp(.875rem, 2vw, 1rem);
  font-weight: 600;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
  background: var(--primary);
  color: #fff;
  transition: var(--transition);
}
.btn:hover {
  background: var(--secondary);
}
.btn.small {
  padding: .5rem 1rem;
  font-size: clamp(.75rem, 2vw, .875rem);
}
.pill {
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}
.pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
  filter: brightness(1.08);
}

/* Sections */
.section {
  padding: 4rem 0;
}
.section h2 {
  font-size: clamp(2rem,5vw,2.5rem);
  text-align: center;
  margin-bottom: 2rem;
}

/* Cards */
.card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.card img {
  width: 100%;
  height: auto;
  display: block;
}
.card h3 {
  font-size: clamp(1.25rem,3vw,1.5rem);
  margin: 1rem;
}
.card p {
  margin: 0 1rem 1rem;
  color: var(--muted);
}
.card .btn {
  margin: 1rem;
}
.card:hover {
  transform: translateY(-6px);
}

/* Testimonials special */
.testimonial-card {
  padding: 1.5rem;
  background: var(--bg);
}
.testimonial-card p {
  font-style: italic;
  color: var(--text);
}
.testimonial-card .author {
  margin-top: .75rem;
  text-align: right;
  font-weight: 600;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}
.gallery-grid img {
  border-radius: var(--radius);
  transition: var(--transition);
}
.gallery-grid img:hover {
  transform: scale(1.03);
}

/* Contact form */
.contact-form .form-group {
  margin-bottom: 1rem;
}
.contact-form label {
  display: block;
  margin-bottom: .25rem;
  font-weight: 500;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: .75rem;
  border: 1px solid var(--muted);
  border-radius: var(--radius);
  font-family: inherit;
  transition: var(--transition);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37,99,235,.2);
}

/* Footer */
.footer {
  background: #111;
  color: #ddd;
  padding: 3rem 0 2rem;
}
.footer a {
  color: #ddd;
}
.footer a:hover {
  color: var(--accent);
}
.footer .footer-col h3 {
  font-size: clamp(1.25rem,3vw,1.5rem);
  margin-bottom: .75rem;
}
.footer .footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: .875rem;
  color: var(--muted);
}

/* Reveal animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.reveal {
  opacity: 0;
}
.reveal.is-visible {
  animation: fadeInUp .6s forwards;
}

/* Responsive typography */
h1 {font-size: clamp(2.5rem,8vw,4rem);}
h2 {font-size: clamp(2rem,6vw,2.5rem);}
h3 {font-size: clamp(1.5rem,4vw,1.75rem);}
p {font-size: clamp(1rem,2.5vw,1.125rem);}

/* Utility */
.text-center {text-align: center;}
.mt-1 {margin-top: .25rem;}
.mt-2 {margin-top: .5rem;}
.mt-3 {margin-top: 1rem;}

/* Media queries */
@media (max-width: 1024px) {
  .nav-links {gap: 1rem;}
}
@media (max-width: 600px) {
  .hero-content h1 {font-size: clamp(2rem,9vw,3rem);}
  .btn {padding: .6rem 1rem;}
}

/* End of stylesheet */