/* =========================================
   GIUSEPPE LETIZIA – PERITO ASSICURATIVO
   Design System & Global Styles
   ========================================= */

:root {
  --black: #0a0a0a;
  --white: #fafaf8;
  --cream: #f4f1eb;
  --gold: #b8963e;
  --gold-light: #d4ae5a;
  --gold-pale: #f0e6cc;
  --dark-navy: #0f1923;
  --mid-gray: #6b6b6b;
  --light-gray: #e8e4dc;
  --border: #d8d2c4;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --max-w: 1200px;
  --radius: 4px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

/* =========================================
   HEADER / NAV
   ========================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(184, 150, 62, 0.2);
  padding: 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-main {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}
.logo-sub {
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 400;
}

.main-nav {
  display: flex;
  gap: 36px;
  align-items: center;
}
.main-nav a {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250, 250, 248, 0.7);
  font-weight: 400;
  transition: color var(--transition);
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.main-nav a:hover, .main-nav a.active {
  color: var(--white);
}
.main-nav a:hover::after, .main-nav a.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 8px;
}

/* =========================================
   HERO
   ========================================= */
.hero {
  min-height: 100vh;
  background: var(--dark-navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 50%, rgba(184, 150, 62, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 80% at 20% 80%, rgba(184, 150, 62, 0.04) 0%, transparent 60%);
}

.hero-bg-text {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(100px, 22vw, 280px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.025);
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding-top: 40px;
  padding-bottom: 80px;
}

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 500;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-desc {
  font-size: 1rem;
  color: rgba(250, 250, 248, 0.65);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 44px;
  font-weight: 300;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--dark-navy);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(184, 150, 62, 0.5);
  color: var(--gold-light);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(184, 150, 62, 0.08);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(184, 150, 62, 0.6);
  font-size: 1.2rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* =========================================
   CREDENTIALS STRIP
   ========================================= */
.credentials-strip {
  background: var(--black);
  border-bottom: 1px solid rgba(184, 150, 62, 0.15);
}
.credentials-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding-top: 32px;
  padding-bottom: 32px;
}
.cred-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  padding: 0 24px;
}
.cred-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.cred-label {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250, 250, 248, 0.4);
  font-weight: 400;
  text-align: center;
}
.cred-divider {
  width: 1px;
  height: 40px;
  background: rgba(184, 150, 62, 0.2);
  flex-shrink: 0;
}

/* =========================================
   SECTION COMMONS
   ========================================= */
.section-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 16px;
}

.section-intro {
  padding: 120px 0;
  background: var(--cream);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--dark-navy);
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.intro-text p {
  color: var(--mid-gray);
  line-height: 1.75;
  margin-bottom: 16px;
  font-size: 0.95rem;
  font-weight: 300;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  margin-top: 8px;
  transition: gap var(--transition);
}
.link-arrow:hover { gap: 12px; }

.intro-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.visual-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 32px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.visual-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.visual-card.accent {
  background: var(--dark-navy);
  border-color: rgba(184, 150, 62, 0.3);
}
.visual-card.accent h3, .visual-card.accent p { color: var(--white); }
.visual-card.accent p { color: rgba(250,250,248,0.6); }

.vc-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.visual-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark-navy);
  margin-bottom: 10px;
}

.visual-card p {
  font-size: 0.88rem;
  color: var(--mid-gray);
  line-height: 1.65;
  font-weight: 300;
}

/* =========================================
   SERVICES SECTION
   ========================================= */
.section-services {
  padding: 120px 0;
  background: var(--white);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.section-header .section-label { justify-content: center; }

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--dark-navy);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-header p {
  color: var(--mid-gray);
  font-size: 0.95rem;
  font-weight: 300;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}

.service-card {
  background: var(--white);
  padding: 40px 32px;
  position: relative;
  display: block;
  transition: background var(--transition);
  cursor: pointer;
}

