/* =================================================================
   CHRONOS ÉLITE - ELEGANT CLASSIC DESIGN
   CSS Reset & Base Styles
   ================================================================= */

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

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

body {
  font-family: 'Lato', Georgia, serif;
  font-size: 16px;
  line-height: 1.8;
  color: #1a1a1a;
  background: #fafafa;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* =================================================================
   TYPOGRAPHY - ELEGANT CLASSIC SERIF STYLE
   ================================================================= */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.3;
  color: #1a1a1a;
  margin-bottom: 24px;
}

h1 {
  font-size: 48px;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 36px;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

p {
  margin-bottom: 20px;
  color: #333;
}

a {
  color: #c9a961;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #b08d45;
}

ul {
  list-style: none;
}

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

/* =================================================================
   LAYOUT CONTAINERS
   ================================================================= */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* =================================================================
   MOBILE MENU - ELEGANT SLIDE-IN
   ================================================================= */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: #1a1a1a;
  color: #f5f5f5;
  border: 2px solid #c9a961;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #c9a961;
  color: #1a1a1a;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: #1a1a1a;
  z-index: 1002;
  padding: 80px 32px 32px;
  transition: right 0.4s ease;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.3);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  color: #f5f5f5;
  border: 2px solid #c9a961;
  padding: 8px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #c9a961;
  color: #1a1a1a;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav a {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  color: #f5f5f5;
  padding: 12px 0;
  border-bottom: 1px solid rgba(201, 169, 97, 0.3);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #c9a961;
  padding-left: 12px;
}

