Legal Notice | Wall Canvas Art
:root {
--cream: #F8F5F0;
--charcoal: #1C1C1E;
--warm-gray: #6B6560;
--gold: #C9A96E;
--gold-light: #E8D5B0;
--border: #E2DDD6;
--white: #FFFFFF;
--section-bg: #FDFAF6;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
font-family: 'DM Sans', sans-serif;
background: var(--cream);
color: var(--charcoal);
font-size: 16px;
line-height: 1.7;
}
/* Hero */
.hero {
background: var(--charcoal);
color: var(--white);
padding: 72px 24px 60px;
text-align: center;
position: relative;
overflow: hidden;
}
.hero::before {
content: '';
position: absolute;
inset: 0;
background: radial-gradient(ellipse at 30% 100%, rgba(201,169,110,0.15) 0%, transparent 60%);
pointer-events: none;
}
.hero-label {
font-size: 11px;
font-weight: 500;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--gold);
margin-bottom: 16px;
}
.hero h1 {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(38px, 6vw, 60px);
font-weight: 300;
letter-spacing: 0.02em;
line-height: 1.1;
margin-bottom: 16px;
}
.hero h1 em {
font-style: italic;
color: var(--gold-light);
}
.hero-sub {
font-size: 14px;
color: rgba(255,255,255,0.5);
font-weight: 300;
letter-spacing: 0.05em;
}
.gold-rule {
display: block;
width: 48px;
height: 1px;
background: var(--gold);
margin: 0 auto 24px;
}
/* Intro band */
.intro-band {
background: var(--section-bg);
border-bottom: 1px solid var(--border);
padding: 32px 24px;
text-align: center;
}
.intro-band p {
max-width: 620px;
margin: 0 auto;
font-size: 14px;
color: var(--warm-gray);
font-weight: 300;
line-height: 1.7;
}
/* Main layout */
.page-wrap {
max-width: 780px;
margin: 0 auto;
padding: 56px 24px 96px;
}
.last-updated {
text-align: center;
font-size: 12px;
color: var(--warm-gray);
font-weight: 300;
letter-spacing: 0.08em;
margin-bottom: 40px;
padding-bottom: 32px;
border-bottom: 1px solid var(--border);
}
/* TOC */
.toc {
display: flex;
flex-wrap: wrap;
gap: 10px;
margin-bottom: 40px;
}
.toc a {
font-size: 12px;
font-weight: 500;
letter-spacing: 0.1em;
text-transform: uppercase;
color: var(--warm-gray);
text-decoration: none;
padding: 8px 16px;
border: 1px solid var(--border);
border-radius: 2px;
background: var(--white);
transition: all 0.2s;
}
.toc a:hover { border-color: var(--gold); color: var(--charcoal); }
/* Section card */
.section {
background: var(--white);
border: 1px solid var(--border);
border-radius: 2px;
padding: 40px 44px;
margin-bottom: 20px;
position: relative;
}
.section::before {
content: '';
position: absolute;
top: 0; left: 0;
width: 3px; height: 100%;
background: var(--gold);
border-radius: 2px 0 0 2px;
}
.section-num {
font-size: 10px;
font-weight: 500;
letter-spacing: 0.22em;
text-transform: uppercase;
color: var(--gold);
margin-bottom: 10px;
}
.section h2 {
font-family: 'Cormorant Garamond', serif;
font-size: 26px;
font-weight: 400;
letter-spacing: 0.01em;
color: var(--charcoal);
margin-bottom: 20px;
padding-bottom: 16px;
border-bottom: 1px solid var(--border);
}
.section p {
font-size: 15px;
color: #3A3835;
line-height: 1.75;
margin-bottom: 14px;
font-weight: 300;
}
.section p:last-child { margin-bottom: 0; }
.section p strong { font-weight: 500; color: var(--charcoal); }
/* Feature list */
.feature-list {
list-style: none;
margin: 14px 0;
padding: 0;
}
.feature-list li {
display: flex;
align-items: flex-start;
gap: 12px;
padding: 10px 0;
font-size: 15px;
color: #3A3835;
font-weight: 300;
border-bottom: 1px solid var(--border);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
content: '';
flex-shrink: 0;
width: 6px; height: 6px;
border-radius: 50%;
background: var(--gold);
margin-top: 9px;
}
/* Callout */
.callout {
background: var(--section-bg);
border: 1px solid var(--gold-light);
border-left: 3px solid var(--gold);
border-radius: 2px;
padding: 18px 22px;
margin-top: 20px;
font-size: 14px;
color: var(--warm-gray);
line-height: 1.65;
}
.callout a { color: var(--charcoal); font-weight: 500; text-decoration: underline; text-underline-offset: 3px; }
/* Warning callout */
.callout-strong {
background: #1C1C1E;
border: none;
border-left: 3px solid var(--gold);
border-radius: 2px;
padding: 18px 22px;
margin-top: 20px;
font-size: 14px;
color: rgba(255,255,255,0.7);
line-height: 1.65;
}
.callout-strong strong { color: var(--gold-light); }
/* Policy links block */
.policy-links {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 12px;
margin-top: 20px;
}
.policy-link {
display: block;
padding: 16px 20px;
border: 1px solid var(--border);
border-radius: 2px;
text-decoration: none;
background: var(--section-bg);
transition: all 0.2s;
}
.policy-link:hover { border-color: var(--gold); background: var(--white); }
.policy-link .link-label {
font-size: 10px;
font-weight: 500;
letter-spacing: 0.15em;
text-transform: uppercase;
color: var(--gold);
margin-bottom: 4px;
}
.policy-link .link-title {
font-size: 14px;
font-weight: 500;
color: var(--charcoal);
}
/* Contact footer */
.contact-strip {
text-align: center;
padding: 44px 24px;
border-top: 1px solid var(--border);
margin-top: 16px;
}
.contact-strip p { font-size: 13px; color: var(--warm-gray); font-weight: 300; margin-bottom: 10px; }
.contact-strip a {
font-family: 'Cormorant Garamond', serif;
font-size: 18px;
font-weight: 400;
color: var(--charcoal);
text-decoration: none;
letter-spacing: 0.03em;
border-bottom: 1px solid var(--gold);
padding-bottom: 2px;
}
.contact-strip a:hover { color: var(--gold); }
@media (max-width: 600px) {
.section { padding: 28px 24px; }
.hero { padding: 56px 20px 48px; }
.policy-links { grid-template-columns: 1fr; }
}
Last updated: 2025
Site Owner
Intellectual Property
Limitation of Liability
Accuracy
Third Parties
Governing Law
Disputes
Changes
Related Policies
Section 01
Site Owner & Operator
This website, wallcanvasart.com, is owned and operated by Wall Canvas Art. All inquiries regarding this Legal Notice should be directed to:
Section 02
Intellectual Property
All content on this website — including but not limited to images, artwork, graphics, text, logos, product designs, and page layouts — is the property of Wall Canvas Art or its licensed content providers and is protected by applicable copyright, trademark, and intellectual property laws.
You may access and view content on this site for personal, non-commercial use only. No content may be reproduced, distributed, modified, displayed, or transmitted in any form without our prior written consent.
- You may not copy, republish, or sell any content from this site
- You may not use our artwork, brand assets, or product images without a written license agreement
- You may not create derivative works based on any content found on this site
- Unauthorized use may result in legal action
Section 03
Limitation of Liability
To the maximum extent permitted by applicable law, Wall Canvas Art and its operators, employees, agents, and affiliates shall not be liable for any indirect, incidental, special, consequential, or punitive damages arising from your use of this website or the purchase of products from it.
This includes, without limitation, damages for loss of profits, data, goodwill, or other intangible losses, even if we have been advised of the possibility of such damages.
Our total liability to you for any claim arising from your use of this website or purchase of our products shall not exceed the amount you paid for the specific product or service giving rise to the claim.
Some jurisdictions do not allow the exclusion of certain warranties or the limitation of liability for consequential or incidental damages. In such cases, our liability will be limited to the fullest extent permitted by applicable law.
Section 04
Accuracy of Information
We make every effort to ensure that product descriptions, pricing, and other content on this website are accurate and up to date. However, we do not warrant that all information is complete, error-free, or current at all times.
- Colors displayed on screen may vary slightly from the printed product due to monitor settings and calibration
- Prices are subject to change without notice
- We reserve the right to correct errors, inaccuracies, or omissions at any time, including after an order has been submitted
- We do not guarantee that the website will be available without interruption or error
Section 05
Third-Party Links & Services
This website may contain links to third-party websites or services including payment processors, shipping carriers, and social media platforms. These links are provided for your convenience only.
Wall Canvas Art does not control, endorse, or accept responsibility for the content, privacy practices, or terms of any third-party website. We encourage you to review the privacy policies and terms of any third-party site before providing personal information.
Use of third-party services (including Shopify payments, UPS, FedEx, and USPS) is subject to those providers' own terms and conditions.
Section 06
Governing Law
This Legal Notice and any disputes arising from your use of wallcanvasart.com or purchase of our products shall be governed by and construed in accordance with the laws of the United States, without regard to its conflict of law provisions.
By using this website, you consent to the exclusive jurisdiction of the courts located in the United States for the resolution of any disputes.
Section 07
Dispute Resolution
We strongly prefer to resolve any concerns directly and quickly. Before initiating formal legal proceedings, we ask that you contact us first so we have an opportunity to address the issue.
- Contact us at support@wallcanvasart.com with a description of your concern
- We will respond within 5 business days with a proposed resolution
- If we cannot reach an agreement, disputes may be submitted to binding arbitration under the American Arbitration Association's rules
- Class action lawsuits and class-wide arbitration are not permitted under these terms
Section 08
Changes to This Notice
We reserve the right to update or modify this Legal Notice at any time without prior notice. Changes will be effective immediately upon posting to this page. The "Last updated" date at the top of this page reflects when changes were last made.
Your continued use of this website following any changes constitutes your acceptance of the revised terms. We encourage you to review this page periodically.