.service-card:hover {
  background: var(--cream);
}

.service-card.sc-cta {
  background: var(--dark-navy);
}
.service-card.sc-cta .sc-number,
.service-card.sc-cta h3,
.service-card.sc-cta p {
  color: var(--white);
}
.service-card.sc-cta p { color: rgba(250,250,248,0.55); }
.service-card.sc-cta:hover { background: #1a2736; }

.sc-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-pale);
  line-height: 1;
  margin-bottom: 20px;
  display: block;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark-navy);
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-card p {
  font-size: 0.85rem;
  color: var(--mid-gray);
  line-height: 1.65;
  font-weight: 300;
}

/* =========================================
   CTA BANNER
   ========================================= */
.cta-banner {
  background: var(--dark-navy);
  padding: 80px 0;
  border-top: 1px solid rgba(184, 150, 62, 0.2);
  border-bottom: 1px solid rgba(184, 150, 62, 0.2);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.cta-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.cta-text p {
  color: rgba(250, 250, 248, 0.6);
  font-size: 0.92rem;
  font-weight: 300;
  max-width: 500px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(250, 250, 248, 0.25);
  color: rgba(250, 250, 248, 0.8);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.btn-outline-light:hover {
  border-color: rgba(250, 250, 248, 0.5);
  color: var(--white);
}

/* =========================================
   PAGE HERO (inner pages)
   ========================================= */
.page-hero {
  background: var(--dark-navy);
  padding: 140px 0 80px;
  border-bottom: 1px solid rgba(184, 150, 62, 0.15);
}
.page-hero-inner { max-width: 700px; }
.page-hero p.eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 500;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.page-hero .subtitle {
  color: rgba(250, 250, 248, 0.6);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.7;
}

/* =========================================
   CHI SONO PAGE
   ========================================= */
.chi-sono-section {
  padding: 100px 0;
  background: var(--cream);
}
.chi-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  align-items: start;
}
.chi-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--dark-navy);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.chi-content p {
  font-size: 0.95rem;
  color: var(--mid-gray);
  line-height: 1.8;
  margin-bottom: 20px;
  font-weight: 300;
}
.chi-content p strong {
  color: var(--dark-navy);
  font-weight: 500;
}
.chi-aside {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 100px;
}
.aside-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 28px;
}
.aside-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-navy);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.aside-card p, .aside-card a {
  font-size: 0.85rem;
  color: var(--mid-gray);
  line-height: 1.65;
  font-weight: 300;
  display: block;
  margin-bottom: 8px;
}
.aside-card a:hover { color: var(--gold); }

/* =========================================
   SERVICES PAGE
   ========================================= */
.services-page {
  padding: 100px 0;
  background: var(--white);
}
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 80px;
}
.service-full-card {
  background: var(--white);
  padding: 48px 40px;
  transition: background var(--transition);
}
.service-full-card:hover { background: var(--cream); }
.sfc-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold-pale);
  line-height: 1;
  margin-bottom: 20px;
  display: block;
}
.service-full-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--dark-navy);
  margin-bottom: 14px;
  line-height: 1.3;
}
.service-full-card p {
  font-size: 0.88rem;
  color: var(--mid-gray);
  line-height: 1.75;
  font-weight: 300;
}

/* =========================================
   GALLERY PAGE
   ========================================= */