/* =================================================================
   HEADER - REFINED ELEGANCE
   ================================================================= */

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.logo img {
  height: 48px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.main-nav a {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 0;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #c9a961;
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.header-cta .cta-button {
  background: #1a1a1a;
  color: #f5f5f5;
  padding: 12px 28px;
  border: 2px solid #c9a961;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  display: inline-block;
}

.header-cta .cta-button:hover {
  background: #c9a961;
  color: #1a1a1a;
}

/* =================================================================
   HERO SECTION - ELEGANT INTRODUCTION
   ================================================================= */

.hero {
  background: linear-gradient(to bottom, #f5f5f5 0%, #ffffff 100%);
  padding: 80px 20px;
  text-align: center;
  border-bottom: 1px solid #e5e5e5;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  color: #1a1a1a;
}

.hero-subtitle {
  font-size: 20px;
  color: #555;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 16px 40px;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid #c9a961;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary {
  background: #1a1a1a;
  color: #f5f5f5;
}

.btn-primary:hover {
  background: #c9a961;
  color: #1a1a1a;
}

.btn-secondary {
  background: transparent;
  color: #1a1a1a;
}

.btn-secondary:hover {
  background: #1a1a1a;
  color: #f5f5f5;
}

/* =================================================================
   SECTIONS - CONSISTENT SPACING
   ================================================================= */

section {
  padding: 80px 20px;
  margin-bottom: 0;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* =================================================================
   BRAND STATEMENT - REFINED MESSAGING
   ================================================================= */

.brand-statement {
  background: #ffffff;
  border-top: 3px solid #c9a961;
  border-bottom: 3px solid #c9a961;
  padding: 60px 20px;
}

.brand-statement .statement {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px;
  text-align: center;
  color: #1a1a1a;
  font-style: italic;
  margin-bottom: 48px;
  line-height: 1.6;
}

.values {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.value-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.value-item img {
  width: 56px;
  height: 56px;
}

.value-item span {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #1a1a1a;
}

/* =================================================================
   CARD GRIDS - FLEXBOX LAYOUTS
   ================================================================= */

.collection-grid,
.services-grid,
.watch-grid,
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
}

.collection-card,
.service-card,
.watch-card,
.testimonial-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  background: #ffffff;
  border: 2px solid #e5e5e5;
  padding: 32px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  position: relative;
}

.collection-card:hover,
.service-card:hover,
.watch-card:hover {
  border-color: #c9a961;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.collection-card h3,
.service-card h3,
.watch-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.collection-card p,
.service-card p {
  color: #555;
  margin-bottom: 24px;
  line-height: 1.7;
}

.link-arrow,
.service-card a {
  color: #c9a961;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  transition: all 0.3s ease;
}

.link-arrow:hover,
.service-card a:hover {
  color: #b08d45;
  padding-left: 8px;
}

.service-card .price {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  color: #1a1a1a;
  font-weight: 700;
  display: block;
  margin-bottom: 16px;
}

/* =================================================================
   TESTIMONIALS - ELEGANT REVIEWS
   ================================================================= */

.testimonials {
  background: #f5f5f5;
  padding: 80px 20px;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 56px;
}

.testimonial-card {
  background: #ffffff;
  border-left: 4px solid #c9a961;
  padding: 32px;
  flex: 1 1 calc(50% - 32px);
}

.testimonial-card .quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-style: italic;
  color: #1a1a1a;
  margin-bottom: 24px;
  line-height: 1.7;
}

.testimonial-card .customer-name {
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.testimonial-card .customer-location {
  color: #777;
  font-size: 14px;
  margin-bottom: 12px;
}

.testimonial-card .rating {
  color: #c9a961;
  font-size: 18px;
  letter-spacing: 2px;
}

/* =================================================================
   CRAFTSMANSHIP SECTION
   ================================================================= */

.craftsmanship {
  background: #1a1a1a;
  color: #f5f5f5;
  padding: 80px 20px;
}

.craftsmanship h2 {
  color: #f5f5f5;
  text-align: center;
}

.craftsmanship p {
  color: #e5e5e5;
  text-align: center;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 48px;
}

.craftsmanship-points {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.craftsmanship-points .point {
  display: flex;
  align-items: center;
  gap: 12px;
}

.craftsmanship-points .point img {
  width: 32px;
  height: 32px;
}

.craftsmanship-points .point span {
  font-size: 16px;
  font-weight: 600;
  color: #f5f5f5;
}

/* =================================================================
   APPOINTMENT CTA
   ================================================================= */

.appointment-cta {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #f5f5f5;
  text-align: center;
  padding: 80px 20px;
}

.appointment-cta h2 {
  color: #f5f5f5;
  margin-bottom: 16px;
}

.appointment-cta p {
  color: #e5e5e5;
  font-size: 18px;
  margin-bottom: 32px;
}

.appointment-cta .opening-hours {
  color: #c9a961;
  font-size: 15px;
  margin-top: 24px;
  font-weight: 600;
}

/* =================================================================
   LOCATION & TRUST
   ================================================================= */

.location-trust {
  background: #ffffff;
  padding: 60px 20px;
  border-top: 1px solid #e5e5e5;
}

.location-trust .content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  flex-wrap: wrap;
}

.location-trust .address h3 {
  margin-bottom: 16px;
}

.location-trust .address p {
  color: #555;
  line-height: 1.8;
}

.trust-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.trust-badges .badge {
  background: #f5f5f5;
  border: 2px solid #c9a961;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #1a1a1a;
}

/* =================================================================
   PAGE HERO - BREADCRUMB NAVIGATION
   ================================================================= */

.page-hero {
  background: #f5f5f5;
  padding: 60px 20px 40px;
  border-bottom: 3px solid #c9a961;
}

.breadcrumb {
  font-size: 14px;
  color: #777;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.breadcrumb a {
  color: #1a1a1a;
}

.breadcrumb span {
  color: #c9a961;
}

.page-hero h1 {
  font-size: 48px;
  margin-bottom: 16px;
}

.page-hero .subtitle {
  font-size: 20px;
  color: #555;
  max-width: 700px;
}

/* =================================================================
   WATCH CARDS - PRODUCT DISPLAYS
   ================================================================= */

.watch-card {
  text-align: center;
}

.watch-card .manufacture {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #777;
  margin-bottom: 16px;
}

.watch-card .specs {
  margin: 20px 0;
  padding: 20px 0;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.watch-card .specs li {
  font-size: 14px;
  color: #555;
  margin-bottom: 8px;
}

.watch-card .price {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  color: #1a1a1a;
  font-weight: 700;
  margin-bottom: 20px;
}

.watch-card .badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #c9a961;
  color: #1a1a1a;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-inquiry,
.btn-details,
.btn-service,
.btn-contact,
.btn-consultation,
.btn-booking,
.btn-link {
  display: inline-block;
  padding: 12px 32px;
  background: #1a1a1a;
  color: #f5f5f5;
  border: 2px solid #c9a961;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  margin-top: 8px;
}

.btn-inquiry:hover,
.btn-details:hover,
.btn-service:hover,
.btn-contact:hover,
.btn-consultation:hover,
.btn-booking:hover,
.btn-link:hover {
  background: #c9a961;
  color: #1a1a1a;
}

/* =================================================================
   SERVICE DETAIL CARDS
   ================================================================= */

.services-detailed {
  background: #fafafa;
  padding: 80px 20px;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.service-detail-card {
  background: #ffffff;
  border: 2px solid #e5e5e5;
  border-left: 6px solid #c9a961;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-detail-card .service-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 8px;
}

.service-detail-card h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.service-detail-card .service-price {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px;
  color: #c9a961;
  font-weight: 700;
  margin: 16px 0;
}

.service-detail-card .benefits {
  margin: 24px 0;
  padding-left: 24px;
}

.service-detail-card .benefits li {
  list-style: disc;
  color: #555;
  margin-bottom: 12px;
  line-height: 1.6;
}

/* =================================================================
   STANDARDS & FEATURES GRIDS
   ================================================================= */

.service-standards,
.expertise,
.partnerships {
  background: #ffffff;
  padding: 80px 20px;
}

.standards-grid,
.expertise-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
}

.standard-item,
.expertise-item {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  padding: 32px;
  background: #f5f5f5;
  border-left: 4px solid #c9a961;
}

.standard-item h3,
.expertise-item h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.standard-item p,
.expertise-item p {
  color: #555;
  line-height: 1.7;
}

/* =================================================================
   TEAM SECTION
   ================================================================= */

.team {
  background: #f5f5f5;
  padding: 80px 20px;
}

.team h2 {
  text-align: center;
  margin-bottom: 16px;
}

.team > p {
  text-align: center;
  color: #555;
  font-size: 18px;
  margin-bottom: 56px;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
}

.team-member {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  background: #ffffff;
  border: 2px solid #e5e5e5;
  padding: 32px;
  text-align: center;
}

.team-member h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.team-member .role {
  font-size: 16px;
  color: #c9a961;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.team-member .expertise {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

/* =================================================================
   TIMELINE & MILESTONES
   ================================================================= */

.brand-story {
  background: #ffffff;
  padding: 80px 20px;
}

.brand-story .philosophy {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px;
  font-style: italic;
  color: #1a1a1a;
  text-align: center;
  margin: 48px 0;
  padding: 32px;
  border-top: 2px solid #c9a961;
  border-bottom: 2px solid #c9a961;
}

.timeline {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 56px;
}

.milestone {
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  text-align: center;
  padding: 24px;
  background: #f5f5f5;
  border-top: 4px solid #c9a961;
}

.milestone .year {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 32px;
  font-weight: 700;
  color: #c9a961;
  display: block;
  margin-bottom: 12px;
}

.milestone p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

/* =================================================================
   PROCESS STEPS
   ================================================================= */

.service-process,
.guarantee-section {
  background: #f5f5f5;
  padding: 80px 20px;
}

.process-steps {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 56px;
}

.process-step {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  text-align: center;
  padding: 32px;
  background: #ffffff;
  border: 2px solid #e5e5e5;
  position: relative;
}

.process-step .step-number {
  display: inline-block;
  width: 56px;
  height: 56px;
  line-height: 56px;
  background: #c9a961;
  color: #1a1a1a;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 20px;
}

.process-step h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.process-step p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

/* =================================================================
   CONTACT FORMS & OPTIONS
   ================================================================= */

.contact-options,
.contact-form-section,
.appointment-booking {
  background: #ffffff;
  padding: 80px 20px;
}

.options-grid,
.contact-options-grid {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 48px;
}

.option-card,
.contact-option {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  text-align: center;
  padding: 40px 32px;
  background: #f5f5f5;
  border: 2px solid #e5e5e5;
  transition: all 0.3s ease;
}

.option-card:hover,
.contact-option:hover {
  border-color: #c9a961;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.option-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
}

.option-card h3,
.contact-option h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.option-card p,
.contact-option p {
  color: #555;
  line-height: 1.6;
}

/* =================================================================
   FORM STYLES
   ================================================================= */

.form-container {
  max-width: 800px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.form-info {
  padding: 24px;
  background: #f5f5f5;
  border-left: 4px solid #c9a961;
}

.form-info .note {
  color: #777;
  font-size: 14px;
  font-style: italic;
  margin-top: 12px;
}

.form-placeholder {
  padding: 40px;
  background: #ffffff;
  border: 2px solid #e5e5e5;
  font-family: monospace;
  font-size: 14px;
  line-height: 2;
  color: #555;
}

.form-placeholder ul {
  margin: 12px 0;
  padding-left: 24px;
}

.form-placeholder li {
  list-style: circle;
  margin-bottom: 8px;
}

.form-placeholder button {
  background: #1a1a1a;
  color: #f5f5f5;
  border: 2px solid #c9a961;
  padding: 12px 32px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  margin-top: 16px;
}

.response-note {
  color: #c9a961;
  font-weight: 600;
  margin-top: 16px;
  font-size: 13px;
}

/* =================================================================
   LOCATION & MAP
   ================================================================= */

.location-details {
  background: #f5f5f5;
  padding: 80px 20px;
}

.location-content {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 48px;
}

.address-block {
  flex: 1 1 45%;
  min-width: 300px;
}

.address-block p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.address-block .landmark {
  color: #777;
  font-style: italic;
  margin-top: 24px;
}

.transport-info {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 2px solid #e5e5e5;
}

.transport-info h4 {
  font-size: 18px;
  margin-bottom: 16px;
}

.map-placeholder {
  flex: 1 1 45%;
  min-width: 300px;
  min-height: 300px;
  background: #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #c9a961;
  padding: 40px;
  text-align: center;
  color: #777;
  font-style: italic;
}

/* =================================================================
   LEGAL PAGES
   ================================================================= */

.legal-hero {
  background: #f5f5f5;
  padding: 60px 20px 40px;
  border-bottom: 3px solid #c9a961;
}

.legal-hero .last-updated {
  font-size: 14px;
  color: #777;
  font-style: italic;
}

.legal-content {
  background: #ffffff;
  padding: 80px 20px;
}

.text-section {
  max-width: 900px;
  margin: 0 auto 48px;
}

.text-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid #e5e5e5;
}

.text-section:first-child h2 {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.text-section ul {
  margin: 20px 0;
  padding-left: 32px;
}

.text-section li {
  list-style: disc;
  color: #555;
  margin-bottom: 12px;
  line-height: 1.7;
}

.text-section a {
  color: #c9a961;
  text-decoration: underline;
}

/* =================================================================
   GDPR & RIGHTS SECTIONS
   ================================================================= */

.gdpr-rights,
.cookie-management {
  background: #f5f5f5;
  padding: 80px 20px;
}

.rights-grid,
.cookie-options {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 48px;
}

.right-item,
.cookie-option {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background: #ffffff;
  border: 2px solid #e5e5e5;
  border-top: 4px solid #c9a961;
  padding: 32px;
  text-align: center;
}

.right-item h3,
.cookie-option h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.right-item p,
.cookie-option p {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

.contact-note {
  text-align: center;
  margin-top: 32px;
  font-size: 15px;
}

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

.thank-you-hero {
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
  padding: 100px 20px;
  text-align: center;
}

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
}

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 32px;
}

.thank-you-hero h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

.confirmation {
  font-size: 20px;
  color: #555;
  line-height: 1.6;
}

.next-steps,
.meanwhile,
.contact-alternative {
  padding: 80px 20px;
}

.steps-grid,
.suggestion-grid {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 48px;
}

.step-card,
.suggestion-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  background: #ffffff;
  border: 2px solid #e5e5e5;
  padding: 32px;
  text-align: center;
}

.email-note {
  text-align: center;
  color: #c9a961;
  font-weight: 600;
  margin-top: 32px;
}

.urgent-contact {
  max-width: 600px;
  margin: 32px auto 0;
  padding: 32px;
  background: #f5f5f5;
  border: 2px solid #c9a961;
  text-align: center;
}

.urgent-contact p {
  margin-bottom: 16px;
  line-height: 1.8;
}

/* =================================================================
   FOOTER - ELEGANT CONCLUSION
   ================================================================= */

.site-footer {
  background: #1a1a1a;
  color: #f5f5f5;
  padding: 60px 20px 32px;
  border-top: 4px solid #c9a961;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.footer-col {
  flex: 1 1 calc(25% - 48px);
  min-width: 220px;
}

.footer-logo {
  height: 48px;
  width: auto;
  margin-bottom: 20px;
}

.footer-col p {
  color: #e5e5e5;
  font-size: 14px;
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: #c9a961;
}

.footer-col nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col nav a {
  color: #e5e5e5;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-col nav a:hover {
  color: #c9a961;
  padding-left: 8px;
}

.footer-col a {
  color: #c9a961;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(201, 169, 97, 0.3);
  text-align: center;
}

.footer-bottom p {
  color: #999;
  font-size: 13px;
}

/* =================================================================
   COOKIE CONSENT BANNER - FIXED BOTTOM
   ================================================================= */

.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  color: #f5f5f5;
  padding: 24px;
  z-index: 1000;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-consent-banner.active {
  transform: translateY(0);
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.cookie-banner-text {
  flex: 1 1 60%;
  min-width: 300px;
}

.cookie-banner-text h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #c9a961;
}

.cookie-banner-text p {
  font-size: 14px;
  color: #e5e5e5;
  line-height: 1.6;
}

.cookie-banner-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-banner-actions button {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid #c9a961;
}

.cookie-accept-all {
  background: #c9a961;
  color: #1a1a1a;
}

.cookie-accept-all:hover {
  background: #b08d45;
}

.cookie-reject-all,
.cookie-settings-btn {
  background: transparent;
  color: #f5f5f5;
}

.cookie-reject-all:hover,
.cookie-settings-btn:hover {
  background: rgba(201, 169, 97, 0.2);
}

/* =================================================================
   COOKIE SETTINGS MODAL
   ================================================================= */

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background: #ffffff;
  max-width: 700px;
  width: 100%;
  padding: 40px;
  border-radius: 0;
  border: 4px solid #c9a961;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.cookie-modal-header h3 {
  font-size: 28px;
  color: #1a1a1a;
}

.cookie-modal-close {
  background: transparent;
  border: 2px solid #1a1a1a;
  padding: 8px 16px;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: #1a1a1a;
  color: #f5f5f5;
}

.cookie-category {
  padding: 24px;
  margin-bottom: 20px;
  background: #f5f5f5;
  border-left: 4px solid #c9a961;
}

.cookie-category h4 {
  font-size: 18px;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-category p {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 56px;
  height: 28px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.3s;
}

.cookie-slider:before {
  position: absolute;
  content: '';
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.3s;
}

input:checked + .cookie-slider {
  background-color: #c9a961;
}

input:checked + .cookie-slider:before {
  transform: translateX(28px);
}

.cookie-modal-actions {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.cookie-modal-actions button {
  flex: 1 1 45%;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid #c9a961;
}

.cookie-save-preferences {
  background: #1a1a1a;
  color: #f5f5f5;
}

.cookie-save-preferences:hover {
  background: #c9a961;
  color: #1a1a1a;
}

.cookie-accept-all-modal {
  background: #c9a961;
  color: #1a1a1a;
}

.cookie-accept-all-modal:hover {
  background: #b08d45;
}

/* =================================================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ================================================================= */

@media (max-width: 768px) {
  /* Show mobile menu button */
  .mobile-menu-toggle {
    display: block;
  }

  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  /* Typography adjustments */
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 22px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  /* Sections padding */
  section {
    padding: 60px 20px;
  }

  /* Card grids to single column */
  .collection-grid,
  .services-grid,
  .watch-grid,
  .testimonial-grid,
  .standards-grid,
  .expertise-grid,
  .team-grid,
  .steps-grid,
  .suggestion-grid {
    flex-direction: column;
  }

  .collection-card,
  .service-card,
  .watch-card,
  .testimonial-card,
  .standard-item,
  .expertise-item,
  .team-member,
  .step-card,
  .suggestion-card {
    flex: 1 1 100%;
  }

  /* Footer columns stack */
  .footer-content {
    flex-direction: column;
  }

  .footer-col {
    flex: 1 1 100%;
  }

  /* Location content stack */
  .location-trust .content-wrapper,
  .location-content {
    flex-direction: column;
  }

  /* Hero CTA buttons stack */
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  /* Values flex wrap */
  .values {
    flex-direction: column;
    gap: 32px;
  }

  /* Timeline stack */
  .timeline {
    flex-direction: column;
  }

  .milestone {
    flex: 1 1 100%;
  }

  /* Process steps stack */
  .process-steps {
    flex-direction: column;
  }

  .process-step {
    flex: 1 1 100%;
  }

  /* Cookie banner stack */
  .cookie-banner-content {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner-text {
    flex: 1 1 100%;
  }

  .cookie-banner-actions {
    flex-direction: column;
    width: 100%;
  }

  .cookie-banner-actions button {
    width: 100%;
  }

  /* Modal adjustments */
  .cookie-modal-content {
    padding: 24px;
  }

  .cookie-modal-actions {
    flex-direction: column;
  }

  .cookie-modal-actions button {
    flex: 1 1 100%;
  }

  /* Trust badges wrap */
  .trust-badges {
    flex-direction: column;
  }

  .trust-badges .badge {
    text-align: center;
  }

  /* Contact options stack */
  .options-grid,
  .contact-options-grid {
    flex-direction: column;
  }

  .option-card,
  .contact-option {
    flex: 1 1 100%;
  }

  /* Rights grid stack */
  .rights-grid,
  .cookie-options {
    flex-direction: column;
  }

  .right-item,
  .cookie-option {
    flex: 1 1 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .collection-card,
  .service-card {
    flex: 1 1 calc(50% - 32px);
  }

  .watch-card,
  .testimonial-card {
    flex: 1 1 calc(50% - 32px);
  }

  .standard-item,
  .expertise-item {
    flex: 1 1 calc(50% - 32px);
  }

  h1 {
    font-size: 42px;
  }

  .hero h1 {
    font-size: 48px;
  }
}

/* =================================================================
   ANIMATIONS & TRANSITIONS
   ================================================================= */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content,
.page-hero {
  animation: fadeIn 0.8s ease-out;
}

/* Smooth scroll offset for sticky header */
html {
  scroll-padding-top: 100px;
}

/* Focus styles for accessibility */
a:focus,
button:focus {
  outline: 2px solid #c9a961;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent-banner,
  .cookie-modal {
    display: none;
  }

  .site-header {
    position: static;
  }

  body {
    background: white;
  }

  a {
    color: #1a1a1a;
    text-decoration: underline;
  }
}