.gallery-section {
  padding: 100px 0;
  background: var(--white);
}
.gallery-intro {
  max-width: 600px;
  margin-bottom: 60px;
}
.gallery-intro p {
  font-size: 0.95rem;
  color: var(--mid-gray);
  font-weight: 300;
  line-height: 1.7;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 4px;
  background: var(--light-gray);
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

/* =========================================
   CONTACT PAGE
   ========================================= */
.contact-section {
  padding: 100px 0;
  background: var(--cream);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  color: var(--dark-navy);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.contact-info > p {
  font-size: 0.92rem;
  color: var(--mid-gray);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 40px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.contact-item:last-child { border-bottom: none; }
.ci-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.ci-label {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 6px;
  display: block;
}
.ci-value {
  font-size: 0.95rem;
  color: var(--dark-navy);
  font-weight: 400;
  line-height: 1.5;
}
.ci-value a { transition: color var(--transition); }
.ci-value a:hover { color: var(--gold); }

.orari-box {
  background: var(--dark-navy);
  border-radius: 6px;
  padding: 24px 28px;
  margin-top: 32px;
}
.orari-box h4 {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 500;
}
.orari-box p {
  font-size: 0.9rem;
  color: rgba(250,250,248,0.75);
  font-weight: 300;
  line-height: 1.7;
}

/* CONTACT FORM */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 48px 40px;
}
.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--dark-navy);
  margin-bottom: 32px;
}
.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid-gray);
  font-weight: 500;
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--dark-navy);
  outline: none;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-submit {
  width: 100%;
  background: var(--gold);
  color: var(--dark-navy);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition);
  margin-top: 8px;
}
.form-submit:hover { background: var(--gold-light); }

/* Privacy note */
.privacy-note {
  font-size: 0.75rem;
  color: rgba(107, 107, 107, 0.7);
  margin-top: 16px;
  line-height: 1.5;
}

/* =========================================
   PRIVACY PAGE
   ========================================= */
.privacy-section {
  padding: 100px 0;
  background: var(--white);
}
.privacy-content {
  max-width: 760px;
}
.privacy-content h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--dark-navy);
  margin-top: 40px;
  margin-bottom: 16px;
}
.privacy-content p, .privacy-content li {
  font-size: 0.9rem;
  color: var(--mid-gray);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 12px;
}
.privacy-content ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  background: var(--black);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand .logo-main {
  font-size: 1.3rem;
  display: block;
  margin-bottom: 4px;
}
.footer-brand .logo-sub {
  display: block;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.78rem;
  color: rgba(250,250,248,0.3);
  margin-top: 12px;
}

.footer-nav, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav h4, .footer-contact h4 {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 8px;
}
.footer-nav a {
  font-size: 0.85rem;
  color: rgba(250,250,248,0.5);
  font-weight: 300;
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--white); }

.footer-contact p, .footer-contact a {
  font-size: 0.85rem;
  color: rgba(250,250,248,0.5);
  font-weight: 300;
  line-height: 1.5;
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--gold); }
.orari { font-size: 0.78rem !important; color: rgba(250,250,248,0.3) !important; margin-top: 4px; }

.footer-bottom {
  padding: 24px 32px;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(250,250,248,0.2);
}
.footer-bottom a { color: rgba(184,150,62,0.5); }
.footer-bottom a:hover { color: var(--gold); }

/* =========================================
   COOKIE BANNER
   ========================================= */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 540px;
  background: var(--dark-navy);
  border: 1px solid rgba(184, 150, 62, 0.2);
  border-radius: 6px;
  padding: 24px 28px;
  z-index: 999;
  display: flex;
  gap: 20px;
  align-items: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.cookie-banner.hidden {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}
.cookie-text {
  flex: 1;
  font-size: 0.8rem;
  color: rgba(250,250,248,0.65);
  line-height: 1.6;
  font-weight: 300;
}
.cookie-text a { color: var(--gold); }
.cookie-btn {
  background: var(--gold);
  color: var(--dark-navy);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 10px 20px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition);
  flex-shrink: 0;
}
.cookie-btn:hover { background: var(--gold-light); }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 900px) {
  .intro-grid, .chi-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-full-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .credentials-grid { flex-wrap: wrap; gap: 16px; }
  .cred-divider { display: none; }
  .chi-aside { position: static; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .main-nav { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--black); padding: 20px 32px; gap: 20px; }
  .main-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .hero-title { font-size: 2.4rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-form-wrap { padding: 32px 24px; }
}
